You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
255 B
5 lines
255 B
# John Campbell, April 2022
|
|
# Simple configuration script to use correct compiler
|
|
# and flags (passed by CMake as argument)
|
|
#!/bin/sh
|
|
sed -e "s:FC = gfortran:FC = $2:g" -e "s:FFLAGS = -O:FFLAGS = ${*:3} -fPIC:g" $1/oneloop/Config.orig > $1/oneloop/Config
|