[llvm-commits] [poolalloc] r140020 - /poolalloc/trunk/runtime/FL2Allocator/CMakeLists.txt
John Criswell
criswell at uiuc.edu
Mon Sep 19 08:37:37 PDT 2011
Author: criswell
Date: Mon Sep 19 10:37:37 2011
New Revision: 140020
URL: http://llvm.org/viewvc/llvm-project?rev=140020&view=rev
Log:
Fixed CMake build of the FL2 Allocator. I basically disbled a C preprocessor
macro that isn't defined when using make.
Modified:
poolalloc/trunk/runtime/FL2Allocator/CMakeLists.txt
Modified: poolalloc/trunk/runtime/FL2Allocator/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/runtime/FL2Allocator/CMakeLists.txt?rev=140020&r1=140019&r2=140020&view=diff
==============================================================================
--- poolalloc/trunk/runtime/FL2Allocator/CMakeLists.txt (original)
+++ poolalloc/trunk/runtime/FL2Allocator/CMakeLists.txt Mon Sep 19 10:37:37 2011
@@ -3,6 +3,6 @@
add_llvm_library( poolalloc_rt PoolAllocator.cpp )
set_property(
TARGET poolalloc_rt
- PROPERTY COMPILE_DEFINITIONS USE_DYNCALL
+ PROPERTY COMPILE_DEFINITIONS
)
target_link_libraries( poolalloc_rt dyncall_s )
More information about the llvm-commits
mailing list