diff options
| author | Loïc Guégan <loic.guegan@mailbox.org> | 2025-09-19 13:19:02 +0200 |
|---|---|---|
| committer | Loïc Guégan <loic.guegan@mailbox.org> | 2025-09-19 13:19:02 +0200 |
| commit | 4f1b2ea492d3e19c81ab98f050618d437b6e9ec5 (patch) | |
| tree | 118edc54e48150e7d9dfe78ef375a694fa4bc85f /simulations/libs | |
| parent | 284cee3f032bed1243f0d1256d394e9458132075 (diff) | |
Clean repo and debug setup.sh
Diffstat (limited to 'simulations/libs')
| -rwxr-xr-x | simulations/libs/setup.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/simulations/libs/setup.sh b/simulations/libs/setup.sh index 395a11e..14705f6 100755 --- a/simulations/libs/setup.sh +++ b/simulations/libs/setup.sh @@ -2,8 +2,10 @@ set -e -[ ! -e "simgrid" ] && git clone https://framagit.org/simgrid/simgrid -[ ! -e "rapidjson"] && git clone https://github.com/Tencent/rapidjson +[ ! -e "simgrid-v3.35.tar.bz2" ] && wget "https://framagit.org/simgrid/simgrid/-/archive/v3.35/simgrid-v3.35.tar.bz2?ref_type=tags" -O "simgrid-v3.35.tar.bz2" +[ ! -e "simgrid" ] && tar -xf "simgrid-v3.35.tar.bz2" && mv "simgrid-v3.35" simgrid + +[ ! -e "rapidjson" ] && git clone --depth 1 https://github.com/Tencent/rapidjson cd simgrid mkdir -p build |
