2 # Generic crosstools package generator.
6 # The log-name MUST match the name of the package script
7 setl crosstools-
$BUILDTARGET.log
9 printi
"Creating AROS/$BUILDTARGET crosstools packages..."
11 delete
$BUILD_BASE/AROS-CROSSTOOLS
12 copy
$SOURCE_AROS $BUILD_BASE/AROS-CROSSTOOLS
14 CONFIGURE_OPTIONS
="--target=$BUILDTARGET $CONFIGUREEXTRA --enable-ccache"
15 if [[ "$AROSTOOLCHAININSTALLOPT" != "" ]]; then
16 CONFIGURE_OPTIONS
="$CONFIGURE_OPTIONS $AROSTOOLCHAININSTALLOPT"
18 CONFIGURE_OPTIONS
="$CONFIGURE_OPTIONS --enable-build-type=nightly $PORTSSOURCESOPT"
20 cd $BUILD_BASE/AROS-CROSSTOOLS
21 execute .
/configure
${=CONFIGURE_OPTIONS}
22 make -j $MAKE_JOBS crosstools
25 delete
$BUILD_BASE/AROS-CROSSTOOLS