de49044796
OptionalPackages. This makes the content definition part in AlternativeGCCArchive superfluous. * Moved the cc and c++ wrapper scripts from src/bin to data/bin. * Added build variable HAIKU_ADD_OPTIONAL_PACKAGES to add optional packages -- the list can be separated by slashes to allow easier passing through the shell. * When invoking the sub-jam that builds the alternative GCC archive, we force it to ignore the UserBuildConfigs and we enable the optional packages enabled in the main jam. * Reorganized /boot/develop: - There's now an "abi" subdirectory containing a <arch>/<gcc>/ subdirectory for each installed ABI-incompatible gcc version and a "current" symlink pointed to the currently selected one. - All ABI-dependent directories under /boot/develop/ (lib/x86, headers/cpp, tools/gnupro) symlink into /boot/develop/abi/current. - Changed BELIBRARIES to contain /boot/develop/abi/current/library-paths/common instead of /boot/common/lib. The former is a symlink to either /boot/common/lib or /boot/common/lib/<gccVersion>. There's also a respective "home" symlink. - Repackaged the optional binutils+gcc 2/4 packages accordingly. Also fixed the obsolete /boot/beos/system/lib/libstdc++.so symlink in the gcc 4 package. - The new structure allows to switch between compilers by changing the /boot/develop/abi/current symlink. Added script setgcc to do that. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30875 a95241bf-73f2-0310-859d-f6bbb57e9c96
67 lines
1.9 KiB
Plaintext
67 lines
1.9 KiB
Plaintext
#
|
|
# First we set up a bunch of environment variables that we want everyone
|
|
# to inherit
|
|
#
|
|
|
|
export HOME=/boot/home
|
|
export SHELL=/bin/sh
|
|
export USER=baron
|
|
export GROUP=users
|
|
|
|
BUILDHOME=/boot/develop
|
|
BETOOLS="$BUILDHOME/tools/gnupro/bin"
|
|
|
|
case `uname -m` in
|
|
BePC|Intel|unknown)
|
|
BE_HOST_CPU=x86
|
|
;;
|
|
BeMac|BeBox)
|
|
BE_HOST_CPU=ppc
|
|
;;
|
|
*)
|
|
BE_HOST_CPU=unknown
|
|
esac
|
|
|
|
BELIBRARIES="$BUILDHOME/abi/current/library-paths/common:$BUILDHOME/lib/$BE_HOST_CPU"
|
|
BH=$BUILDHOME/headers
|
|
BEINCLUDES="$BH;$BH/be;$BH/be/precompiled;$BH/be/bone;$BH/posix;$BH/cpp;$BH/be/app;$BH/be/device;$BH/be/interface;$BH/be/media;$BH/be/midi;$BH/be/midi2;$BH/be/net;$BH/be/kernel;$BH/be/storage;$BH/be/support;$BH/be/game;$BH/be/opengl;$BH/be/drivers;$BH/gnu;$BH/be/mail;$BH/be/translation;$BH/be/devel;$BH/be/add-ons/graphics;$BH/be/be_apps/Deskbar;$BH/be/be_apps/NetPositive;$BH/be/be_apps/Tracker"
|
|
|
|
export BUILDHOME
|
|
export BETOOLS
|
|
export BELIBRARIES
|
|
export BEINCLUDES
|
|
export BE_HOST_CPU
|
|
|
|
# for the "cc" and "ld" shell scripts
|
|
|
|
export BE_C_COMPILER=gcc
|
|
export BE_CPLUS_COMPILER="g++"
|
|
export BE_LINKER=ld
|
|
export BE_DEFAULT_C_FLAGS=""
|
|
export BE_DEFAULT_CPLUS_FLAGS=""
|
|
|
|
if [ "$SAFEMODE" != "yes" ]
|
|
then
|
|
export PATH=.:$HOME/config/bin:/boot/common/bin:/bin:/boot/apps:/boot/preferences:/boot/system/apps:/boot/system/preferences:$BETOOLS
|
|
export LIBRARY_PATH="%A/lib:$HOME/config/lib:/boot/common/lib:/boot/system/lib"
|
|
export ADDON_PATH="%A/add-ons:$HOME/config/add-ons:/boot/system/add-ons"
|
|
else
|
|
export PATH=.:/boot/common/bin:/bin:/boot/apps:/boot/preferences:/boot/system/apps:/boot/system/preferences:$BETOOLS
|
|
export LIBRARY_PATH="%A/lib:/boot/common/lib:/boot/system/lib"
|
|
export ADDON_PATH="%A/add-ons:/boot/system/add-ons"
|
|
fi
|
|
|
|
# media kit
|
|
if [ -f $HOME/config/settings/use_old_audio ]
|
|
then
|
|
export USE_OLD_AUDIO=true
|
|
fi
|
|
|
|
if [ "$SAFEMODE" != "yes" ]
|
|
then
|
|
if [ -f $HOME/config/boot/UserSetupEnvironment ]
|
|
then
|
|
. $HOME/config/boot/UserSetupEnvironment
|
|
fi
|
|
fi
|