Skip to content

Commit 091dc98

Browse files
committed
Removed llvm 10 starting to add windows build instructions
1 parent 29cb80d commit 091dc98

File tree

3 files changed

+8
-16
lines changed

3 files changed

+8
-16
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ CMakeLists.txt.user
2222
/.cache
2323
/.vscode
2424

25+
# clion
26+
.idea*/
27+
2528
# output files
2629
output.ll
2730
output_finalnoopt.ll

cmake/FindLLVM-Wrapper.cmake

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -53,22 +53,6 @@ else()
5353
target_link_libraries(LLVM-Wrapper INTERFACE ${LLVM_AVAILABLE_LIBS})
5454
endif()
5555

56-
# In LLVM 10 (and potentially below) there is a full path to diaguids.lib embedded in the installation
57-
if(WIN32 AND TARGET LLVMDebugInfoPDB)
58-
get_target_property(LLVMDebugInfoPDB_LIBS LLVMDebugInfoPDB INTERFACE_LINK_LIBRARIES)
59-
foreach(LLVMDebugInfoPDB_LIB ${LLVMDebugInfoPDB_LIBS})
60-
if(LLVMDebugInfoPDB_LIB MATCHES "diaguids.lib")
61-
list(REMOVE_ITEM LLVMDebugInfoPDB_LIBS "${LLVMDebugInfoPDB_LIB}")
62-
list(APPEND LLVMDebugInfoPDB_LIBS "diaguids.lib")
63-
break()
64-
endif()
65-
endforeach()
66-
set_target_properties(LLVMDebugInfoPDB PROPERTIES
67-
INTERFACE_LINK_LIBRARIES "${LLVMDebugInfoPDB_LIBS}"
68-
)
69-
unset(LLVMDebugInfoPDB_LIBS)
70-
endif()
71-
7256
set(CMAKE_FOLDER "${CMAKE_FOLDER_LLVM}")
7357
unset(CMAKE_FOLDER_LLVM)
7458

docs/BUILDING.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,8 @@ docker run --rm -v %cd%:/data mergen target.exe 0x123456789
2525
docker run --rm -v $PWD:/data mergen target.exe 0x123456789
2626
```
2727

28+
29+
# Windows
30+
31+
soon...
32+

0 commit comments

Comments
 (0)