Hi, I saw the warning message below when I built some fortran static library with cmake_3.29.3 and intel ifx 2023.
ifx: command line warning #10006: ignoring unknown option '/machine:x64'
The relevant section in Build.make looks like this:
C:\PROGRA~2\Intel\oneAPI\compiler\latest\windows\bin\ifx.exe /nologo @CMakeFiles\dmumps.dir\objects1.rsp @<<
-fuse-ld=llvm-lib -o dmumps.lib /machine:x64
/machine:x64 is a linker option, so it should be changed to /link /machine:x64.
Could you fix the problem, thanks in advance.