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

Create a library (.lib) mixed of C and Fortran on Visual Studio .NET via IDE?

allan_cornet
Beginner
186 Views
Hello,
how create just a library (.lib) mixed of Visual C .net and Intel Fortran 8 via IDE of visual(not by command line or makefile )?
for example , I have 2 files foo1.c and foo2.f and i want a foo.lib
by a command line i can have this:
cl -c foo1.c
ifort /debug /nologo /f77rtl /assume:underscore /compile_only /iface:cref,nomixed_str_len_arg /extfor:f /names:lowercase foo2.f
and finally
link foo1.obj foo2.obj ...
to obtain a foo.lib
But I don't know how to do this with a visual studio (.NET) project that it don't use a makefile
could u help me ???
0 Kudos
0 Replies
Reply