From 9fae3273156fc4adfd631424c812ab83e563dd36 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Tue, 4 Apr 2023 14:20:02 +0200 Subject: tools: pass -Wl,--build-id=none and -buildid= to toolchain Unfortunately, we need to fix this up in both the Makefile and in CMake, because add_link_options doesn't immediately reflect on the CMake variables in scope. Signed-off-by: Jason A. Donenfeld --- tunnel/tools/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'tunnel/tools/CMakeLists.txt') diff --git a/tunnel/tools/CMakeLists.txt b/tunnel/tools/CMakeLists.txt index 7cffc4ac..a63d8335 100644 --- a/tunnel/tools/CMakeLists.txt +++ b/tunnel/tools/CMakeLists.txt @@ -5,6 +5,7 @@ cmake_minimum_required(VERSION 3.4.1) project("WireGuard") set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}") +add_link_options(LINKER:--build-id=none) add_executable(libwg-quick.so wireguard-tools/src/wg-quick/android.c ndk-compat/compat.c) target_compile_options(libwg-quick.so PUBLIC -O3 -std=gnu11 -Wall -include ${CMAKE_CURRENT_SOURCE_DIR}/ndk-compat/compat.h -DWG_PACKAGE_NAME=\"${ANDROID_PACKAGE_NAME}\") -- cgit v1.2.3