Hello,
I have just discovered C::B is a beautiful tool. I thank the authors. I am working on windows 7 with MinGW and gfortran. When I create a fortran project that contains only a main.f90 file: I come very well to compile, linker and run my program.
But in a case more complicated where I have a main file and then two files which contain a module and a dll file: it does not work.
To compile my project with ms-dos command I put me in the directory and I type :
gfortran ok_module.f90 ok_module2.F90 ok.f90 bolsig_g.dll
this works well but not with C: B.
ld.exe||cannot find -lbolsig_g.dll|
While I have put in the section project > Build options > Linker settings > Link libraries and project > Build options > search directories > linker the file bolsig_g.dll.
More I am not sure that it tries to compile the files in good order. May he begins by ok.f90 then ok_module.f90 and finally ok_module2.f90. While it would make ok_module.f90 then ok_module2.f90 then ok.f90. How to tell the order?
Thanks a lot