Skip to content

Commit 6b6866c

Browse files
author
Farah Khashman
committed
QPR-12436: before_all_linux file needed
1 parent 9cb793d commit 6b6866c

1 file changed

Lines changed: 40 additions & 0 deletions

File tree

Wheels/before_all_linux.sh

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
#!/bin/bash
2+
3+
set -e
4+
5+
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
6+
echo "pwd"
7+
pwd
8+
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
9+
10+
CURRENT_DIR=$(pwd)
11+
12+
#echo "XYZ BEGIN unpack eigen"
13+
#curl -O -L https://gitlab.com/libeigen/eigen/-/archive/3.4.0/eigen-3.4.0.tar.gz
14+
#tar zxvf eigen-3.4.0.tar.gz
15+
#cd eigen-3.4.0
16+
#mkdir build
17+
#cd build
18+
#cmake ..
19+
#cd ../..
20+
#echo "XYZ END unpack eigen"
21+
22+
#echo "XYZ BEGIN unpack zlib"
23+
#curl -O -L https://www.zlib.net/zlib-1.3.1.tar.gz
24+
#tar xzvf zlib-1.3.1.tar.gz
25+
#cd zlib-1.3.1
26+
#./configure
27+
#make
28+
#cd ..
29+
#echo "XYZ END unpack zlib"
30+
31+
echo "XYZ BEGIN unpack boost"
32+
# Setup Boost
33+
curl -O -L https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.tar.gz
34+
tar xfz boost_1_80_0.tar.gz
35+
cd boost_1_80_0
36+
export Eigen3_DIR=$CURRENT_DIR/eigen-3.4.0
37+
./bootstrap.sh --with-libraries=date_time,filesystem,iostreams,log,regex,serialization,system,thread,timer
38+
./b2 install -sZLIB_SOURCE=$CURRENT_DIR/zlib-1.3.1
39+
cd ..
40+
echo "XYZ END unpack boost"

0 commit comments

Comments
 (0)