Procházet zdrojové kódy

Make boost compile errors not break the build.

master
Ray Burgemeestre před 5 roky
rodič
revize
b87ac425b3
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      boost/Makefile

+ 1
- 1
boost/Makefile Zobrazit soubor

@@ -16,7 +16,7 @@ impl:
mkdir -p target && \
CXX=$$(which c++) ./bootstrap.sh --prefix=$$PWD/target/ --with-toolset=clang && \
./b2 clean && \
./b2 --prefix=$$PWD/target/ toolset=clang
./b2 --prefix=$$PWD/target/ toolset=clang || true
# ^ ||true because with clang I saw a few libraries not compile correctly, we can ignore those.
#./b2 --with-program_options --prefix=$$PWD/target/ toolset=clang cxxflags="-stdlib=libc++ -std=c++17" linkflags="-stdlib=libc++"


Načítá se…
Zrušit
Uložit