Changeset View
Changeset View
Standalone View
Standalone View
build_files/build_environment/install_deps.sh
| Show First 20 Lines • Show All 1,820 Lines • ▼ Show 20 Lines | if [ ! -d $_inst ]; then | ||||
| cmake $cmake_d -D CMAKE_CXX_FLAGS="$cflags" -D CMAKE_EXE_LINKER_FLAGS="-lgcc_s -lgcc" .. | cmake $cmake_d -D CMAKE_CXX_FLAGS="$cflags" -D CMAKE_EXE_LINKER_FLAGS="-lgcc_s -lgcc" .. | ||||
| make -j$THREADS && make install | make -j$THREADS && make install | ||||
| # Force linking against static libs | # Force linking against static libs | ||||
| #rm -f $_inst/lib/*.so* | #rm -f $_inst/lib/*.so* | ||||
| # Additional depencencies | # Additional dependencies | ||||
| #cp ext/dist/lib/libtinyxml.a $_inst/lib | #cp ext/dist/lib/libtinyxml.a $_inst/lib | ||||
| #cp ext/dist/lib/libyaml-cpp.a $_inst/lib | #cp ext/dist/lib/libyaml-cpp.a $_inst/lib | ||||
| make clean | make clean | ||||
| if [ ! -d $_inst ]; then | if [ ! -d $_inst ]; then | ||||
| ERROR "OpenColorIO-$OCIO_VERSION failed to compile, exiting" | ERROR "OpenColorIO-$OCIO_VERSION failed to compile, exiting" | ||||
| exit 1 | exit 1 | ||||
| ▲ Show 20 Lines • Show All 4,227 Lines • Show Last 20 Lines | |||||