From 90d3978f9588f553bd3c6dfe40d61e37e7400a22 Mon Sep 17 00:00:00 2001 From: Naoto Hori Date: Wed, 19 Apr 2023 12:30:33 +0100 Subject: [PATCH] Add compile command in cosma --- build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sh b/build.sh index fa1fd90..3b4786c 100755 --- a/build.sh +++ b/build.sh @@ -9,6 +9,8 @@ if [[ ${hostname:8:9} == 'sulis.hpc' ]]; then FC=ifort cmake .. -DCMAKE_BUILD_TYPE=Release elif [[ ${hostname:13:24} == 'augusta.nottingham.ac.uk' ]]; then FC=ifort cmake .. -DCMAKE_BUILD_TYPE=Release +elif [[ ${hostname:12:5} == 'cosma' ]]; then + FC=ifort cmake .. -DCMAKE_BUILD_TYPE=Release else cmake .. -DCMAKE_BUILD_TYPE=Release fi