我正在使用cmake配置一个CXX混合的Fortran项目(实际上大多数代码都在CXX中,只有很少的fortran代码)。
编译时会发出此警告
f951: Warning: command line option ‘-fext-numeric-literals’ is valid for C++/ObjC++ but not for Fortran
因为我在这里启用了此标志:
target_compile_options(myproject PUBLIC -fext-numeric-literals)
反正有编译器在编译fortran代码时跳过此标志吗?