cc1plus.exe: error: unrecognized command line option "-fsave-memoized"
make.exe: *** [main.o] Error 1
Execution terminated
What can be the reason for this..
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2007-10-03
-fsave-memoized is an obsolete option from an earlier version of GCC. It is still supported by the IDE because you may choose to use such an earlier version.
I have created a Console application and added my main.cpp to it. But when i m trying to compile it . The following error is being thrown :-
ompiler: Default compiler
Building Makefile: "C:\Dev-Cpp\Grph_morgan\Makefile.win"
Executing make...
make.exe -f "C:\Dev-Cpp\Grph_morgan\Makefile.win" all
g++.exe -D__DEBUG__ -c main.cpp -o main.o -I"C:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include" -I"C:/Dev-Cpp/include/c++/3.4.2/backward" -I"C:/Dev-Cpp/include/c++/3.4.2/mingw32" -I"C:/Dev-Cpp/include/c++/3.4.2" -I"C:/Dev-Cpp/include" -I"C:/SRLGrp/BoostLib/boost_1_34_1" -I"C:/Dev-Cpp/Grph_morgan" -fsave-memoized -pg -g3
cc1plus.exe: error: unrecognized command line option "-fsave-memoized"
make.exe: *** [main.o] Error 1
Execution terminated
What can be the reason for this..
-fsave-memoized is an obsolete option from an earlier version of GCC. It is still supported by the IDE because you may choose to use such an earlier version.
The trick is not to set options for which you have no idea what they are for. Also next time do a forum search!: http://sourceforge.net/forum/message.php?msg_id=3337653
Clifford