don't use gcc 7 for stretch yet

This commit is contained in:
Sylvestre Ledru 2022-07-04 13:35:32 +02:00
parent 3af5a6af37
commit c0db85dec6
2 changed files with 2 additions and 2 deletions

1
debian/changelog vendored
View File

@ -1,6 +1,5 @@
llvm-toolchain-snapshot (1:15~++20220625103012+3d37e785c77a-1~exp2) experimental; urgency=medium llvm-toolchain-snapshot (1:15~++20220625103012+3d37e785c77a-1~exp2) experimental; urgency=medium
* On Debian stretch, force the usage of g++-7
* Force the SSE2 on amd64 for compiler-rt/builtin: * Force the SSE2 on amd64 for compiler-rt/builtin:
https://reviews.llvm.org/D107082#3626632 https://reviews.llvm.org/D107082#3626632

3
debian/rules vendored
View File

@ -106,7 +106,8 @@ endif
ifneq (,$(filter $(DISTRO),stretch)) ifneq (,$(filter $(DISTRO),stretch))
# from llvm 15, we need gcc at least 7 # from llvm 15, we need gcc at least 7
GCC_VERSION := 7 # No need for now. keeping in case we do in the future
# GCC_VERSION := 7
# Don't enable lld python for old distros # Don't enable lld python for old distros
STAGE_ALL_CMAKE_EXTRA += -DLLDB_ENABLE_PYTHON=OFF STAGE_ALL_CMAKE_EXTRA += -DLLDB_ENABLE_PYTHON=OFF
endif endif