-
Notifications
You must be signed in to change notification settings - Fork 100
/
CMakeLists.txt
95 lines (83 loc) · 2.55 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#------------------------------------------------------------------------------
# CLING - the C++ LLVM-based InterpreterG :)
#
# This file is dual-licensed: you can choose to license it under the University
# of Illinois Open Source License or the GNU Lesser General Public License. See
# LICENSE.TXT for details.
#------------------------------------------------------------------------------
# Keep symbols for JIT resolution
set(LLVM_NO_DEAD_STRIP 1)
set(SOURCES
Kernel.cpp
)
set_source_files_properties(Kernel.cpp COMPILE_FLAGS "-fexceptions -frtti")
#Solve unresolved symbols bug in unix
#See https://github.com/vgvassilev/cling/issues/114
if(WIN32)
#FIXME: I don't know what flags are used in windows
#to include all symbols from a static library
#Maybe the bug is not present in windows and we leave it
#as it is
set(INTERPRETER
clingInterpreter
)
else()
#Force all interpreter symbols to be present in the shared library
#this will prevent missing symbol errors because we don't know at
#link time what function calls will be made by the user of
#the shared library
if (APPLE)
set(INTERPRETER
-Wl,-force_load clingInterpreter
)
else()
set(INTERPRETER
-Wl,--whole-archive clingInterpreter -Wl,--no-whole-archive
)
endif()
endif()
set(LIBS
clangAST
clangBasic
clangCodeGen
clangDriver
clangFrontend
clangLex
clangParse
clangSema
clangSerialization
clingUserInterface
clingMetaProcessor
${INTERPRETER}
clingUtils
)
if( LLVM_ENABLE_PIC )
set(ENABLE_SHARED SHARED)
endif()
if(WIN32)
set(output_name "libclingJupyter")
else()
set(output_name "clingJupyter")
endif()
add_cling_library(libclingJupyter ${ENABLE_SHARED} ${ENABLE_STATIC}
OUTPUT_NAME ${output_name}
${SOURCES}
LINK_LIBS
${LIBS}
LINK_COMPONENTS
Core
Support
)
set_target_properties(libclingJupyter
PROPERTIES ENABLE_EXPORTS 1)
if(ENABLE_SHARED)
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set(LIBCLINGJUPYTER_LINK_FLAGS " -Wl,-compatibility_version -Wl,1")
if (DEFINED ${LLVM_SUBMIT_VERSION})
set(LIBCLINGJUPYTER_LINK_FLAGS
"${LIBCLINGJUPYTER_LINK_FLAGS} -Wl,-current_version -Wl,${LLVM_SUBMIT_VERSION}.${LLVM_SUBMIT_SUBVERSION}")
endif()
set_property(TARGET libclingJupyter APPEND_STRING PROPERTY
LINK_FLAGS ${LIBCLINGJUPYTER_LINK_FLAGS})
endif()
endif()