comparison src/llvm-1-fixes.patch @ 2933:0919be00603c

Include LLVM as a dependency of Octave
author John W. Eaton <jwe@octave.org>
date Wed, 02 Jan 2013 20:21:08 -0500
parents
children
comparison
equal deleted inserted replaced
2932:0adbff7dec24 2933:0919be00603c
1 diff -uNr a/lib/ExecutionEngine/JIT/CMakeLists.txt b/lib/ExecutionEngine/JIT/CMakeLists.txt
2 --- a/lib/ExecutionEngine/JIT/CMakeLists.txt 2011-07-28 20:14:25.000000000 -0400
3 +++ b/lib/ExecutionEngine/JIT/CMakeLists.txt 2012-12-27 15:31:36.302394951 -0500
4 @@ -12,6 +12,7 @@
5 )
6
7 add_llvm_library_dependencies(LLVMJIT
8 + LLVMCodeGen
9 LLVMCore
10 LLVMExecutionEngine
11 LLVMRuntimeDyld
12 diff -uNr a/utils/unittest/CMakeLists.txt b/utils/unittest/CMakeLists.txt
13 --- a/utils/unittest/CMakeLists.txt 2011-07-27 06:19:32.000000000 -0400
14 +++ b/utils/unittest/CMakeLists.txt 2012-12-27 15:57:13.797820822 -0500
15 @@ -37,6 +37,14 @@
16 googletest/gtest-typed-test.cc
17 )
18
19 +add_llvm_library_dependencies(gtest
20 + LLVMSupport
21 + )
22 +
23 add_llvm_library(gtest_main
24 UnitTestMain/TestMain.cpp
25 )
26 +
27 +add_llvm_library_dependencies(gtest_main
28 + gtest
29 + )