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: | 5715f1901b75b12ce0069aa2f35089175cd99f5d |
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 +#! /bin/sh 2 + 3 +PATH="${PATH}:${HOME}/root/cross-compilers/x86_64-unknown-linux-gnu/bin/" 4 +AR=x86_64-unknown-linux-gnu-ar 5 +CC=x86_64-unknown-linux-gnu-gcc 6 +CXX=x86_64-unknown-linux-gnu-g++ 7 +RANLIB=x86_64-unknown-linux-gnu-ranlib 8 +STRIP=x86_64-unknown-linux-gnu-strip 9 +export PATH AR CC CXX RANLIB STRIP 10 + 11 +./build/make-minkit "$@" --host=x86_64-unknown-linux-gnu