You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am building ascent (and all of the dependencies) using: scripts/build_ascent/build_ascent.sh on a macbook M3 with gfortran version: GNU Fortran (Homebrew GCC 14.2.0_1) 14.2.0
I get an error:
84%] Building C object examples/proxies/cloverleaf3d-ref/CMakeFiles/cloverleaf3d_par.dir/timer_c.c.o
cc: error: unknown argument: '-fallow-invalid-boz'
cc: error: unknown argument: '-fallow-argument-mismatch'
google suggests a fix that is already in the cmake.txt:
if (CMAKE_Fortran_COMPILER_ID STREQUAL "GNU")
add_compile_options(-fallow-invalid-boz -fallow-argument-mismatch)
endif()
I had to manually build the file with the failure and remove the argments. Once I did that, cloverleaf will build and run.
The text was updated successfully, but these errors were encountered:
I am building ascent (and all of the dependencies) using: scripts/build_ascent/build_ascent.sh on a macbook M3 with gfortran version: GNU Fortran (Homebrew GCC 14.2.0_1) 14.2.0
I get an error:
84%] Building C object examples/proxies/cloverleaf3d-ref/CMakeFiles/cloverleaf3d_par.dir/timer_c.c.o
cc: error: unknown argument: '-fallow-invalid-boz'
cc: error: unknown argument: '-fallow-argument-mismatch'
google suggests a fix that is already in the cmake.txt:
if (CMAKE_Fortran_COMPILER_ID STREQUAL "GNU")
add_compile_options(-fallow-invalid-boz -fallow-argument-mismatch)
endif()
I had to manually build the file with the failure and remove the argments. Once I did that, cloverleaf will build and run.
The text was updated successfully, but these errors were encountered: