Compiler Clashes

I downloaded the g95 Fortran compiler. Now after it sets it environment variables, none of my C/C++ programs compile on Developer C++. I get the following Message on the compiler log:<br /><br />Compiler: Default compiler<br />Building Makefile: "G:\Learinig C-K&R\Makefile.win"<br />Executing make...<br />make.exe -f "G:\Learinig C-K&R\Makefile.win" all<br />gcc.exe chap1_eg9.o -o "chap1_eg9.exe" -L"G:/Dev-Cpp/lib" <br /><br />F:/g95/lib/crt2.o(.text+0x16a):crt1.c: undefined reference to `__cpu_features_init'<br />collect2: ld returned 1 exit status<br /><br />make.exe: *** [chap1_eg9.exe] Error 1<br /><br />Execution terminated<br /><br />If I remove the environment variables, my programs compile with no problem. But then g95 doesn't work. Is there a way I can fix it?<br /><br />The g95 FORTRAN Compiler is available here: <a href="http://www.g95.org/" target="_blank">http://www.g95.org/</a><br />Developer C++ Is available here: <a href="http://www.bloodshed.net/dev/devcpp.html" target="_blank">http://www.bloodshed.net/dev/devcpp.html</a>
</div>
 
Top