c++ - Using minGW not in PATH with eclipse CDT -
in professional computer, have mingw 4.5.2 installed. eclipse cdt works it. want test c++11 features. copied mingw 4.8.x folder personal pc.
my problem eclipse uses libraries old mingw (witch path). i'd want set eclipse use new version of mingw. know how change g++ used compiling/linking not include libraries.
any idea ?
thanks lot.
ps : can't change path in professional computer. run windows 7
you can try creating batch file following code, assuming mingw want use in c:\mingw :
set path=c:\mingw\bin;%path% start eclipse.exe
Comments
Post a Comment