Overview
| Comment: | Corrected issue with previous commit |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
403ee0b408dd97a263f6e9d9570d72cc |
| User & Date: | rkeene on 2011-03-08 04:18:02 |
| Other Links: | manifest | tags |
Context
|
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 | |
| 03:50 | Updated to build with new toolchain check-in: de3aacd495 user: rkeene tags: trunk | |
Changes
Modified build/make-kit-mipsel from [e19a8483f8] to [814a04e3a0].
1 2 3 4 5 6 7 8 9 10 |
#! /bin/sh
PATH="${PATH}:/home/rkeene/root/cross-compilers/mipsel-unknown-linux-uclibc/bin"
AR=mipsel-unknown-linux-uclibc-ar
CC=mipsel-unknown-linux-uclibc-gcc
CXX=mipsel-unknown-linux-uclibc-g++
RANLIB=mipsel-unknown-linux-uclibc-ranlib
STRIP=mipsel-unknown-linux-uclibc-strip
export PATH AR CC CXX RANLIB STRIP
| | | 1 2 3 4 5 6 7 8 9 10 11 |
#! /bin/sh
PATH="${PATH}:/home/rkeene/root/cross-compilers/mipsel-unknown-linux-uclibc/bin"
AR=mipsel-unknown-linux-uclibc-ar
CC=mipsel-unknown-linux-uclibc-gcc
CXX=mipsel-unknown-linux-uclibc-g++
RANLIB=mipsel-unknown-linux-uclibc-ranlib
STRIP=mipsel-unknown-linux-uclibc-strip
export PATH AR CC CXX RANLIB STRIP
./build/make-minkit "$@" --host=mipsel-unknown-linux-uclibc
|