remove openmp workaround

This commit is contained in:
Sylvestre Ledru 2022-10-14 09:02:38 +02:00
parent 545205d21b
commit 9f3e727187

4
debian/rules vendored
View File

@ -684,10 +684,8 @@ VERBOSE=-v
debian-full-build: debian-full-build:
echo "Using cmake: $(CMAKE_BIN)" echo "Using cmake: $(CMAKE_BIN)"
# linker hack so stage2 can link against stage1 libs at runtime # linker hack so stage2 can link against stage1 libs at runtime
# build llvm-extract first to workaround
# https://github.com/llvm/llvm-project/issues/58219
LD_LIBRARY_PATH=$(STAGE_1_LIB_DIR):$$LD_LIBRARY_PATH \ LD_LIBRARY_PATH=$(STAGE_1_LIB_DIR):$$LD_LIBRARY_PATH \
VERBOSE=1 $(PRE_PROCESS) $(CMAKE_BIN) --build $(TARGET_BUILD) -j $(NJOBS) --target llvm-extract stage2 VERBOSE=1 $(PRE_PROCESS) $(CMAKE_BIN) --build $(TARGET_BUILD) -j $(NJOBS) --target stage2
# Check the stage 2 build worked # Check the stage 2 build worked
if ! readelf --string-dump .comment $(TARGET_BUILD_STAGE2)/bin/clang 2>&1|grep -q "clang version"; then \ if ! readelf --string-dump .comment $(TARGET_BUILD_STAGE2)/bin/clang 2>&1|grep -q "clang version"; then \