152a38012Sejakowatz#!/bin/sh 252a38012Sejakowatz# 3338b8dc3SIngo Weinhold# configure [ <options> ] 4614026d7Sshatty 5022fa244SIngo Weinhold# usage 6022fa244SIngo Weinhold# 7022fa244SIngo Weinhold# Prints usage. 8022fa244SIngo Weinhold# 9022fa244SIngo Weinholdusage() 10022fa244SIngo Weinhold{ 11022fa244SIngo Weinhold cat << EOF 12022fa244SIngo Weinhold 13022fa244SIngo WeinholdUsage: $0 <options> 14022fa244SIngo Weinholdoptions: 1560d8d8fcSIngo Weinhold --alternative-gcc-output-dir <dir> 1660d8d8fcSIngo Weinhold Build a Haiku installation that supports running 1760d8d8fcSIngo Weinhold executables built with a gcc version incompatible 1860d8d8fcSIngo Weinhold with the primary gcc (e.g. gcc 2 executables under 1960d8d8fcSIngo Weinhold a gcc 4 Haiku or vice versa). <dir> specifies the 2060d8d8fcSIngo Weinhold output directory of the other gcc. The directory 2160d8d8fcSIngo Weinhold must already be fully configured. 2260d8d8fcSIngo Weinhold Note, that a sub-jam will be executed when 2360d8d8fcSIngo Weinhold building Haiku. When using a jam that is not 2460d8d8fcSIngo Weinhold simply invoked by "jam", the JAM build variable 2560d8d8fcSIngo Weinhold needs to be set accordingly. 2660d8d8fcSIngo Weinhold To disable building the alternative libraries 2760d8d8fcSIngo Weinhold the variable HAIKU_ADD_ALTERNATIVE_GCC_LIBS can be 2860d8d8fcSIngo Weinhold unset in the UserBuildConfig file. 29338b8dc3SIngo Weinhold --build-cross-tools <build tools dir> 30338b8dc3SIngo Weinhold Assume cross compilation. <build tools dir> 31338b8dc3SIngo Weinhold defines the location of the build tools sources. 32338b8dc3SIngo Weinhold They will be compiled and placed in the output 33a5b60fa8SOliver Tappe directory under "cross-tools". The HAIKU_* tools 34a5b60fa8SOliver Tappe variables will be set accordingly. 3520ab75e6SIngo Weinhold --build-cross-tools-gcc4 <arch> <build tools dir> 3629ef597dSIngo Weinhold Like "--build-cross-tools" just that gcc 4 will 37a5b60fa8SOliver Tappe be used for cross-compilation. Note, that the 38a5b60fa8SOliver Tappe resulting Haiku installation built with gcc 4 39a5b60fa8SOliver Tappe will not be binary compatible with BeOS R5. 4020ab75e6SIngo Weinhold <arch> specifies the target architecture, either 41161ad355SJérôme Duval "x86", "ppc", "m68k", "arm" or "mipsel". 42eccc7665SIngo Weinhold --cross-tools-prefix <prefix> 43eccc7665SIngo Weinhold Assume cross compilation. <prefix> should be a 44eccc7665SIngo Weinhold path to the directory where the cross 45eccc7665SIngo Weinhold compilation tools are located, plus the platform 460da9c208SIngo Weinhold prefix, e.g. "/path/to/tools/i586-pc-haiku-". 47eccc7665SIngo Weinhold This overrides the HAIKU_* tool variables. 48a66c32ddSIngo Weinhold --distro-compatibility <level> 49a66c32ddSIngo Weinhold The distribution's level of compatibility with 50a66c32ddSIngo Weinhold the official Haiku distribution. The generated 51a66c32ddSIngo Weinhold files will contain the respective trademarks 52a66c32ddSIngo Weinhold accordingly. 53a66c32ddSIngo Weinhold official -- the official Haiku distribution. 54a66c32ddSIngo Weinhold compatible -- a Haiku Compatible (tm) distro. 55a66c32ddSIngo Weinhold default -- any other distro (default value). 5660d8d8fcSIngo Weinhold --enable-multiuser Enable experimental multiuser support. 57eccc7665SIngo Weinhold --help Prints out this help. 58eccc7665SIngo Weinhold --include-gpl-addons Include GPL licensed add-ons. 5967838392SAxel Dörfler --include-patented-code Enable code that is known to implemented patented 6067838392SAxel Dörfler ideas and techniques. If this option is not 6167838392SAxel Dörfler specified, the resulting distribution may still 6267838392SAxel Dörfler implement patented ideas and techniques. This 6367838392SAxel Dörfler option only disables code that is currently known 6467838392SAxel Dörfler to be problematic. 6576fa0be3SIngo Weinhold --include-sources Includes the source code of projects that require 6676fa0be3SIngo Weinhold either an offer of source code or a copy of the 6776fa0be3SIngo Weinhold patched sources. This is preferable when 6876fa0be3SIngo Weinhold distributing on physical mediums. 691974210fSFrançois Revol --include-3rdparty Include 3rdparty/ in the build system. 7060d8d8fcSIngo Weinhold -j<n> Only relevant for --build-cross-tools and 7160d8d8fcSIngo Weinhold --build-cross-tools-gcc4. Is passed on to the 7260d8d8fcSIngo Weinhold make building the build tools. 737c4641d0SOliver Tappe --target=TARGET Select build target platform. 747c4641d0SOliver Tappe [default=${TARGET_PLATFORM}] 75a17b9c0cSshatty valid targets=r5,bone,dano,haiku 767c4641d0SOliver Tappe --update re-runs last configure invocation [must be given 777c4641d0SOliver Tappe as first option!] 78eccc7665SIngo Weinhold --use-gcc-pipe Build with GCC option -pipe. Speeds up the build 795a34a443SFrançois Revol process, but uses more memory. 800385b065SIngo Weinhold --use-32bit Use -m32 flag on 64bit host gcc compiler. 814f4e5272SIngo Weinhold --use-xattr Use Linux xattr support for BeOS attribute 824f4e5272SIngo Weinhold emulation. Warning: Make sure your file system 834f4e5272SIngo Weinhold supports sufficient attribute sizes (4 KB per 844f4e5272SIngo Weinhold file for all attributes won't suffice). 85338b8dc3SIngo Weinhold 86338b8dc3SIngo Weinholdenvironment variables: 87338b8dc3SIngo Weinhold HAIKU_AR The static library archiver. Defaults to "ar". 88338b8dc3SIngo Weinhold HAIKU_CC The compiler. Defaults to "gcc". 89338b8dc3SIngo Weinhold HAIKU_LD The linker. Defaults to "ld". 90338b8dc3SIngo Weinhold HAIKU_OBJCOPY The objcopy to be used. Defaults to "objcopy". 91338b8dc3SIngo Weinhold HAIKU_RANLIB The static library indexer. Defaults to "ranlib". 9277e84f21SIngo Weinhold HAIKU_YASM The yasm assembler (x86 only). 93338b8dc3SIngo Weinhold HAIKU_CPPFLAGS The preprocessor flags. Defaults to "". 94338b8dc3SIngo Weinhold HAIKU_CCFLAGS The C flags. Defaults to "". 95338b8dc3SIngo Weinhold HAIKU_CXXFLAGS The C++ flags. Defaults to "". 96338b8dc3SIngo Weinhold HAIKU_LDFLAGS The linker flags. Defaults to "". 97338b8dc3SIngo Weinhold HAIKU_ARFLAGS The flags passed to HAIKU_AR for archiving. 9823eb9a9eSFrançois Revol Defaults to "cru". 99338b8dc3SIngo Weinhold HAIKU_UNARFLAGS The flags passed to HAIKU_AR for unarchiving. 100338b8dc3SIngo Weinhold Defaults to "x". 10164f6da31SIngo Weinhold 10264f6da31SIngo WeinholdNon-standard output directories: 10364f6da31SIngo Weinhold By default all objects, build configuration, and other related files are 10464f6da31SIngo Weinhold stored in /path/to/haiku_source/generated. To store objects in a non-default 10564f6da31SIngo Weinhold location, run "../../relative/path/to/haiku_source/configure <options>" from 10664f6da31SIngo Weinhold within your non-default location. "jam [ options ] targets" can then be run 10764f6da31SIngo Weinhold directly inside your non-default location. Another option is to invoke "jam 10864f6da31SIngo Weinhold [ options ] targets" from within haiku_source. This can be accomplished by 10964f6da31SIngo Weinhold either "export HAIKU_OUTPUT_DIR=your non-default location" before invoking 11064f6da31SIngo Weinhold jam or by creating a symlink of haiku_source/generated pointing to your 11164f6da31SIngo Weinhold non-default location and running jam. 11264f6da31SIngo Weinhold 11364f6da31SIngo Weinhold 114022fa244SIngo WeinholdEOF 115022fa244SIngo Weinhold} 116022fa244SIngo Weinhold 117022fa244SIngo Weinhold# assertparam 118022fa244SIngo Weinhold# 119022fa244SIngo Weinhold# Checks whether at least one parameter is left. 120022fa244SIngo Weinhold# 121022fa244SIngo Weinholdassertparam() 122022fa244SIngo Weinhold{ 12320ab75e6SIngo Weinhold if [ $2 -lt 2 ]; then 124022fa244SIngo Weinhold echo $0: \`$1\': Parameter expected. 125022fa244SIngo Weinhold exit 1 126022fa244SIngo Weinhold fi 127022fa244SIngo Weinhold} 128022fa244SIngo Weinhold 12920ab75e6SIngo Weinhold# assertparams 13020ab75e6SIngo Weinhold# 13120ab75e6SIngo Weinhold# Checks whether at least a certain number of parameters is left. 13220ab75e6SIngo Weinhold# 13320ab75e6SIngo Weinholdassertparams() 13420ab75e6SIngo Weinhold{ 13520ab75e6SIngo Weinhold if [ $3 -le $2 ]; then 13620ab75e6SIngo Weinhold echo $0: \`$1\': Not enough parameters. 13720ab75e6SIngo Weinhold exit 1 13820ab75e6SIngo Weinhold fi 13920ab75e6SIngo Weinhold} 14020ab75e6SIngo Weinhold 14109c5682dSIngo Weinhold# standard_gcc_settings 14209c5682dSIngo Weinhold# 14309c5682dSIngo Weinhold# Sets the variables for a GCC platform. 14409c5682dSIngo Weinhold# 14509c5682dSIngo Weinholdstandard_gcc_settings() 14609c5682dSIngo Weinhold{ 147*b4b6d83cSMatt Madia if [ `which greadlink` ]; then 148*b4b6d83cSMatt Madia readlink=greadlink 149*b4b6d83cSMatt Madia else 150*b4b6d83cSMatt Madia readlink=readlink 151*b4b6d83cSMatt Madia fi 15209c5682dSIngo Weinhold # PLATFORM_LINKLIBS 153338b8dc3SIngo Weinhold gcclib=`$HAIKU_CC -print-libgcc-file-name` 15409c5682dSIngo Weinhold gccdir=`dirname ${gcclib}` 1555b0f7b1bSOliver Tappe 1567c4641d0SOliver Tappe HAIKU_GCC_RAW_VERSION=`$HAIKU_CC -dumpversion` 1577c4641d0SOliver Tappe HAIKU_GCC_MACHINE=`$HAIKU_CC -dumpmachine` 158338b8dc3SIngo Weinhold 159338b8dc3SIngo Weinhold HAIKU_GCC_LIB_DIR=${gccdir} 160338b8dc3SIngo Weinhold HAIKU_GCC_LIBGCC=${gccdir}/libgcc.a 161338b8dc3SIngo Weinhold HAIKU_GCC_GLUE_CODE="crtbegin.o crtend.o" 16228b5bc75SMichael Lotz HAIKU_GCC_HEADERS_DIR="${gccdir}/include 16328b5bc75SMichael Lotz ${gccdir}/include-fixed" 1645d978968SIngo Weinhold HAIKU_GCC_LIBGCC_OBJECTS=`$HAIKU_AR t ${HAIKU_GCC_LIBGCC} | grep -v eabi.o` 1655d978968SIngo Weinhold # Note: We filter out eabi.o. It's present in gcc's libgcc for PPC and 1665d978968SIngo Weinhold # neither needed nor wanted. 1678b5934c9SIngo Weinhold 1687c4641d0SOliver Tappe case $HAIKU_GCC_RAW_VERSION in 1698b5934c9SIngo Weinhold 4.*) 1705b0f7b1bSOliver Tappe # for gcc 4 we use the libstdc++ and libsupc++ that come with the 1715b0f7b1bSOliver Tappe # compiler 1727c4641d0SOliver Tappe HAIKU_STATIC_LIBSTDCXX=`$HAIKU_CC -print-file-name=libstdc++.a` 1737c4641d0SOliver Tappe HAIKU_SHARED_LIBSTDCXX=`$HAIKU_CC -print-file-name=libstdc++.so` 1747c4641d0SOliver Tappe HAIKU_STATIC_LIBSUPCXX=`$HAIKU_CC -print-file-name=libsupc++.a` 1757c4641d0SOliver Tappe HAIKU_SHARED_LIBSUPCXX=`$HAIKU_CC -print-file-name=libsupc++.so` 17614210488SMichael Lotz 17714210488SMichael Lotz local headers 1787c4641d0SOliver Tappe if [ -d $gccdir/../../../../$HAIKU_GCC_MACHINE/include/c++/$HAIKU_GCC_RAW_VERSION ]; then 1797c4641d0SOliver Tappe headers=$gccdir/../../../../$HAIKU_GCC_MACHINE/include/c++/$HAIKU_GCC_RAW_VERSION 18014210488SMichael Lotz else 1817c4641d0SOliver Tappe headers=$gccdir/../../../../include/c++/$HAIKU_GCC_RAW_VERSION 18214210488SMichael Lotz fi 18314210488SMichael Lotz 1847c4641d0SOliver Tappe HAIKU_CXX_HEADERS_DIR=$headers 1857c4641d0SOliver Tappe for d in $HAIKU_GCC_MACHINE backward ext; do 18629ef597dSIngo Weinhold # Note: We need the line break, otherwise the line might become 18729ef597dSIngo Weinhold # too long for jam (512 bytes max). 1887c4641d0SOliver Tappe HAIKU_CXX_HEADERS_DIR="$HAIKU_CXX_HEADERS_DIR 18929ef597dSIngo Weinhold $headers/$d" 1908b5934c9SIngo Weinhold done 191274b450aSMarcus Overhagen 1923f9f9f9aSIngo Weinhold # Unset the HAIKU_{SHARED,STATIC}_LIB{STD,SUP}CXX variables, if the 1933f9f9f9aSIngo Weinhold # compiler didn't give us actual file names. Otherwise resolve 1943f9f9f9aSIngo Weinhold # symlinks to avoid problems when copying the libraries to the 1953f9f9f9aSIngo Weinhold # image. 1968b5934c9SIngo Weinhold 1977c4641d0SOliver Tappe if [ $HAIKU_STATIC_LIBSTDCXX = libstdc++.a ]; then 1987c4641d0SOliver Tappe HAIKU_STATIC_LIBSTDCXX= 1993f9f9f9aSIngo Weinhold else 200ff3c7b96SFrançois Revol HAIKU_STATIC_LIBSTDCXX=`$readlink -e $HAIKU_STATIC_LIBSTDCXX` 2018b5934c9SIngo Weinhold fi 2023f9f9f9aSIngo Weinhold 203ffe8b20cSIngo Weinhold if [ $HAIKU_SHARED_LIBSTDCXX = libstdc++.so ]; then 204ffe8b20cSIngo Weinhold HAIKU_SHARED_LIBSTDCXX= 2053f9f9f9aSIngo Weinhold else 206ff3c7b96SFrançois Revol HAIKU_SHARED_LIBSTDCXX=`$readlink -e $HAIKU_SHARED_LIBSTDCXX` 207ffe8b20cSIngo Weinhold fi 2083f9f9f9aSIngo Weinhold 2097c4641d0SOliver Tappe if [ $HAIKU_STATIC_LIBSUPCXX = libsupc++.a ]; then 2107c4641d0SOliver Tappe HAIKU_STATIC_LIBSUPCXX= 2113f9f9f9aSIngo Weinhold else 212ff3c7b96SFrançois Revol HAIKU_STATIC_LIBSUPCXX=`$readlink -e $HAIKU_STATIC_LIBSUPCXX` 213c89fc875SIngo Weinhold fi 2143f9f9f9aSIngo Weinhold 215ffe8b20cSIngo Weinhold if [ $HAIKU_SHARED_LIBSUPCXX = libsupc++.so ]; then 216ffe8b20cSIngo Weinhold HAIKU_SHARED_LIBSUPCXX= 2173f9f9f9aSIngo Weinhold else 218ff3c7b96SFrançois Revol HAIKU_SHARED_LIBSUPCXX=`$readlink -e $HAIKU_SHARED_LIBSUPCXX` 219ffe8b20cSIngo Weinhold fi 2208b5934c9SIngo Weinhold ;; 2216cc8eecfSOliver Tappe 2.9*) 2225b0f7b1bSOliver Tappe # check for correct (most up-to-date) legacy compiler and complain 2235b0f7b1bSOliver Tappe # if an older one is installed 2247c4641d0SOliver Tappe if [ $HAIKU_GCC_RAW_VERSION != $haikuRequiredLegacyGCCVersion ]; then 2255b0f7b1bSOliver Tappe echo "GCC version $haikuRequiredLegacyGCCVersion is required!"; 2265b0f7b1bSOliver Tappe echo "Please download it from www.haiku-os.org..."; 2275b0f7b1bSOliver Tappe exit 1; 2285b0f7b1bSOliver Tappe fi 2295b0f7b1bSOliver Tappe ;; 2308b5934c9SIngo Weinhold esac 23109c5682dSIngo Weinhold} 23209c5682dSIngo Weinhold 233338b8dc3SIngo Weinhold# set_default_value 234338b8dc3SIngo Weinhold# 235338b8dc3SIngo Weinhold# Set the value for a variable, if no value is set yet. 236338b8dc3SIngo Weinhold# 237338b8dc3SIngo Weinholdset_default_value() 238338b8dc3SIngo Weinhold{ 2390838a930SJérôme Duval eval "$1=\${$1-$2}" 240338b8dc3SIngo Weinhold} 241338b8dc3SIngo Weinhold 242338b8dc3SIngo Weinhold# get_build_tool_path 243338b8dc3SIngo Weinhold# 244338b8dc3SIngo Weinhold# Gets a usable absolute path of a build tool. 245338b8dc3SIngo Weinhold# 246338b8dc3SIngo Weinholdget_build_tool_path() 247338b8dc3SIngo Weinhold{ 248338b8dc3SIngo Weinhold local var="HAIKU_$1" 249338b8dc3SIngo Weinhold local tool=$2 250338b8dc3SIngo Weinhold local path="${crossToolsPrefix}$tool" 251338b8dc3SIngo Weinhold 252338b8dc3SIngo Weinhold if [ -f "$path" ]; then 253338b8dc3SIngo Weinhold # get absolute path 254a559f87aSFrançois Revol local oldPwd="`pwd`" 255a559f87aSFrançois Revol cd "`dirname "$path"`" 256a559f87aSFrançois Revol path="`pwd`/`basename "$path"`" 257338b8dc3SIngo Weinhold cd $oldPwd 258338b8dc3SIngo Weinhold else 2597fe2e06cSMatt Madia which "$path" > /dev/null 2>&1 || { 260338b8dc3SIngo Weinhold echo "Build tool \"$path\" not found." >&2 261338b8dc3SIngo Weinhold exit 1 262338b8dc3SIngo Weinhold } 263338b8dc3SIngo Weinhold fi 264338b8dc3SIngo Weinhold 265338b8dc3SIngo Weinhold eval "$var=$path" 266338b8dc3SIngo Weinhold} 267338b8dc3SIngo Weinhold 268338b8dc3SIngo Weinhold# get cwd and the source directory 269338b8dc3SIngo WeinholdcurrentDir=`pwd` 2706e7c6fe5SIngo Weinholdcd `dirname "$0"` 271338b8dc3SIngo WeinholdsourceDir=`pwd` 2726e7c6fe5SIngo Weinholdcd "$currentDir" 273338b8dc3SIngo Weinhold 27455d267a4SFrançois Revol# backup the passed arguments 27555d267a4SFrançois RevolconfigureArgs="$@" 27655d267a4SFrançois Revol 2777c4641d0SOliver Tappe# internal default parameter values 278022fa244SIngo Weinhold# 27952a38012Sejakowatzplatform=`uname` 2805abd9a46SIngo WeinholdplatformMachine=`uname -m` 28177e84f21SIngo WeinholdtargetArch=x86 282338b8dc3SIngo WeinholdcrossToolsPrefix= 283338b8dc3SIngo WeinholdbuildCrossTools= 28429ef597dSIngo WeinholdbuildCrossToolsScript="$sourceDir/build/scripts/build_cross_tools" 28520ab75e6SIngo WeinholdbuildCrossToolsMachine= 28660d8d8fcSIngo WeinholdbuildCrossToolsJobs= 2877c4641d0SOliver Tappe 2887c4641d0SOliver Tappe# exported (BuildSetup) default parameter values 2897c4641d0SOliver Tappe# 2907c4641d0SOliver TappeHAIKU_GCC_RAW_VERSION= 2917c4641d0SOliver TappeHAIKU_GCC_MACHINE=i586-pc-haiku 2927c4641d0SOliver TappeHAIKU_STATIC_LIBSTDCXX= 2937c4641d0SOliver TappeHAIKU_SHARED_LIBSTDCXX= 2947c4641d0SOliver TappeHAIKU_STATIC_LIBSUPCXX= 2957c4641d0SOliver TappeHAIKU_SHARED_LIBSUPCXX= 2967c4641d0SOliver TappeHAIKU_CXX_HEADERS_DIR= 2977c4641d0SOliver TappeHOST_GCC_RAW_VERSION=`gcc -dumpversion` 2987c4641d0SOliver TappeHOST_GCC_MACHINE=`gcc -dumpmachine` 2997c4641d0SOliver TappeHAIKU_INCLUDE_GPL_ADDONS=0 3007c4641d0SOliver TappeHAIKU_INCLUDE_PATENTED_CODE=0 30176fa0be3SIngo WeinholdHAIKU_INCLUDE_SOURCES=0 3027c4641d0SOliver TappeHAIKU_INCLUDE_3RDPARTY=0 3037c4641d0SOliver TappeHAIKU_ENABLE_MULTIUSER=0 3047c4641d0SOliver TappeHAIKU_DISTRO_COMPATIBILITY=default 3057c4641d0SOliver TappeTARGET_PLATFORM=haiku 3067c4641d0SOliver TappeHAIKU_USE_GCC_PIPE=0 3077986925fSIngo WeinholdHAIKU_HOST_USE_32BIT=0 3087986925fSIngo WeinholdHAIKU_HOST_USE_XATTR=0 3097c4641d0SOliver TappeHAIKU_ALTERNATIVE_GCC_OUTPUT_DIR= 3107c4641d0SOliver TappeHAIKU_ADD_ALTERNATIVE_GCC_LIBS= 3117c4641d0SOliver TappeHOST_GCC_LD=`gcc -print-prog-name=ld` 3127c4641d0SOliver TappeHOST_GCC_OBJCOPY=`gcc -print-prog-name=objcopy` 313c505b276SFrançois RevolSFDISK_BINARY=sfdisk 314c505b276SFrançois RevolHOST_SFDISK=$SFDISK_BINARY 315338b8dc3SIngo Weinhold 31616d5c24eSOliver TappehaikuRequiredLegacyGCCVersion="2.95.3-haiku-090629" 317a559f87aSFrançois Revolexport haikuRequiredLegacyGCCVersion 318af4bf973SOliver Tappe # version of legacy gcc required to build haiku 319af4bf973SOliver Tappe 320338b8dc3SIngo Weinholdset_default_value HAIKU_AR ar 321338b8dc3SIngo Weinholdset_default_value HAIKU_CC gcc 322338b8dc3SIngo Weinholdset_default_value HAIKU_LD ld 323338b8dc3SIngo Weinholdset_default_value HAIKU_OBJCOPY objcopy 324338b8dc3SIngo Weinholdset_default_value HAIKU_RANLIB ranlib 32577e84f21SIngo Weinholdset_default_value HAIKU_YASM yasm 326338b8dc3SIngo Weinholdset_default_value HAIKU_CPPFLAGS "" 327338b8dc3SIngo Weinholdset_default_value HAIKU_CCFLAGS "" 328338b8dc3SIngo Weinholdset_default_value HAIKU_CXXFLAGS "" 329338b8dc3SIngo Weinholdset_default_value HAIKU_LDFLAGS "" 33023eb9a9eSFrançois Revolset_default_value HAIKU_ARFLAGS cru 331338b8dc3SIngo Weinholdset_default_value HAIKU_UNARFLAGS x 33262339647SAxel Dörfler 3337c4641d0SOliver Tappe# determine output directory 3347c4641d0SOliver Tappeif [ "$currentDir" = "$sourceDir" ]; then 3357c4641d0SOliver Tappe outputDir=$currentDir/generated 3367c4641d0SOliver Tappeelse 3377c4641d0SOliver Tappe outputDir=$currentDir 3387c4641d0SOliver Tappefi 3397c4641d0SOliver TappebuildOutputDir="$outputDir/build" 3407c4641d0SOliver TappeHAIKU_BUILD_ATTRIBUTES_DIR="$outputDir/attributes" 3417c4641d0SOliver TappebuildConfigFile="$buildOutputDir/BuildConfig" 3427c4641d0SOliver Tappe 3437c4641d0SOliver Tappe# check for update request 3447c4641d0SOliver Tappeif [ "$1" = "--update" ]; then 3457c4641d0SOliver Tappe if ! [ -e "$buildConfigFile" ]; then 3467c4641d0SOliver Tappe echo $0 --update: \'$buildConfigFile\' not found - updating not possible. 3477c4641d0SOliver Tappe exit 1 3487c4641d0SOliver Tappe fi 3497c4641d0SOliver Tappe if ! type perl >/dev/null 2>&1; then 3507c4641d0SOliver Tappe echo $0 --update: \'perl\' not found - updating not possible. 3517c4641d0SOliver Tappe exit 1 3527c4641d0SOliver Tappe fi 3537c4641d0SOliver Tappe # convert BuildConfig from jam format to shell format and evaluate it 3547c4641d0SOliver Tappe shellConfigFile="${buildConfigFile}.shell" 3557c4641d0SOliver Tappe perl "$sourceDir/build/scripts/convert_build_config_to_shell_format.pl" \ 3567c4641d0SOliver Tappe <"$buildConfigFile" >"$shellConfigFile" 3577c4641d0SOliver Tappe . "$shellConfigFile" 3587c4641d0SOliver Tappe rm "$shellConfigFile" 3597c4641d0SOliver Tappe shift 3607c4641d0SOliver Tappefi 3617c4641d0SOliver Tappe 362022fa244SIngo Weinhold# parse parameters 363022fa244SIngo Weinhold# 36420ab75e6SIngo Weinholdwhile [ $# -gt 0 ] ; do 365022fa244SIngo Weinhold case "$1" in 36660d8d8fcSIngo Weinhold --alternative-gcc-output-dir) 36760d8d8fcSIngo Weinhold assertparam "$1" $# 36860d8d8fcSIngo Weinhold cd $2 || exit 1 3697c4641d0SOliver Tappe HAIKU_ALTERNATIVE_GCC_OUTPUT_DIR=`pwd` 3707c4641d0SOliver Tappe HAIKU_ADD_ALTERNATIVE_GCC_LIBS=1 37160d8d8fcSIngo Weinhold cd $currentDir 37260d8d8fcSIngo Weinhold shift 2 37360d8d8fcSIngo Weinhold ;; 374a5b60fa8SOliver Tappe --build-cross-tools) assertparam "$1" $#; buildCrossTools=$2; shift 2;; 3759b0dd528SIngo Weinhold --build-cross-tools-gcc4) 3769b0dd528SIngo Weinhold assertparams "$1" 2 $# 3779b0dd528SIngo Weinhold buildCrossTools=$3 3789b0dd528SIngo Weinhold buildCrossToolsScript="${buildCrossToolsScript}_gcc4" 37920ab75e6SIngo Weinhold case "$2" in 3807c4641d0SOliver Tappe x86) HAIKU_GCC_MACHINE=i586-pc-haiku;; 3817c4641d0SOliver Tappe ppc) HAIKU_GCC_MACHINE=powerpc-apple-haiku; targetArch=ppc;; 3827c4641d0SOliver Tappe m68k) HAIKU_GCC_MACHINE=m68k-unknown-haiku; targetArch=m86k;; 3837c4641d0SOliver Tappe arm) HAIKU_GCC_MACHINE=arm-unknown-haiku; targetArch=arm;; 3847c4641d0SOliver Tappe mipsel) HAIKU_GCC_MACHINE=mipsel-unknown-haiku; targetArch=mips;; 38520ab75e6SIngo Weinhold *) echo "Unsupported target architecture: $2" 38620ab75e6SIngo Weinhold exit 1;; 38720ab75e6SIngo Weinhold esac 3887c4641d0SOliver Tappe buildCrossToolsMachine=$HAIKU_GCC_MACHINE 3899b0dd528SIngo Weinhold shift 3 3909b0dd528SIngo Weinhold ;; 3919b0dd528SIngo Weinhold --cross-tools-prefix) 3929b0dd528SIngo Weinhold assertparam "$1" $# 3939b0dd528SIngo Weinhold crossToolsPrefix=$2 3949b0dd528SIngo Weinhold shift 2 3959b0dd528SIngo Weinhold ;; 396a66c32ddSIngo Weinhold --distro-compatibility) 3979b0dd528SIngo Weinhold assertparam "$1" $# 3987c4641d0SOliver Tappe HAIKU_DISTRO_COMPATIBILITY=$2 3997c4641d0SOliver Tappe case "$HAIKU_DISTRO_COMPATIBILITY" in 400a66c32ddSIngo Weinhold official) ;; 401a66c32ddSIngo Weinhold compatible) ;; 402a66c32ddSIngo Weinhold default) ;; 403a66c32ddSIngo Weinhold *) echo "Invalid distro compatibility" \ 4047c4641d0SOliver Tappe "level: $HAIKU_DISTRO_COMPATIBILITY" 405a66c32ddSIngo Weinhold exit 1;; 406a66c32ddSIngo Weinhold esac 4079b0dd528SIngo Weinhold shift 2 4089b0dd528SIngo Weinhold ;; 4097c4641d0SOliver Tappe --enable-multiuser) HAIKU_ENABLE_MULTIUSER=1; shift 1;; 41060d8d8fcSIngo Weinhold --help | -h) usage; exit 0;; 4117c4641d0SOliver Tappe --include-gpl-addons) HAIKU_INCLUDE_GPL_ADDONS=1; shift 1;; 4127c4641d0SOliver Tappe --include-patented-code) HAIKU_INCLUDE_PATENTED_CODE=1; shift 1;; 41376fa0be3SIngo Weinhold --include-sources) HAIKU_INCLUDE_SOURCES=1; shift 1;; 4147c4641d0SOliver Tappe --include-3rdparty) HAIKU_INCLUDE_3RDPARTY=1; shift 1;; 41560d8d8fcSIngo Weinhold -j*) buildCrossToolsJobs="$1"; shift 1;; 4167c4641d0SOliver Tappe --target=*) TARGET_PLATFORM=`echo $1 | cut -d'=' -f2-`; shift 1;; 4177c4641d0SOliver Tappe --use-gcc-pipe) HAIKU_USE_GCC_PIPE=1; shift 1;; 4187986925fSIngo Weinhold --use-32bit) HAIKU_HOST_USE_32BIT=1; shift 1;; 4197986925fSIngo Weinhold --use-xattr) HAIKU_HOST_USE_XATTR=1; shift 1;; 420022fa244SIngo Weinhold *) echo Invalid argument: \`$1\'; exit 1;; 421022fa244SIngo Weinhold esac 422022fa244SIngo Weinholddone 423022fa244SIngo Weinhold 4240df3cc9cSIngo Weinhold# detect the build platform 425338b8dc3SIngo Weinholdcase "${platform}" in 4260df3cc9cSIngo Weinhold BeOS) revision=`uname -r` 4270df3cc9cSIngo Weinhold case "$revision" in 4287c4641d0SOliver Tappe 6.*) HOST_PLATFORM=dano ;; 4297c4641d0SOliver Tappe 5.1) HOST_PLATFORM=dano ;; 4307c4641d0SOliver Tappe 5.0.4) HOST_PLATFORM=bone ;; 4317c4641d0SOliver Tappe 5.0*) HOST_PLATFORM=r5 ;; 4320df3cc9cSIngo Weinhold *) echo Unknown BeOS version: $revision 4330df3cc9cSIngo Weinhold exit 1 ;; 4340df3cc9cSIngo Weinhold esac 4350df3cc9cSIngo Weinhold ;; 4367c4641d0SOliver Tappe Darwin) HOST_PLATFORM=darwin ;; 4377c4641d0SOliver Tappe FreeBSD) HOST_PLATFORM=freebsd 438c505b276SFrançois Revol SFDISK_BINARY=sfdisk-linux 4397986925fSIngo Weinhold if [ "$HAIKU_HOST_USE_32BIT" = 1 ] ; then 4405abd9a46SIngo Weinhold echo Unsupported platform: FreeBSD ${platformMachine} 441308c212cSIngo Weinhold exit 1 442308c212cSIngo Weinhold fi ;; 4437c4641d0SOliver Tappe Haiku) HOST_PLATFORM=haiku_host ;; 4447c4641d0SOliver Tappe Linux) HOST_PLATFORM=linux ;; 4457c4641d0SOliver Tappe OpenBSD) HOST_PLATFORM=openbsd ;; 4467c4641d0SOliver Tappe SunOS) HOST_PLATFORM=sunos ;; 4477c4641d0SOliver Tappe CYGWIN_NT-*) HOST_PLATFORM=cygwin ;; 448338b8dc3SIngo Weinhold *) echo Unsupported platform: ${platform} 4494cbe4925SAxel Dörfler exit 1 ;; 4504cbe4925SAxel Dörfleresac 45152a38012Sejakowatz 45277e84f21SIngo Weinhold# check yasm version 45377e84f21SIngo Weinholdif [ $targetArch = "x86" ]; then 45477e84f21SIngo Weinhold $HAIKU_YASM --version > /dev/null || { 45592696166SIngo Weinhold echo "The yasm assembler version 0.7.0 or later must be installed." 45677e84f21SIngo Weinhold echo "Download from: http://www.tortall.net/projects/yasm/wiki/Download" 45777e84f21SIngo Weinhold exit 1 45877e84f21SIngo Weinhold } 45977e84f21SIngo Weinhold 46077e84f21SIngo Weinhold set -- $($HAIKU_YASM --version | head -n 1) 46177e84f21SIngo Weinhold versionOK=0 46277e84f21SIngo Weinhold case $2 in 46392696166SIngo Weinhold 0.[0-6].*) ;; 46477e84f21SIngo Weinhold *) versionOK=1 ;; 46577e84f21SIngo Weinhold esac 46677e84f21SIngo Weinhold 46777e84f21SIngo Weinhold if [ $versionOK = 0 ]; then 46892696166SIngo Weinhold echo "The yasm assembler version 0.7.0 or later must be installed." 46977e84f21SIngo Weinhold echo "The installed version is $2." 47077e84f21SIngo Weinhold echo "Download from: http://www.tortall.net/projects/yasm/wiki/Download" 47177e84f21SIngo Weinhold exit 1 47277e84f21SIngo Weinhold fi 47377e84f21SIngo Weinholdfi 47477e84f21SIngo Weinhold 475c505b276SFrançois Revol# check common locations for sfdisk 476c505b276SFrançois Revolfor sfdiskDir in /sbin /usr/sbin /usr/local/sbin ; do 477c505b276SFrançois Revol if [ -e ${sfdiskDir}/${SFDISK_BINARY} ]; then 478c505b276SFrançois Revol HOST_SFDISK=${sfdiskDir}/${SFDISK_BINARY} 479c505b276SFrançois Revol fi 480c505b276SFrançois Revoldone 481c505b276SFrançois Revol 4823ecc5287SMichael Lotz# check for case-sensitive filesystem if on darwin 4837c4641d0SOliver Tappeif [ $HOST_PLATFORM = "darwin" ]; then 4840651c859SMichael Pfeiffer diskutil info $(pwd) | grep -i "case-sensitive" > /dev/null 4853ecc5287SMichael Lotz if [ $? != 0 ]; then 4863ecc5287SMichael Lotz echo "You need a case-sensitive file-system to build Haiku." 4873ecc5287SMichael Lotz echo "Please see the following guide on how to set one up:" 4883ecc5287SMichael Lotz echo "http://haiku-os.org/documents/dev/how_to_build_haiku_on_mac_os_x" 4893ecc5287SMichael Lotz exit 1 4903ecc5287SMichael Lotz fi 4913ecc5287SMichael Lotzfi 4923ecc5287SMichael Lotz 493338b8dc3SIngo Weinhold# create output directory 4946e7c6fe5SIngo Weinholdmkdir -p "$buildOutputDir" || exit 1 495338b8dc3SIngo Weinhold 496338b8dc3SIngo Weinhold# build cross tools from sources 497338b8dc3SIngo Weinholdif [ -n "$buildCrossTools" ]; then 49820ab75e6SIngo Weinhold "$buildCrossToolsScript" $buildCrossToolsMachine "$sourceDir" \ 49960d8d8fcSIngo Weinhold "$buildCrossTools" "$outputDir" $buildCrossToolsJobs || exit 1 5007c4641d0SOliver Tappe crossToolsPrefix="$outputDir/cross-tools/bin/${HAIKU_GCC_MACHINE}-" 501338b8dc3SIngo Weinholdfi 502338b8dc3SIngo Weinhold 503338b8dc3SIngo Weinhold# cross tools 504338b8dc3SIngo Weinholdif [ -n "$crossToolsPrefix" ]; then 505338b8dc3SIngo Weinhold get_build_tool_path AR ar 506338b8dc3SIngo Weinhold get_build_tool_path CC gcc 507338b8dc3SIngo Weinhold get_build_tool_path LD ld 508338b8dc3SIngo Weinhold get_build_tool_path OBJCOPY objcopy 509338b8dc3SIngo Weinhold get_build_tool_path RANLIB ranlib 510338b8dc3SIngo Weinholdfi 511338b8dc3SIngo Weinhold 512338b8dc3SIngo Weinhold# prepare gcc settings 513338b8dc3SIngo Weinholdstandard_gcc_settings 514338b8dc3SIngo Weinhold 515eedc3d0bSIngo Weinhold# check whether the Haiku compiler really targets Haiku or BeOS 5167c4641d0SOliver Tappecase "$HAIKU_GCC_MACHINE" in 517eedc3d0bSIngo Weinhold *-*-haiku) ;; 518eedc3d0bSIngo Weinhold *-*-beos) ;; 519eedc3d0bSIngo Weinhold *) echo The compiler specified as Haiku target compiler is not a valid \ 520eedc3d0bSIngo Weinhold Haiku cross-compiler. Please see ReadMe.cross-compile. >&2 521eedc3d0bSIngo Weinhold echo compiler: $HAIKU_CC 5227c4641d0SOliver Tappe echo compiler is configured for target: $HAIKU_GCC_MACHINE 523eedc3d0bSIngo Weinhold exit 1 ;; 524eedc3d0bSIngo Weinholdesac 525eedc3d0bSIngo Weinhold 52652a38012Sejakowatz# Generate BuildConfig 5277c4641d0SOliver Tappecat << EOF > "$buildConfigFile" 52852a38012Sejakowatz# BuildConfig 529ab2540c4SIngo Weinhold# Note: This file has been automatically generated by configure with the 530ab2540c4SIngo Weinhold# following arguments: 53155d267a4SFrançois Revol# ${configureArgs} 53252a38012Sejakowatz 5337c4641d0SOliver TappeTARGET_PLATFORM ?= "${TARGET_PLATFORM}" ; 5347c4641d0SOliver TappeHOST_PLATFORM ?= "${HOST_PLATFORM}" ; 535338b8dc3SIngo Weinhold 5367c4641d0SOliver TappeHAIKU_INCLUDE_GPL_ADDONS ?= "${HAIKU_INCLUDE_GPL_ADDONS}" ; 5377c4641d0SOliver TappeHAIKU_INCLUDE_PATENTED_CODE ?= "${HAIKU_INCLUDE_PATENTED_CODE}" ; 53876fa0be3SIngo WeinholdHAIKU_INCLUDE_SOURCES ?= "${HAIKU_INCLUDE_SOURCES}" ; 5397c4641d0SOliver TappeHAIKU_INCLUDE_3RDPARTY ?= "${HAIKU_INCLUDE_3RDPARTY}" ; 5407c4641d0SOliver TappeHAIKU_ENABLE_MULTIUSER ?= "${HAIKU_ENABLE_MULTIUSER}" ; 5417c4641d0SOliver TappeHAIKU_DISTRO_COMPATIBILITY ?= "${HAIKU_DISTRO_COMPATIBILITY}" ; 5427c4641d0SOliver TappeHAIKU_USE_GCC_PIPE ?= "${HAIKU_USE_GCC_PIPE}" ; 5437986925fSIngo WeinholdHAIKU_HOST_USE_32BIT ?= "${HAIKU_HOST_USE_32BIT}" ; 5447986925fSIngo WeinholdHAIKU_HOST_USE_XATTR ?= "${HAIKU_HOST_USE_XATTR}" ; 5457c4641d0SOliver TappeHAIKU_ALTERNATIVE_GCC_OUTPUT_DIR ?= ${HAIKU_ALTERNATIVE_GCC_OUTPUT_DIR} ; 5467c4641d0SOliver TappeHAIKU_ADD_ALTERNATIVE_GCC_LIBS ?= ${HAIKU_ADD_ALTERNATIVE_GCC_LIBS} ; 547eccc7665SIngo Weinhold 5487c4641d0SOliver TappeHAIKU_GCC_RAW_VERSION ?= ${HAIKU_GCC_RAW_VERSION} ; 5497c4641d0SOliver TappeHAIKU_GCC_MACHINE ?= ${HAIKU_GCC_MACHINE} ; 550338b8dc3SIngo WeinholdHAIKU_GCC_LIB_DIR ?= ${HAIKU_GCC_LIB_DIR} ; 551338b8dc3SIngo WeinholdHAIKU_GCC_HEADERS_DIR ?= ${HAIKU_GCC_HEADERS_DIR} ; 552338b8dc3SIngo WeinholdHAIKU_GCC_LIBGCC ?= ${HAIKU_GCC_LIBGCC} ; 553338b8dc3SIngo Weinhold 5547c4641d0SOliver TappeHAIKU_STATIC_LIBSTDC++ ?= ${HAIKU_STATIC_LIBSTDCXX} ; 5557c4641d0SOliver TappeHAIKU_SHARED_LIBSTDC++ ?= ${HAIKU_SHARED_LIBSTDCXX} ; 5567c4641d0SOliver TappeHAIKU_STATIC_LIBSUPC++ ?= ${HAIKU_STATIC_LIBSUPCXX} ; 5577c4641d0SOliver TappeHAIKU_SHARED_LIBSUPC++ ?= ${HAIKU_SHARED_LIBSUPCXX} ; 5587c4641d0SOliver TappeHAIKU_C++_HEADERS_DIR ?= ${HAIKU_CXX_HEADERS_DIR} ; 5598b5934c9SIngo Weinhold 5607c4641d0SOliver TappeHAIKU_BUILD_ATTRIBUTES_DIR ?= ${HAIKU_BUILD_ATTRIBUTES_DIR} ; 561338b8dc3SIngo Weinhold 562338b8dc3SIngo WeinholdHAIKU_AR ?= ${HAIKU_AR} ; 563338b8dc3SIngo WeinholdHAIKU_CC ?= ${HAIKU_CC} ; 564338b8dc3SIngo WeinholdHAIKU_LD ?= ${HAIKU_LD} ; 565338b8dc3SIngo WeinholdHAIKU_OBJCOPY ?= ${HAIKU_OBJCOPY} ; 566338b8dc3SIngo WeinholdHAIKU_RANLIB ?= ${HAIKU_RANLIB} ; 56777e84f21SIngo WeinholdHAIKU_YASM ?= ${HAIKU_YASM} ; 568338b8dc3SIngo WeinholdHAIKU_CPPFLAGS ?= ${HAIKU_CPPFLAGS} ; 569338b8dc3SIngo WeinholdHAIKU_CCFLAGS ?= ${HAIKU_CCFLAGS} ; 570338b8dc3SIngo WeinholdHAIKU_CXXFLAGS ?= ${HAIKU_CXXFLAGS} ; 571338b8dc3SIngo WeinholdHAIKU_LDFLAGS ?= ${HAIKU_LDFLAGS} ; 572338b8dc3SIngo WeinholdHAIKU_ARFLAGS ?= ${HAIKU_ARFLAGS} ; 573338b8dc3SIngo WeinholdHAIKU_UNARFLAGS ?= ${HAIKU_UNARFLAGS} ; 574338b8dc3SIngo Weinhold 5757c4641d0SOliver TappeHOST_GCC_RAW_VERSION ?= ${HOST_GCC_RAW_VERSION} ; 5767c4641d0SOliver TappeHOST_GCC_MACHINE ?= ${HOST_GCC_MACHINE} ; 5777c4641d0SOliver TappeHOST_LD ?= ${HOST_GCC_LD} ; 5787c4641d0SOliver TappeHOST_OBJCOPY ?= ${HOST_GCC_OBJCOPY} ; 579c505b276SFrançois RevolHOST_SFDISK ?= ${HOST_SFDISK} ; 5808b5934c9SIngo Weinhold 581c4786ea6SlilloEOF 582c4786ea6Slillo 583b1e5b60cSAxel Dörfler# Libgcc.a objects 584b1e5b60cSAxel Dörfler 5856e7c6fe5SIngo Weinholdcat << EOF > "$buildOutputDir/libgccObjects" 586b1e5b60cSAxel Dörfler# libgcc.a objects to be linked against libroot.so 587b1e5b60cSAxel Dörfler# Note: This file has been automatically generated by configure. 588b1e5b60cSAxel Dörfler 589338b8dc3SIngo WeinholdHAIKU_GCC_LIBGCC_OBJECTS ?= ${HAIKU_GCC_LIBGCC_OBJECTS} ; 590b1e5b60cSAxel DörflerEOF 591b1e5b60cSAxel Dörfler 5924c74bde8SJérôme Duval# Generate Timezones binaries bindings 5934c74bde8SJérôme Duval 594338b8dc3SIngo WeinholdtimezoneSources="africa antarctica asia australasia europe northamerica 595338b8dc3SIngo Weinhold southamerica pacificnew etcetera factory backward" 596338b8dc3SIngo Weinhold 5976e7c6fe5SIngo Weinholdcat << EOF > "$buildOutputDir/Timezones" 598b1e5b60cSAxel Dörfler# Timezones used for the build 599b1e5b60cSAxel Dörfler# Note: This file has been automatically generated by configure. 600b1e5b60cSAxel Dörfler 601338b8dc3SIngo WeinholdHAIKU_TIME_ZONE_SOURCES = ${timezoneSources} ; 602338b8dc3SIngo Weinhold 603b1e5b60cSAxel DörflerEOF 604b1e5b60cSAxel Dörfler 605338b8dc3SIngo Weinholdfor source in ${timezoneSources}; do 6063578c56aSAxel Dörfler f=$sourceDir/src/data/timezones/$source 6074c74bde8SJérôme Duval 6086e7c6fe5SIngo WeinholdTZOBJECTS=`gawk '/^Zone/ { print $2 } /^Link/ { print $3 } ' "$f" ` 6094c74bde8SJérôme Duval 6106e7c6fe5SIngo Weinholdcat << EOF >> "$buildOutputDir/Timezones" 611338b8dc3SIngo WeinholdTZ_OBJECTS on <timezone-source>${source} ?= $TZOBJECTS ; 6124c74bde8SJérôme DuvalEOF 6134c74bde8SJérôme Duvaldone 614338b8dc3SIngo Weinhold 6159b0dd528SIngo Weinhold# Generate a boot strap Jamfile in the output directory. 616338b8dc3SIngo Weinhold 617338b8dc3SIngo Weinholdcat << EOF > $outputDir/Jamfile 618338b8dc3SIngo Weinhold# automatically generated Jamfile 619338b8dc3SIngo Weinhold 620338b8dc3SIngo WeinholdHAIKU_TOP = ${sourceDir} ; 621338b8dc3SIngo WeinholdHAIKU_OUTPUT_DIR = ${outputDir} ; 622338b8dc3SIngo Weinhold 623338b8dc3SIngo Weinholdinclude [ FDirName \$(HAIKU_TOP) Jamfile ] ; 624338b8dc3SIngo Weinhold 625338b8dc3SIngo WeinholdEOF 626