Overview
Comment: | Updated to build full Tclkit when cross-compiling to Linux/amd64 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
53587b62ecda9daafc1eb425c52fd7bd |
User & Date: | rkeene on 2011-03-09 14:36:25 |
Other Links: | manifest | tags |
Context
2011-03-09
| ||
14:36 | Added Linux/amd64 builds to test suite check-in: 3075bde9af user: rkeene tags: trunk | |
14:36 | Updated to build full Tclkit when cross-compiling to Linux/amd64 check-in: 53587b62ec user: rkeene tags: trunk | |
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 | |
Changes
Modified build/make-kit-linux-amd64 from [4bac46b5d1] to [f5a7e70fab].
1 2 3 4 5 6 7 8 9 10 | #! /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 | | | 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 ./kitcreator "$@" --host=x86_64-unknown-linux-gnu |