diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2011-05-02 19:34:44 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2011-05-02 19:34:44 +0000 |
commit | 6b943ff3a3f8617113ecbf611cf0f8957e4e19d2 (patch) | |
tree | fc5f365fb9035b2d0c622bbf06c9bbe8627d7279 /utils/buildit | |
parent | d0e4e96dc17a6c1c6de3340842c80f0e187ba349 (diff) |
Notes
Diffstat (limited to 'utils/buildit')
-rw-r--r-- | utils/buildit/GNUmakefile | 2 | ||||
-rwxr-xr-x | utils/buildit/build_llvm | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/utils/buildit/GNUmakefile b/utils/buildit/GNUmakefile index 5140e1508a57e..470ee76b60fe4 100644 --- a/utils/buildit/GNUmakefile +++ b/utils/buildit/GNUmakefile @@ -6,7 +6,7 @@ # # You can specify TARGETS=ppc (or i386) on the buildit command line to limit the # build to just one target. The default is for ppc and i386. The compiler -# targetted at this host gets built anyway, but not installed unless it's listed +# targeted at this host gets built anyway, but not installed unless it's listed # in TARGETS. # Include the set of standard Apple makefile definitions. diff --git a/utils/buildit/build_llvm b/utils/buildit/build_llvm index 38b0bfd3848de..5665e4cf8b589 100755 --- a/utils/buildit/build_llvm +++ b/utils/buildit/build_llvm @@ -132,7 +132,7 @@ elif [ "$IOS_SIM_BUILD" = yes ]; then configure_opts="--enable-targets=x86 --host=i686-apple-darwin_sim \ --build=i686-apple-darwin10" else - configure_opts="--enable-targets=arm,x86,powerpc,cbe" + configure_opts="--enable-targets=arm,x86,cbe" fi if [ \! -f Makefile.config ]; then @@ -261,7 +261,7 @@ elif [ $MACOSX_DEPLOYMENT_TARGET = "10.5" ]; then -exec lipo -extract ppc7400 -extract i386 {} -output {} \; else find . -perm 755 -type f \! \( -name '*gccas' -o -name '*gccld' -o -name llvm-config \) \ - -exec lipo -extract ppc7400 -extract i386 -extract x86_64 {} -output {} \; + -exec lipo -extract i386 -extract x86_64 {} -output {} \; fi # The Hello dylib is an example of how to build a pass. |