mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-11 18:42:01 +00:00
Remove old hack for compiling with gcc-4.0.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140573 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
256e10f964
commit
05a5c109e0
@ -142,32 +142,15 @@ else
|
|||||||
LLVM_VERSION="$LLVM_SUBMIT_VERSION-$LLVM_SUBMIT_SUBVERSION"
|
LLVM_VERSION="$LLVM_SUBMIT_VERSION-$LLVM_SUBMIT_SUBVERSION"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
GCC_VER=`cc --version 2>/dev/null | sed 1q`
|
# Figure out how many make processes to run.
|
||||||
|
SYSCTL=`sysctl -n hw.activecpu`
|
||||||
if echo "$GCC_VER" | grep GCC > /dev/null; then
|
# sysctl -n hw.* does not work when invoked via B&I chroot /BuildRoot.
|
||||||
GCC_VER=`echo $GCC_VER | sed -e 's/.*(GCC) \([0-9.][0-9.]*\).*/\1/'`
|
# Builders can default to 2, since even if they are single processor,
|
||||||
MAJ_VER=`echo $GCC_VER | sed 's/\..*//'`
|
# nothing else is running on the machine.
|
||||||
MIN_VER=`echo $GCC_VER | sed 's/[^.]*\.\([0-9]*\).*/\1/'`
|
if [ -z "$SYSCTL" ]; then
|
||||||
fi
|
SYSCTL=2
|
||||||
|
|
||||||
JOBS_FLAG=""
|
|
||||||
|
|
||||||
# Note: If compiling with GCC 4.0, don't pass the -jN flag. Building universal
|
|
||||||
# already has parallelism and we don't want to make the builders hit swap by
|
|
||||||
# firing off too many gccs at the same time.
|
|
||||||
if [ "x$MAJ_VER" != "x4" -o "x$MIN_VER" != "x0" ]; then
|
|
||||||
# Figure out how many make processes to run.
|
|
||||||
SYSCTL=`sysctl -n hw.activecpu`
|
|
||||||
|
|
||||||
# sysctl -n hw.* does not work when invoked via B&I chroot /BuildRoot.
|
|
||||||
# Builders can default to 2, since even if they are single processor,
|
|
||||||
# nothing else is running on the machine.
|
|
||||||
if [ -z "$SYSCTL" ]; then
|
|
||||||
SYSCTL=2
|
|
||||||
fi
|
|
||||||
|
|
||||||
JOBS_FLAG="-j $SYSCTL"
|
|
||||||
fi
|
fi
|
||||||
|
JOBS_FLAG="-j $SYSCTL"
|
||||||
|
|
||||||
make $JOBS_FLAG $OPTIMIZE_OPTS UNIVERSAL=1 UNIVERSAL_ARCH="$HOSTS" \
|
make $JOBS_FLAG $OPTIMIZE_OPTS UNIVERSAL=1 UNIVERSAL_ARCH="$HOSTS" \
|
||||||
UNIVERSAL_SDK_PATH=$SDKROOT \
|
UNIVERSAL_SDK_PATH=$SDKROOT \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user