[llvm-branch-commits] [cfe-branch] r113311 - /cfe/branches/Apple/lemur-IB/Makefile
Daniel Dunbar
daniel at zuster.org
Tue Sep 7 16:33:13 PDT 2010
Author: ddunbar
Date: Tue Sep 7 18:33:13 2010
New Revision: 113311
URL: http://llvm.org/viewvc/llvm-project?rev=113311&view=rev
Log:
Disable parallel builds for now, msbuild doesn't seem to like to build the CMake project in parallel. :(
Modified:
cfe/branches/Apple/lemur-IB/Makefile
Modified: cfe/branches/Apple/lemur-IB/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/branches/Apple/lemur-IB/Makefile?rev=113311&r1=113310&r2=113311&view=diff
==============================================================================
--- cfe/branches/Apple/lemur-IB/Makefile (original)
+++ cfe/branches/Apple/lemur-IB/Makefile Tue Sep 7 18:33:13 2010
@@ -14,7 +14,7 @@
VSVARS := $(VS100COMNTOOLS)\vsvars32.bat
MSBUILD := C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\msbuild.exe
-JOBS := $(NUMBER_OF_PROCESSORS)
+JOBS := 1
ifeq ($(ENABLE_TESTS),1)
BUILD_TARGET := test
@@ -78,7 +78,7 @@
# FIXME: Only build clang.
build: configure
"$(MSBUILD)" /maxcpucount:$(JOBS) "$(OBJROOT)"\LLVM.sln $(TARGET)
- "$(MSBUILD)" "$(OBJROOT)"\INSTALL.vcxproj $(TARGET)
+ "$(MSBUILD)" /maxcpucount:$(JOBS) "$(OBJROOT)"\INSTALL.vcxproj $(TARGET)
test: build
"$(MSBUILD)" "$(OBJROOT)"\tools\clang\test\clang-test.vcxproj $(TARGET)
More information about the llvm-branch-commits
mailing list