comparison run-from-build.sh @ 944:fc134a13357e

Largeish refactoring and cleanup of compiler build: Break out native-compiler.sh from root-filesystem.sh NATIVE_TOOLCHAIN=* went away now NO_NATIVE_COMPILER=1 affecting build.sh root-filesystem.sh: Much simplified No more ROOT_TOPDIR, adjust STAGE_DIR=$STAGE_DIR/usr instead. Doesn't build native-compiler, instead copies existing native-compiler else installs library binaries out of cross compiler. Only build make/bash/distcc when we have a native compiler. native-compiler.sh: No more BUILD_STATIC_NATIVE_COMPILER, now built/packaged separately by default (NO_NATIVE_COMPILER=1 to skip), then incorporated into root-filesystem. now static by default, use BUILD_STATIC=none to override This script also makes the (optional) full cross-compiler renamed STATIC_CROSS_COMPILER_HOST to STATIC_CC_HOST Rename cross-compiler stage to simple-cross-compiler
author Rob Landley <rob@landley.net>
date Sun, 03 Jan 2010 17:04:39 -0600
parents abff74b958a1
children ac61473c45e8
comparison
equal deleted inserted replaced
943:7f2e6bdfcdcb 944:fc134a13357e
1 #!/bin/bash 1 #!/bin/bash
2 2
3 # Grab cross compiler (for distcc) and run development environment. 3 # Grab cross compiler (for distcc) and run development environment.
4 4
5 export PATH="$(pwd)/build/host:$(pwd)/build/cross-compiler-$1/bin:$PATH" 5 export PATH="$(pwd)/build/host:$(pwd)/build/"{,simple-}"cross-compiler-$1/bin:$PATH"
6 6
7 # Run development environment. 7 # Run development environment.
8 8
9 cd build/system-image-"$1" && ./dev-environment.sh 9 cd build/system-image-"$1" && ./dev-environment.sh