diff --git a/clang/tools/clang-repl/CMakeLists.txt b/clang/tools/clang-repl/CMakeLists.txt index 7aebbe7a19436a..f9a911b0ae8e24 100644 --- a/clang/tools/clang-repl/CMakeLists.txt +++ b/clang/tools/clang-repl/CMakeLists.txt @@ -66,7 +66,7 @@ clang_target_link_libraries(clang-repl PRIVATE # start to exceed this limit, e.g. when linking for arm-linux-gnueabihf with # gold. This flag tells the linker to build a PLT for the full address range. # Linkers without this flag are assumed to support proper PLTs by default. -set(flag_long_plt "-Wl,--long-plt") +set(flag_long_plt "LINKER:--long-plt") check_linker_flag(CXX ${flag_long_plt} HAVE_LINKER_FLAG_LONG_PLT) if(HAVE_LINKER_FLAG_LONG_PLT) target_link_options(clang-repl PRIVATE ${flag_long_plt})