Skip to content

Commit 0a1497d

Browse files
authored
Merge pull request #968 from compnerd/collision
build: rename `LLVMDemangle` to `llvmDemangle`
2 parents d590693 + 3b5c12e commit 0a1497d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

lib/llvm/Demangle/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
add_llbuild_library(LLVMDemangle STATIC
1+
add_llbuild_library(llvmDemangle STATIC
22
ItaniumDemangle.cpp
33
MicrosoftDemangle.cpp
44
)
55

6-
set_property(GLOBAL APPEND PROPERTY LLBuild_EXPORTS LLVMDemangle)
6+
set_property(GLOBAL APPEND PROPERTY LLBuild_EXPORTS llvmDemangle)

lib/llvm/Support/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ raw_ostream.cpp
5555

5656

5757
target_link_libraries(llvmSupport PRIVATE
58-
LLVMDemangle
58+
llvmDemangle
5959
Threads::Threads
6060
${CMAKE_DL_LIBS})
6161

tests/Examples/buildsystem-capi.llbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Check that the BuildSystem C API example builds and runs correctly.
22
#
3-
# RUN: %clangxx -o %t.exe -x c++ %{srcroot}/examples/c-api/buildsystem/main.c -I %{srcroot}/products/libllbuild/include -lllbuild -lllbuildBuildSystem -lllbuildCore -lllbuildBasic -lllvmSupport -lLLVMDemangle -L %{llbuild-lib-dir} -Werror -Xlinker %{sqlite} %{curses} %{threads} %{dl}
3+
# RUN: %clangxx -o %t.exe -x c++ %{srcroot}/examples/c-api/buildsystem/main.c -I %{srcroot}/products/libllbuild/include -lllbuild -lllbuildBuildSystem -lllbuildCore -lllbuildBasic -lllvmSupport -lllvmDemangle -L %{llbuild-lib-dir} -Werror -Xlinker %{sqlite} %{curses} %{threads} %{dl}
44
# RUN: env DYLD_LIBRARY_PATH=%{llbuild-lib-dir} LD_LIBRARY_PATH=%{llbuild-lib-dir} %t.exe %s > %t.out
55
# RUN: %{FileCheck} %s --input-file %t.out
66
#
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
add_llbuild_library(LLVMDemangle
1+
add_llbuild_library(llvmDemangle
22
ItaniumDemangle.cpp
33
MicrosoftDemangle.cpp
44
)

utils/import-llvm/cmake/supportCMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ raw_ostream.cpp
5555

5656

5757
target_link_libraries(llvmSupport PRIVATE
58-
LLVMDemangle
58+
llvmDemangle
5959
Threads::Threads
6060
${CMAKE_DL_LIBS})
6161

0 commit comments

Comments
 (0)