We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58c4667 commit b0bcf31Copy full SHA for b0bcf31
.github/workflows/release.yml
@@ -68,6 +68,9 @@ jobs:
68
run: |
69
echo "OUTPUT=${{ env.OUTPUT }}" >> $GITHUB_ENV
70
echo "#define FPM_BOOTSTRAP" > fpm-${{ env.VERSION }}.F90
71
+ # Intel compiler predefines "linux" and "unix" which causes inadvertent substitutions
72
+ echo "#undef linux" >> fpm-${{ env.VERSION }}.F90
73
+ echo "#undef unix" >> fpm-${{ env.VERSION }}.F90
74
fpm build --compiler ./ci/single-file-gfortran.sh
75
env:
76
OUTPUT: fpm-${{ env.VERSION }}.F90
0 commit comments