diff options
author | Bob Wilson <bob.wilson@apple.com> | 2010-07-20 20:44:02 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2010-07-20 20:44:02 +0000 |
commit | 273e48b53b0a44629eb90b2c5f029adbb4c20f77 (patch) | |
tree | 7e62db6f32fd657f35363439e7c46c2856809310 /Makefile | |
parent | 56ff3f15e71cb0baad677b9d1d9f1038b26cf18d (diff) |
Add support for a new Apple-style build target, EmbeddedSim, that builds
llvmCore for the iOS Simulator.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108922 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -112,7 +112,8 @@ cross-compile-build-tools: --host=$(BUILD_TRIPLE) --target=$(BUILD_TRIPLE); \ cd .. ; \ fi; \ - ($(MAKE) -C BuildTools \ + (unset SDKROOT; \ + $(MAKE) -C BuildTools \ BUILD_DIRS_ONLY=1 \ UNIVERSAL= \ ENABLE_OPTIMIZED=$(ENABLE_OPTIMIZED) \ |