-
Notifications
You must be signed in to change notification settings - Fork 50
/
CMakeLists.txt
69 lines (62 loc) · 2.94 KB
/
CMakeLists.txt
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
cmake_minimum_required(VERSION 3.5.0 FATAL_ERROR)
project(demumble CXX)
if (UNIX)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -fno-exceptions -fno-rtti")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility=hidden")
if (${CMAKE_GENERATOR} STREQUAL "Ninja")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fdiagnostics-color")
endif()
# 10.9 chosen somewhat arbitrary; it's the first target where clang defaults
# to libc++ and ld64 defaults to stripping __TEXT,__eh_frame.
if (APPLE)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mmacosx-version-min=10.9")
else()
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-PIC")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -no-pie")
endif()
endif()
if (WIN32)
# https://gitlab.kitware.com/cmake/cmake/-/issues/20610
string(REGEX REPLACE "/GR" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
string(REGEX REPLACE "/EHsc" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
add_definitions(-D_HAS_EXCEPTIONS=0)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /Zc:inline /EHs-c- /GR-")
add_definitions(-D_CRT_SECURE_NO_WARNINGS) # The LLVM build sets this.
# Disable cl.exe warnings that LLVM disables as well.
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4244 /wd4267")
# This is apparently the simplest way to statically link the CRT in CMake:
string(TOUPPER "${CMAKE_BUILD_TYPE}" build)
set(flag_var "CMAKE_CXX_FLAGS_${build}")
if(${flag_var} MATCHES "/MD")
string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}")
endif()
endif()
include_directories(third_party/llvm/include)
include_directories(third_party/swift/include)
add_definitions(
-DLLVM_DISABLE_ABI_BREAKING_CHECKS_ENFORCING=1
-DSWIFT_SUPPORT_OLD_MANGLING=1
-DSWIFT_STDLIB_HAS_TYPE_PRINTING=1
)
add_executable(demumble
demumble.cc
third_party/llvm/lib/Demangle/Demangle.cpp
third_party/llvm/lib/Demangle/ItaniumDemangle.cpp
third_party/llvm/lib/Demangle/DLangDemangle.cpp
third_party/llvm/lib/Demangle/MicrosoftDemangle.cpp
third_party/llvm/lib/Demangle/MicrosoftDemangleNodes.cpp
third_party/llvm/lib/Demangle/RustDemangle.cpp
third_party/swift/lib/Demangling/Context.cpp
third_party/swift/lib/Demangling/CrashReporter.cpp
third_party/swift/lib/Demangling/Demangler.cpp
third_party/swift/lib/Demangling/Errors.cpp
third_party/swift/lib/Demangling/ManglingUtils.cpp
third_party/swift/lib/Demangling/NodeDumper.cpp
third_party/swift/lib/Demangling/NodePrinter.cpp
third_party/swift/lib/Demangling/OldDemangler.cpp
third_party/swift/lib/Demangling/OldRemangler.cpp
third_party/swift/lib/Demangling/Punycode.cpp
third_party/swift/lib/Demangling/Remangler.cpp
)
set_target_properties(demumble PROPERTIES CXX_STANDARD 17
CXX_STANDARD_REQUIRED ON)