浏览代码

Switch boost to g++ again, see if that helps building it correctly.

master
Ray Burgemeestre 5 年前
父节点
当前提交
5200dd1fbe
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      boost/Makefile

+ 2
- 1
boost/Makefile 查看文件

mkdir -p target && \ mkdir -p target && \
CXX=$$(which c++) ./bootstrap.sh --prefix=$$PWD/target/ --with-toolset=clang && \ CXX=$$(which c++) ./bootstrap.sh --prefix=$$PWD/target/ --with-toolset=clang && \
./b2 clean && \ ./b2 clean && \
./b2 --prefix=/usr/local/src/starcry/boost_1_68_0/target/ toolset=clang cxxflags="-stdlib=libc++" linkflags="-stdlib=libc++" || true
./b2 --with-program_options --prefix=$$PWD/target/ toolset=clang
# ^ ||true because with clang I saw a few libraries not compile correctly, we can ignore those. # ^ ||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++"


package: package:
rm -rf out rm -rf out

正在加载...
取消
保存