Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.

I am able to run the program under x64 release, but not Debug

Song__James
Beginner
549 Views

This is related to memory, i have a 64-bit machine. I wonder why this is happening? 

 

/OUT:"x64\Debug\CTMV2.exe" /INCREMENTAL:NO /NOLOGO /MANIFEST /MANIFESTFILE:"x64\Debug\CTMV2.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"x64\Debug/CTMV2.pdb" /SUBSYSTEM:CONSOLE kernel32.lib

What is this kernel32.lib thing?

0 Kudos
1 Reply
Steve_Lionel
Honored Contributor III
549 Views

kernel32.lib is the DLL import library for the primary Windows API library. Pretty much every program needs it, though it's not typical to name it explicitly on the link line. 

Now - what exactly does "not able to run" mean? What error do you get? I don't see anything unusual in the link line other than I am not seeing any part of your application.

 

0 Kudos
Reply