Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

the -lowercase option

fboyer
Beginner
589 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
589 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
589 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