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.

the -lowercase option

fboyer
Beginner
590 Views

Hi,

Is there a way to disable the default option -lowercase used
by the ifc compiler ?

I want to link a fortran code with a C library but the names of the functions in the library are case-sensitive and contain both upper and lowercase letters ...

Thanks for your help.

F.

0 Kudos
2 Replies
TimP
Honored Contributor III
590 Views
Apparently, the options are -lowercase or -uppercase. No doubt you're aware this isn't the only issue which might require you to write Fortran-callable wrapper functions in C.
0 Kudos
Steven_L_Intel1
Employee
590 Views
I suggest the use of !DEC$ ATTRIBUTES ALIAS to specify the exact name you want, rather than changing the interpretation of all names. See the documentation for information on how to use the ATTRIBUTES directive.

Steve
0 Kudos
Reply