Switched back to using LLVM-8.0.
This commit is contained in:
parent
74e0c680cd
commit
aaf40aa250
|
@ -66,7 +66,7 @@ pushd ${CARLA_BUILD_FOLDER} >/dev/null
|
||||||
# -- Get and compile libc++ ----------------------------------------------------
|
# -- Get and compile libc++ ----------------------------------------------------
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
|
|
||||||
LLVM_BASENAME=llvm-$CARLA_LLVM_VERSION_MAJOR.0
|
LLVM_BASENAME=llvm-8.0
|
||||||
|
|
||||||
LLVM_INCLUDE=${PWD}/${LLVM_BASENAME}-install/include/c++/v1
|
LLVM_INCLUDE=${PWD}/${LLVM_BASENAME}-install/include/c++/v1
|
||||||
LLVM_LIBPATH=${PWD}/${LLVM_BASENAME}-install/lib
|
LLVM_LIBPATH=${PWD}/${LLVM_BASENAME}-install/lib
|
||||||
|
@ -78,9 +78,10 @@ else
|
||||||
|
|
||||||
log "Retrieving libc++."
|
log "Retrieving libc++."
|
||||||
|
|
||||||
git clone --depth=1 -b release_${CARLA_LLVM_VERSION_MAJOR}0 https://github.com/llvm-mirror/llvm.git ${LLVM_BASENAME}-source
|
# TODO URGENT: These links are out of date! LLVM has moved to https://github.com/llvm/llvm-project.
|
||||||
git clone --depth=1 -b release_${CARLA_LLVM_VERSION_MAJOR}0 https://github.com/llvm-mirror/libcxx.git ${LLVM_BASENAME}-source/projects/libcxx
|
git clone --depth=1 -b release_80 https://github.com/llvm-mirror/llvm.git ${LLVM_BASENAME}-source
|
||||||
git clone --depth=1 -b release_${CARLA_LLVM_VERSION_MAJOR}0 https://github.com/llvm-mirror/libcxxabi.git ${LLVM_BASENAME}-source/projects/libcxxabi
|
git clone --depth=1 -b release_80 https://github.com/llvm-mirror/libcxx.git ${LLVM_BASENAME}-source/projects/libcxx
|
||||||
|
git clone --depth=1 -b release_80 https://github.com/llvm-mirror/libcxxabi.git ${LLVM_BASENAME}-source/projects/libcxxabi
|
||||||
|
|
||||||
log "Compiling libc++."
|
log "Compiling libc++."
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue