diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-12-19 02:53:02 +0100 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-12-19 02:53:02 +0100 |
commit | 40198132e0f861577cb12ea95426425267a342ed (patch) | |
tree | ef90ee91794e055e30a9ad910c7d67551a904988 /app/tools/CMakeLists.txt | |
parent | 9b92f4d3c5ed263533844d95031d497e3ba7a0ca (diff) |
tools: force ld.gold
This is to work around a linker bug affecting the NDK.
Reference: https://github.com/android-ndk/ndk/issues/602
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'app/tools/CMakeLists.txt')
-rw-r--r-- | app/tools/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/tools/CMakeLists.txt b/app/tools/CMakeLists.txt index f1dd9f67..c0647a70 100644 --- a/app/tools/CMakeLists.txt +++ b/app/tools/CMakeLists.txt @@ -1,6 +1,9 @@ cmake_minimum_required(VERSION 3.4.1) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}") +# Work around https://github.com/android-ndk/ndk/issues/602 +set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fuse-ld=gold") + add_executable(libwg-quick.so wireguard-android-integration/wg-quick.c) target_compile_options(libwg-quick.so PUBLIC -O3 -std=gnu11 -Wall -pedantic -Wno-missing-field-initializers -DWG_CONFIG_SEARCH_PATHS=\"\\\"/data/data/com.wireguard.android/files\\\"\") |