Overview
Comment: | Added build script to cross-compile Linux/amd64 kits |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
5715f1901b75b12ce0069aa2f3508917 |
User & Date: | rkeene on 2011-03-08 04:23:28 |
Other Links: | manifest | tags |
Context
2011-03-09
| ||
14:35 |
Updated to build static library as PIC when building for KitDLL
Fixed issue with Metakit using "g++" for the shared object linker, even when cross-compiling check-in: 0eca481f01 user: rkeene tags: trunk | |
2011-03-08
| ||
04:23 | Added build script to cross-compile Linux/amd64 kits check-in: 5715f1901b user: rkeene tags: trunk | |
04:18 | Corrected issue with previous commit check-in: 403ee0b408 user: rkeene tags: trunk | |
Changes
Added build/make-kit-linux-amd64 version [4bac46b5d1].
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | #! /bin/sh PATH="${PATH}:${HOME}/root/cross-compilers/x86_64-unknown-linux-gnu/bin/" AR=x86_64-unknown-linux-gnu-ar CC=x86_64-unknown-linux-gnu-gcc CXX=x86_64-unknown-linux-gnu-g++ RANLIB=x86_64-unknown-linux-gnu-ranlib STRIP=x86_64-unknown-linux-gnu-strip export PATH AR CC CXX RANLIB STRIP ./build/make-minkit "$@" --host=x86_64-unknown-linux-gnu |