-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #89 from ignis-sec/dev
Release 0.6.0 - Building and Linking Improvements with CMake
- Loading branch information
Showing
2,616 changed files
with
79,271 additions
and
49,932 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
**/CmakeFiles/* | ||
docs/* | ||
documentation/* | ||
out/* | ||
Testing/* | ||
models/* | ||
dataset/* | ||
|
||
.idea/* | ||
.vs/* | ||
.vscode/* | ||
.scannerwork/* |
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,18 +1,22 @@ | ||
#!/bin/bash | ||
|
||
pwd | ||
whoami | ||
ls /root/ -alR | ||
ls /opt/ -alR | ||
# work inside include folder | ||
cd /opt/hostedtoolcache/Python/$1*/x64/include; | ||
|
||
echo "Working with python$1" | ||
|
||
# Create symlink without "m" in name | ||
[[ -f "python$1" ]] || sudo ln -s python$1m python$1; | ||
[[ -f "python$1" ]] || ln -s python$1m python$1; | ||
|
||
# copy libraries and includes to global paths | ||
sudo cp -r /opt/hostedtoolcache/Python/$1*/x64/lib/* /usr/local/lib/; | ||
sudo cp -r /opt/hostedtoolcache/Python/$1*/x64/include/py* /usr/include/; | ||
sudo ln -s /usr/include/$1m /usr/include/$1; | ||
cp -r /opt/hostedtoolcache/Python/$1*/x64/lib/* /usr/local/lib/; | ||
cp -r /opt/hostedtoolcache/Python/$1*/x64/include/py* /usr/include/; | ||
ln -s /usr/include/$1m /usr/include/$1; | ||
|
||
# Create symlink without "m" in name | ||
[[ -f "/usr/local/lib/libpython$1.so.1.0" ]] || sudo ln -s /usr/local/lib/libpython$1m.so.1.0 /usr/local/lib/libpython$1.so.1.0; | ||
[[ -f "/usr/local/lib/libpython$1.so" ]] || sudo ln -s /usr/local/lib/libpython$1m.so /usr/local/lib/libpython$1.so; | ||
[[ -f "/usr/local/lib/libpython$1.so.1.0" ]] || ln -s /usr/local/lib/libpython$1m.so.1.0 /usr/local/lib/libpython$1.so.1.0; | ||
[[ -f "/usr/local/lib/libpython$1.so" ]] || ln -s /usr/local/lib/libpython$1m.so /usr/local/lib/libpython$1.so; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
|
||
sudo cp -r /home/runner/boost_1_76_0/stage/lib/* /usr/local/lib; | ||
sudo cp -r /home/runner/boost_1_76_0/boost /usr/include/boost; | ||
cp -r /home/runner/boost_1_76_0/stage/lib/* /usr/local/lib; | ||
cp -r /home/runner/boost_1_76_0/boost /usr/include/boost; |
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
Oops, something went wrong.