File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed
llvm/utils/gn/secondary/clang Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -26,5 +26,7 @@ static_library("Interpreter") {
26
26
" IncrementalExecutor.cpp" ,
27
27
" IncrementalParser.cpp" ,
28
28
" Interpreter.cpp" ,
29
+ " InterpreterUtils.cpp" ,
30
+ " Value.cpp" ,
29
31
]
30
32
}
Original file line number Diff line number Diff line change 1
1
executable (" clang-repl" ) {
2
2
configs += [ " //llvm/utils/gn/build:clang_code" ]
3
3
deps = [
4
+ " //clang/lib/AST" ,
4
5
" //clang/lib/Basic" ,
5
6
" //clang/lib/Interpreter" ,
6
7
" //clang/lib/Tooling" ,
Original file line number Diff line number Diff line change @@ -14,4 +14,11 @@ unittest("ClangReplInterpreterTests") {
14
14
" IncrementalProcessingTest.cpp" ,
15
15
" InterpreterTest.cpp" ,
16
16
]
17
+
18
+ # Support plugins.
19
+ # FIXME: Disable dead stripping once other binaries are dead-stripped.
20
+ if (host_os != " mac" && host_os != " win" ) {
21
+ # Corresponds to export_executable_symbols() in cmake.
22
+ ldflags = [ " -rdynamic" ]
23
+ }
17
24
}
You can’t perform that action at this time.
0 commit comments