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
We're preparing for changing from the "Classic" Intel compilers to the LLVM-based ones. These are in the oneAPI toolkit: CC=icx CXX=icpx FC=ifx F90=ifx
When the build is configured with CMake and -DCGNS_BUILD_CGNSTOOLS=ON (default), there are many build warnings like this: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C2x [-Wdeprecated-non-prototype]
and build errors:
src/cgnstools/tkogl/tkogl.c:602:8: error: call to undeclared function 'TkWmAddToColormapWindows'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
TkWmAddToColormapWindows(tkwin);
If CGNS_BUILD_CGNSTOOLS=OFF is chosen, the build completes successfully without any warnings or errors.
It would be nice if this new Intel LLVM compiler was supported for the CGNS tools as well.
The text was updated successfully, but these errors were encountered:
We're preparing for changing from the "Classic" Intel compilers to the LLVM-based ones. These are in the oneAPI toolkit:
CC=icx CXX=icpx FC=ifx F90=ifx
When the build is configured with CMake and -DCGNS_BUILD_CGNSTOOLS=ON (default), there are many build warnings like this:
warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C2x [-Wdeprecated-non-prototype]
and build errors:
If
CGNS_BUILD_CGNSTOOLS=OFF
is chosen, the build completes successfully without any warnings or errors.It would be nice if this new Intel LLVM compiler was supported for the CGNS tools as well.
The text was updated successfully, but these errors were encountered: