Skip to content

Commit

Permalink
Don't compile libcutest_qradruple with Intel compilers
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Aug 24, 2024
1 parent b8db7ef commit af22f2c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/meson.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,15 @@ jobs:
else
MODE="shared"
fi
QUADRUPLE="true"
if [[ "${{ matrix.compiler }}" == "intel-classic" || "${{ matrix.compiler }}" == "intel" ]]; then
QUADRUPLE="false"
fi
meson setup builddir --buildtype=debug \
--prefix=$GITHUB_WORKSPACE/cutest \
-Ddefault_library=${MODE} \
-Dquadruple=true \
-Dint64=$INT64
-Dquadruple=${QUADRUPLE} \
-Dint64=${INT64}
- name: Build CUTEST
shell: bash
Expand Down

0 comments on commit af22f2c

Please sign in to comment.