aboutsummaryrefslogtreecommitdiffstats
path: root/win32/ExecutionEngine
diff options
context:
space:
mode:
authorHartmut Kaiser <hartmut.kaiser@gmail.com>2007-10-17 14:56:40 +0000
committerHartmut Kaiser <hartmut.kaiser@gmail.com>2007-10-17 14:56:40 +0000
commitefd4a5144b03f61ebfd53d0245176f95e1170fb8 (patch)
treeae6b915d1e467e108f69328b1f3d069eb2cade1c /win32/ExecutionEngine
parentc623096fe227a7705ccac5a5db514b64ccdfe6b2 (diff)
downloadexternal_llvm-efd4a5144b03f61ebfd53d0245176f95e1170fb8.zip
external_llvm-efd4a5144b03f61ebfd53d0245176f95e1170fb8.tar.gz
external_llvm-efd4a5144b03f61ebfd53d0245176f95e1170fb8.tar.bz2
Updated VC++ build system.
Silenced some VC warnings. I'm getting linker errors, though: unresolved externals: llvm::Split<class llvm::BasicBlock *,struct llvm::GraphTraits<class llvm::BasicBlock *> >(class llvm::DominatorTreeBase<class llvm::BasicBlock> &,class llvm::BasicBlock *) and llvm::Split<struct llvm::Inverse<class llvm::BasicBlock *>,struct llvm::GraphTraits<struct llvm::Inverse<class llvm::BasicBlock *> > >(class llvm::DominatorTreeBase<class llvm::BasicBlock> &,class llvm::BasicBlock *) Where are these defined? git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43073 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'win32/ExecutionEngine')
-rw-r--r--win32/ExecutionEngine/ExecutionEngine.vcproj4
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/ExecutionEngine/ExecutionEngine.vcproj b/win32/ExecutionEngine/ExecutionEngine.vcproj
index bf98b49..16bd5c6 100644
--- a/win32/ExecutionEngine/ExecutionEngine.vcproj
+++ b/win32/ExecutionEngine/ExecutionEngine.vcproj
@@ -41,7 +41,7 @@
Name="VCCLCompilerTool"
Optimization="0"
AdditionalIncludeDirectories="..\..\include;.."
- PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_LIB;__STDC_LIMIT_MACROS"
+ PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;WIN32;_DEBUG;_LIB;__STDC_LIMIT_MACROS"
StringPooling="true"
MinimalRebuild="true"
BasicRuntimeChecks="3"
@@ -111,7 +111,7 @@
<Tool
Name="VCCLCompilerTool"
AdditionalIncludeDirectories="..\..\include;.."
- PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_LIB;__STDC_LIMIT_MACROS"
+ PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;WIN32;NDEBUG;_LIB;__STDC_LIMIT_MACROS"
StringPooling="true"
RuntimeLibrary="2"
ForceConformanceInForLoopScope="true"