Overview
| Comment: | Added missing build flag | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 
e125d9df7723cf1456d94df517c8bf66 | 
| User & Date: | rkeene on 2011-07-20 22:52:43 | 
| Other Links: | manifest | tags | 
Context
| 
   2011-08-02 
 | ||
| 23:49 | 
Added more cross-compiler build scripts
 Added more cross-compiled tests check-in: 250028d1d6 user: rkeene tags: trunk | |
| 
   2011-07-20 
 | ||
| 22:52 | Added missing build flag check-in: e125d9df77 user: rkeene tags: trunk | |
| 
   2011-07-19 
 | ||
| 19:08 | 
Updated to not force setting of starkit::topdir, this would break starkits
 Updated zipseek test to use $tcl_library to find Tclkit root check-in: 49d6a04e90 user: rkeene tags: trunk | |
Changes
Modified build/make-kit-linux-amd64 from [f5a7e70fab] to [72e0bb339e].
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 --enable-64bit
 |