I'm not a Fortran programmer, but I have some code to compile into my
program. It came up with false dependencies when I tried to compile it
in the CMAKE framework though. The problem is traced to comment lines
such as
C use cross product of vectors ...
Should a 'use' statement be considere
I have some static libraries and need to link them into my CMAKE
project's shared libraries. Is there a platform-independent way to
specify this? What I want can be expressed by the following:
g++ -shared -o libmylib.so my_obj_files.o -Wl,-whole-archive
-lmy_static_lib -Wl,-no-whole-archive