| 12345678910111213141516171819202122232425262728293031323334 |
- target=arm-linux-gnueabihf
- gcc_version=12
- clang_version=15
- [settings]
- os=Linux
- arch=armv7hf
- compiler=clang
- compiler.version=$clang_version
- compiler.libcxx=libstdc++11
- compiler.cppstd=20
- build_type=Release
- boost:compiler=gcc
- boost:compiler.cppstd=11
- boost:compiler.version=$gcc_version
- boost:compiler.libcxx=libstdc++11
- [env]
- CHOST=$target
- CC=clang-$clang_version
- CXX=clang++-$clang_version
- CFLAGS="-target $target -ccc-gcc-name $target-gcc-$gcc_version"
- CXXFLAGS="-target $target -ccc-gcc-name $target-gcc-$gcc_version"
- LDFLAGS="--ld-path=ld.lld-$clang_version"
- boost:CC=$target-gcc-$gcc_version
- boost:CXX=$target-g++-$gcc_version
- boost:CFLAGS=""
- boost:CXXFLAGS=""
- boost:LDFLAGS=""
- [options]
- libpng:neon=False
|