53 lines
1.1 KiB
Bash
Executable File
53 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
#!/bin/bash
|
|
if [ -z $AC_HOME ]
|
|
then
|
|
echo "ASTAROTH_HOME environment variable not set, run \"source ./sourceme.sh\" in Astaroth home directory"
|
|
exit 1
|
|
fi
|
|
|
|
KERNEL_DIR=${AC_HOME}"/src/core/kernels"
|
|
ACC_DIR=${AC_HOME}"/acc"
|
|
ACC_DEFAULT_SAS="mhd_solver/stencil_assembly.sas"
|
|
ACC_DEFAULT_SPS="mhd_solver/stencil_process.sps"
|
|
|
|
${ACC_DIR}/clean.sh
|
|
${ACC_DIR}/build_acc.sh
|
|
|
|
|
|
ACC_SAS=${ACC_DEFAULT_SAS}
|
|
ACC_SPS=${ACC_DEFAULT_SPS}
|
|
|
|
while [ "$#" -gt 0 ]
|
|
do
|
|
case $1 in
|
|
-h|--help)
|
|
echo "You can set a custom files for DSL under the path $AC_HOME/"
|
|
echo "Example:"
|
|
echo "compile_acc.sh -a custom_setup/custom_assembly.sas -p custom_setup/custom_process.sps"
|
|
exit 0
|
|
;;
|
|
-a|--assembly)
|
|
shift
|
|
ACC_SAS=${1}
|
|
shift
|
|
echo "CUSTOM Assembly file!"
|
|
;;
|
|
-p|--process)
|
|
shift
|
|
ACC_SPS=${1}
|
|
shift
|
|
echo "CUSTOM Process file!"
|
|
;;
|
|
*)
|
|
break
|
|
esac
|
|
done
|
|
|
|
echo "Assembly file: ${ACC_DIR}/${ACC_SAS}"
|
|
echo "Process file: ${ACC_DIR}/${ACC_SPS}"
|
|
|
|
cd ${KERNEL_DIR}
|
|
${ACC_DIR}/compile.sh ${ACC_DIR}/${ACC_SAS}
|
|
${ACC_DIR}/compile.sh ${ACC_DIR}/${ACC_SPS}
|