Skip to content

Commit

Permalink
* fixed: LLVM library compilation - github doesn't support git:// sch…
Browse files Browse the repository at this point in the history
…eme anymore
  • Loading branch information
dkimitsa committed Apr 6, 2024
1 parent 5b10527 commit fcee80a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler/llvm/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ endif()
set(C_CXX_FLAGS "${C_CXX_FLAGS} -fvisibility=hidden -fdata-sections -ffunction-sections")

ExternalProject_Add(extclang
GIT_REPOSITORY git://github.com/mobivm/clang.git
GIT_REPOSITORY https://github.com/mobivm/clang.git
GIT_TAG 7b389564897bc6c0431c42f8f1825f04624ff4e3
UPDATE_COMMAND ""
CONFIGURE_COMMAND ""
Expand All @@ -59,7 +59,7 @@ set(LLVM_C_FLAGS "${C_CXX_FLAGS} -fvisibility=hidden -fdata-sections -ffunction-
set(LLVM_CXX_FLAGS "${C_CXX_FLAGS} -fvisibility=hidden -fdata-sections -ffunction-sections")
ExternalProject_Add(extllvm
DEPENDS extclang
GIT_REPOSITORY git://github.com/mobivm/llvm.git
GIT_REPOSITORY https://github.com/mobivm/llvm.git
GIT_TAG aceb47b80838681fe65a1d01aac7aae7b863ac5a
PATCH_COMMAND bash -c "rm -rf tools/clang && ln -s ../../../../extclang-prefix/src/extclang tools/clang && ${CMAKE_SOURCE_DIR}/patches/apply-patches"
LIST_SEPARATOR ^^
Expand Down

0 comments on commit fcee80a

Please sign in to comment.