forked from desktop-app/cmake_helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options_linux.cmake
119 lines (109 loc) · 3.52 KB
/
options_linux.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# This file is part of Desktop App Toolkit,
# a set of libraries for developing nice desktop applications.
#
# For license and copyright information please follow this link:
# https://github.com/desktop-app/legal/blob/master/LEGAL
target_compile_options(common_options
INTERFACE
-fPIC
$<$<NOT:$<CONFIG:Debug>>:-fno-strict-aliasing>
-pipe
)
target_compile_options_if_exists(common_options
INTERFACE
-Wall
-Wextra
-Wno-unused-parameter
-Wno-switch
-Wno-maybe-uninitialized
-Wno-missing-field-initializers
-Wno-sign-compare
-Wno-deprecated # implicit capture of 'this' via '[=]' is deprecated in C++20
)
target_link_options_if_exists(common_options
INTERFACE
-Wno-alloc-size-larger-than # Qt + LTO
-Wno-stringop-overflow # Qt + LTO
-Wno-odr # Qt + LTO
-Wno-inline # OpenAL + LTO
-pthread
-Wl,--as-needed
)
if (DESKTOP_APP_SPECIAL_TARGET)
target_compile_options(common_options
INTERFACE
-Werror
)
endif()
if (NOT DESKTOP_APP_USE_PACKAGED)
set(ipo_prop $<TARGET_PROPERTY:INTERPROCEDURAL_OPTIMIZATION>)
set(ipo_config_prop $<TARGET_PROPERTY:INTERPROCEDURAL_OPTIMIZATION_$<UPPER_CASE:$<CONFIG>>>)
set(ipo_compile_value_on)
set(ipo_compile_value_off -fno-lto)
set(ipo_compile_values ${ipo_compile_value_on},${ipo_compile_value_off})
set(ipo_link_value_on -fwhole-program)
set(ipo_link_value_off -fuse-ld=lld -fno-lto -fno-use-linker-plugin)
set(ipo_link_values ${ipo_link_value_on},${ipo_link_value_off})
target_compile_options(common_options
INTERFACE
$<IF:$<NOT:$<STREQUAL:${ipo_config_prop},>>,$<IF:$<BOOL:${ipo_config_prop}>,${ipo_compile_values}>,$<IF:$<BOOL:${ipo_prop}>,${ipo_compile_values}>>
$<$<CONFIG:Debug>:-O0>
$<$<CONFIG:Debug>:-U_FORTIFY_SOURCE>
)
target_link_options(common_options
INTERFACE
$<IF:$<NOT:$<STREQUAL:${ipo_config_prop},>>,$<IF:$<BOOL:${ipo_config_prop}>,${ipo_link_values}>,$<IF:$<BOOL:${ipo_prop}>,${ipo_link_values}>>
-static-libstdc++
-static-libgcc
-rdynamic
-Wl,-z,muldefs
-Wl,-z,relro
-Wl,-z,now
-Wl,-z,noexecstack
-pie
)
endif()
if (NOT DESKTOP_APP_DISABLE_JEMALLOC)
target_link_libraries(common_options
INTERFACE
$<TARGET_OBJECTS:desktop-app::linux_jemalloc_helper>
$<LINK_ONLY:desktop-app::external_jemalloc>
)
endif()
if (DESKTOP_APP_USE_ALLOCATION_TRACER)
target_link_options(common_options
INTERFACE
# -Wl,-wrap,__malloc
-Wl,-wrap,__libc_malloc
-Wl,-wrap,malloc
-Wl,-wrap,valloc
-Wl,-wrap,pvalloc
-Wl,-wrap,calloc
-Wl,-wrap,realloc
-Wl,-wrap,memalign
-Wl,-wrap,aligned_alloc
-Wl,-wrap,posix_memalign
-Wl,-wrap,free
-Wl,--push-state,--no-as-needed,-lrt,--pop-state
)
target_link_libraries(common_options
INTERFACE
desktop-app::linux_allocation_tracer
$<TARGET_FILE:desktop-app::linux_allocation_tracer>
)
endif()
if (DESKTOP_APP_ASAN)
target_compile_options(common_options INTERFACE -fsanitize=address)
target_link_options(common_options INTERFACE -fsanitize=address)
if (NOT DESKTOP_APP_USE_PACKAGED)
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
target_link_options(common_options INTERFACE -static-libasan)
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
target_link_options(common_options INTERFACE -static-libsan)
endif()
endif()
endif()
target_link_libraries(common_options
INTERFACE
${CMAKE_DL_LIBS}
)