-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
67 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash -e | ||
set -x #echo on | ||
yum -y install bzip2-devel which valgrind-devel patch; yum -y clean all | ||
cd ~ | ||
wget -nv --no-check-certificate https://boostorg.jfrog.io/artifactory/main/release/1.86.0/source/boost_1_86_0.tar.gz | ||
tar xzf boost_1_86_0.tar.gz | ||
cd boost_1_86_0 | ||
|
||
./bootstrap.sh --prefix=/usr/local/boost_1_86_0 | ||
./b2 cxxstd=20 --without-python -j$(nproc) install | ||
|
||
./bootstrap.sh --prefix=/usr/local/boost_1_86_0_valgrind | ||
./b2 cxxstd=20 --without-python -j$(nproc) valgrind=on install | ||
|
||
cd ~ | ||
rm -rf boost_* | ||
ccache -C |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash -e | ||
set -x #echo on | ||
cd ~ | ||
wget -nv https://github.com/Kitware/CMake/releases/download/v3.30.2/cmake-3.30.2-linux-x86_64.sh --no-check-certificate | ||
chmod +x cmake-3.30.2-linux-x86_64.sh | ||
./cmake-3.30.2-linux-x86_64.sh --skip-license --prefix=/usr/local | ||
cmake --version | ||
cd ~ | ||
rm -rf cmake-* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash -e | ||
set -x #echo on | ||
cd ~ | ||
wget -nv https://go.dev/dl/go1.23.0.linux-amd64.tar.gz | ||
tar -C /usr/local -xzf go1.23.0.linux-amd64.tar.gz | ||
rm -rf go1.23.0.linux-amd64.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
#!/bin/bash -e | ||
set -x #echo on | ||
cd ~ | ||
wget -nv --content-disposition https://github.com/google/googletest/archive/refs/tags/v1.14.0.tar.gz | ||
tar xvf googletest-1.14.0.tar.gz | ||
cd googletest-1.14.0/ | ||
wget -nv --content-disposition https://github.com/google/googletest/archive/refs/tags/v1.15.2.tar.gz | ||
tar xvf googletest-1.15.2.tar.gz | ||
cd googletest-1.15.2/ | ||
mkdir build;cd build;cmake ..;make install -j$(nproc) | ||
cd ~ | ||
rm -rf googletest-1.14.0.tar.gz googletest* | ||
rm -rf googletest-1.15.2.tar.gz googletest* | ||
ccache -C |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters