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

Compiler directive equivalent of /iface:default

longden_loo
Beginner
369 Views
All but one of my Fortran projects in a mixed C/Fortran app migrated from CVFare defined with /iface:default. The one remaining is /iface:CVF.
In that one project, I have a small handful of routines that I'd like to be /iface:default, so is a compiler directive to override /iface:CVF the best way to do this (other than physically separating the code)?
And is the appropriate directive for imitating /iface:default something like (for subroutine fooBar):
!DEC$ ATTRIBUTES C, REFERENCE, ALIAS:'_FOOBAR' :: fooBar, NOMIXED_STR_LEN_ARG
Thx.
0 Kudos
1 Reply
Steven_L_Intel1
Employee
369 Views
It's spelled:

!DEC$ ATTRIBUTES DEFAULT :: routinename
0 Kudos
Reply