We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88d1de5 commit 4821c90Copy full SHA for 4821c90
clang/tools/clang-repl/CMakeLists.txt
@@ -22,3 +22,8 @@ clang_target_link_libraries(clang-repl PRIVATE
22
if(CLANG_PLUGIN_SUPPORT)
23
export_executable_symbols_for_plugins(clang-repl)
24
endif()
25
+
26
+string(TOUPPER ${CMAKE_SYSTEM_PROCESSOR} system_processor)
27
+if(${system_processor} MATCHES "ARM")
28
+ target_link_options(clang-repl PRIVATE LINKER:--long-plt)
29
+endif()
0 commit comments