Mercurial > hg > orthanc
annotate Resources/CMake/BoostConfiguration.sh @ 2936:4b3929668358
create-dicom: more logs in case of error
author | am@osimis.io |
---|---|
date | Wed, 28 Nov 2018 14:36:09 +0100 |
parents | 8341256c6941 |
children | 9cc3d40e389b |
rev | line source |
---|---|
553
27d32fc6209a
simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
1 #!/bin/bash |
27d32fc6209a
simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
2 |
27d32fc6209a
simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
3 set -e |
27d32fc6209a
simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
4 set -u |
27d32fc6209a
simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
5 |
27d32fc6209a
simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
6 ## Starting with version 0.6.2, Orthanc is shipped with a subset of the |
27d32fc6209a
simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
7 ## Boost libraries that is generated with the BCP tool: |
27d32fc6209a
simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
8 ## |
27d32fc6209a
simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
9 ## http://www.boost.org/doc/libs/1_54_0/tools/bcp/doc/html/index.html |
27d32fc6209a
simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
10 ## |
27d32fc6209a
simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
11 ## This script generates this subset. |
753
a6576b478553
upgrade to boost 1.55.0
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
560
diff
changeset
|
12 ## |
a6576b478553
upgrade to boost 1.55.0
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
560
diff
changeset
|
13 ## History: |
a6576b478553
upgrade to boost 1.55.0
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
560
diff
changeset
|
14 ## - Orthanc between 0.6.2 and 0.7.3: Boost 1.54.0 |
1473
0631b56c35eb
Update to Boost 1.58.0 for static and Windows builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
753
diff
changeset
|
15 ## - Orthanc between 0.7.4 and 0.9.1: Boost 1.55.0 |
1830
2921384cc352
Upgrade to Boost 1.59.0 for static builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1473
diff
changeset
|
16 ## - Orthanc between 0.9.2 and 0.9.4: Boost 1.58.0 |
1931
687ff92d173b
Upgrade to Boost 1.60.0 for static builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1830
diff
changeset
|
17 ## - Orthanc between 0.9.5 and 1.0.0: Boost 1.59.0 |
2326
423d3b692bb9
Upgrade to Boost 1.64.0, and Toolbox::ToUpperCaseWithAccents
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1990
diff
changeset
|
18 ## - Orthanc between 1.1.0 and 1.2.0: Boost 1.60.0 |
2432
5a650eef0794
Upgrade to Boost 1.65.1 in static builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2354
diff
changeset
|
19 ## - Orthanc 1.3.0: Boost 1.64.0 |
2525 | 20 ## - Orthanc 1.3.1: Boost 1.65.1 |
2679 | 21 ## - Orthanc 1.3.2: Boost 1.66.0 |
2930
8341256c6941
upgrade to Boost 1.68 in static builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2679
diff
changeset
|
22 ## - Orthanc between 1.4.0 and 1.4.2: Boost 1.67.0 |
8341256c6941
upgrade to Boost 1.68 in static builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2679
diff
changeset
|
23 ## - Orthanc >= 1.4.3: Boost 1.68.0 |
553
27d32fc6209a
simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
24 |
2930
8341256c6941
upgrade to Boost 1.68 in static builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2679
diff
changeset
|
25 BOOST_VERSION=1_68_0 |
8341256c6941
upgrade to Boost 1.68 in static builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2679
diff
changeset
|
26 ORTHANC_VERSION=1.4.3 |
2432
5a650eef0794
Upgrade to Boost 1.65.1 in static builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2354
diff
changeset
|
27 |
5a650eef0794
Upgrade to Boost 1.65.1 in static builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2354
diff
changeset
|
28 rm -rf /tmp/boost_${BOOST_VERSION} |
5a650eef0794
Upgrade to Boost 1.65.1 in static builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2354
diff
changeset
|
29 rm -rf /tmp/bcp/boost_${BOOST_VERSION} |
553
27d32fc6209a
simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
30 |
27d32fc6209a
simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
31 cd /tmp |
2432
5a650eef0794
Upgrade to Boost 1.65.1 in static builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2354
diff
changeset
|
32 echo "Uncompressing the sources of Boost ${BOOST_VERSION}..." |
5a650eef0794
Upgrade to Boost 1.65.1 in static builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2354
diff
changeset
|
33 tar xfz ./boost_${BOOST_VERSION}.tar.gz |
553
27d32fc6209a
simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
34 |
27d32fc6209a
simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
35 echo "Generating the subset..." |
2432
5a650eef0794
Upgrade to Boost 1.65.1 in static builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2354
diff
changeset
|
36 mkdir -p /tmp/bcp/boost_${BOOST_VERSION} |
2679 | 37 bcp --boost=/tmp/boost_${BOOST_VERSION} thread system locale date_time filesystem math/special_functions algorithm uuid atomic iostreams program_options numeric/ublas geometry polygon signals2 /tmp/bcp/boost_${BOOST_VERSION} |
2527
a6c2d8a2a2ec
remove filenames too long for Windows in Boost
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2525
diff
changeset
|
38 |
a6c2d8a2a2ec
remove filenames too long for Windows in Boost
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2525
diff
changeset
|
39 echo "Removing documentation..." |
2679 | 40 rm -rf /tmp/bcp/boost_${BOOST_VERSION}/libs/locale/doc/html |
41 rm -rf /tmp/bcp/boost_${BOOST_VERSION}/libs/algorithm/doc/html | |
42 rm -rf /tmp/bcp/boost_${BOOST_VERSION}/libs/geometry/doc/html | |
43 rm -rf /tmp/bcp/boost_${BOOST_VERSION}/libs/geometry/doc/doxy/doxygen_output/html | |
44 rm -rf /tmp/bcp/boost_${BOOST_VERSION}/libs/filesystem/example/ | |
2527
a6c2d8a2a2ec
remove filenames too long for Windows in Boost
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2525
diff
changeset
|
45 |
a6c2d8a2a2ec
remove filenames too long for Windows in Boost
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2525
diff
changeset
|
46 # https://stackoverflow.com/questions/1655372/longest-line-in-a-file |
a6c2d8a2a2ec
remove filenames too long for Windows in Boost
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2525
diff
changeset
|
47 LONGEST_FILENAME=`find /tmp/bcp/ | awk '{print length, $0}' | sort -nr | head -1` |
a6c2d8a2a2ec
remove filenames too long for Windows in Boost
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2525
diff
changeset
|
48 LONGEST=`echo "$LONGEST_FILENAME" | cut -d ' ' -f 1` |
a6c2d8a2a2ec
remove filenames too long for Windows in Boost
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2525
diff
changeset
|
49 |
a6c2d8a2a2ec
remove filenames too long for Windows in Boost
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2525
diff
changeset
|
50 echo |
a6c2d8a2a2ec
remove filenames too long for Windows in Boost
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2525
diff
changeset
|
51 echo "Longest filename (${LONGEST} characters):" |
a6c2d8a2a2ec
remove filenames too long for Windows in Boost
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2525
diff
changeset
|
52 echo "${LONGEST_FILENAME}" |
a6c2d8a2a2ec
remove filenames too long for Windows in Boost
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2525
diff
changeset
|
53 echo |
a6c2d8a2a2ec
remove filenames too long for Windows in Boost
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2525
diff
changeset
|
54 |
a6c2d8a2a2ec
remove filenames too long for Windows in Boost
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2525
diff
changeset
|
55 if [ ${LONGEST} -ge 128 ]; then |
a6c2d8a2a2ec
remove filenames too long for Windows in Boost
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2525
diff
changeset
|
56 echo "ERROR: Too long filename for Windows!" |
a6c2d8a2a2ec
remove filenames too long for Windows in Boost
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2525
diff
changeset
|
57 echo |
a6c2d8a2a2ec
remove filenames too long for Windows in Boost
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2525
diff
changeset
|
58 exit -1 |
a6c2d8a2a2ec
remove filenames too long for Windows in Boost
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2525
diff
changeset
|
59 fi |
553
27d32fc6209a
simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
60 |
27d32fc6209a
simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
61 echo "Compressing the subset..." |
2527
a6c2d8a2a2ec
remove filenames too long for Windows in Boost
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2525
diff
changeset
|
62 cd /tmp/bcp |
2432
5a650eef0794
Upgrade to Boost 1.65.1 in static builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2354
diff
changeset
|
63 tar cfz boost_${BOOST_VERSION}_bcpdigest-${ORTHANC_VERSION}.tar.gz boost_${BOOST_VERSION} |
5a650eef0794
Upgrade to Boost 1.65.1 in static builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2354
diff
changeset
|
64 ls -l boost_${BOOST_VERSION}_bcpdigest-${ORTHANC_VERSION}.tar.gz |
5a650eef0794
Upgrade to Boost 1.65.1 in static builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2354
diff
changeset
|
65 md5sum boost_${BOOST_VERSION}_bcpdigest-${ORTHANC_VERSION}.tar.gz |
5a650eef0794
Upgrade to Boost 1.65.1 in static builds
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2354
diff
changeset
|
66 readlink -f boost_${BOOST_VERSION}_bcpdigest-${ORTHANC_VERSION}.tar.gz |