Skip to content

Commit

Permalink
Hack to get matmult working with tau_f90.sh
Browse files Browse the repository at this point in the history
Still need to unify C and Fortran instrumentors
  • Loading branch information
zbeekman committed Dec 15, 2024
1 parent 3d9cc5f commit bdc3aa7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build_and_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ set -o verbose

cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -Wdev -Wdeprecated -G Ninja -S . -B build
cmake --build build --parallel 8 --verbose || cmake --build build --verbose
( cd build && ( ctest -j --output-on-failure || ctest --rerun-failed --verbose ) )
#( cd build && ( ctest -j --output-on-failure || ctest --rerun-failed --verbose ) )
5 changes: 4 additions & 1 deletion src/fparse-llvm.in
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,10 @@ for arg in "$@"; do
#echo "args remaining: $*"
elif [[ $arg == -- ]]; then
shift
forward_remaining_args=true
#forward_remaining_args=true
#echo "args remaining: $*"
elif [[ $arg == -fPIC ]]; then
shift || true
#echo "args remaining: $*"
elif [[ -n ${arg:-} ]]; then
args+=("${arg}")
Expand Down

0 comments on commit bdc3aa7

Please sign in to comment.