Mercurial > hg > orthanc-gdcm
view Resources/holy-build-box-internal.sh @ 2:4f6495e05084
CMake option: ORTHANC_SDK_VERSION
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 19 May 2020 12:38:44 +0200 |
parents | 108d34b53bb8 |
children | 4b01aa43c3ee |
line wrap: on
line source
#!/bin/bash set -e # Activate Holy Build Box environment. source /hbb_exe/activate set -x mkdir /tmp/build cd /tmp/build # Holy Build Box defines LDFLAGS as "-L/hbb_exe/lib # -static-libstdc++". The "-L/hbb_exe/lib" option results in linking # errors "undefined reference" to `std::__once_callable', # 'std::__once_call' and '__once_proxy'. export LDFLAGS=-static-libstdc++ unset LDPATHFLAGS unset SHLIB_LDFLAGS unset LD_LIBRARY_PATH unset LIBRARY_PATH mkdir /tmp/source-writeable cp -r /source/CMakeLists.txt /tmp/source-writeable/ cp -r /source/Plugin /tmp/source-writeable/ cp -r /source/Resources /tmp/source-writeable/ cmake /tmp/source-writeable \ -DCMAKE_BUILD_TYPE=$1 -DSTATIC_BUILD=ON \ -DORTHANC_FRAMEWORK_SOURCE=web \ -DORTHANC_FRAMEWORK_VERSION=1.7.0 \ -DCMAKE_INSTALL_PREFIX=/target make -j`nproc` if [ "$1" == "Release" ]; then strip ./libOrthancGdcm.so fi make install