barwizi (OP)
Legendary
Offline
Activity: 882
Merit: 1000
|
|
September 04, 2013, 02:25:53 PM |
|
i keep getting
'g++' is not recognized as an internal or external command, operable program or batch file. Makefile.Release:720: recipe for target 'build/bitcoin.o' failed mingw32-make: *** [build/bitcoin.o] Error 1
anyone know how to deal with this?
|
|
|
|
smolen
|
|
September 04, 2013, 02:43:01 PM |
|
'g++' is not recognized as an internal or external command,
Mingw is not installed, or PATH is not set, or CC not set to compiler exe name. Or something else
|
Of course I gave you bad advice. Good one is way out of your price range.
|
|
|
barwizi (OP)
Legendary
Offline
Activity: 882
Merit: 1000
|
|
September 04, 2013, 02:47:30 PM |
|
'g++' is not recognized as an internal or external command,
Mingw is not installed, or PATH is not set, or CC not set to compiler exe name. Or something else how do i fix? Path i already set under environment variables Mingw is installed , how do i set cc?
|
|
|
|
CryptoBullion
|
|
September 04, 2013, 03:10:18 PM |
|
im guessing your making realcoin... which has build/bitcoin-qt_res.o: src\qt\res\bitcoin-qt.rc windres -i src\qt\res\bitcoin-qt.rc -o build\bitcoin-qt_res.o --include-dir=./src/qt/res $(DEFINES) but no build dir in the src dir https://github.com/realcoin/realcoin/tree/master/srcfrom src dir mkdir build just a guess...
|
|
|
|
barwizi (OP)
Legendary
Offline
Activity: 882
Merit: 1000
|
|
September 04, 2013, 03:14:52 PM |
|
im guessing your making realcoin... which has build/bitcoin-qt_res.o: src\qt\res\bitcoin-qt.rc windres -i src\qt\res\bitcoin-qt.rc -o build\bitcoin-qt_res.o --include-dir=./src/qt/res $(DEFINES) but no build dir in the src dir https://github.com/realcoin/realcoin/tree/master/srcfrom src dir mkdir build just a guess... nah the folder is there
|
|
|
|
smolen
|
|
September 04, 2013, 03:20:11 PM |
|
'g++' is not recognized as an internal or external command,
Mingw is not installed, or PATH is not set, or CC not set to compiler exe name. Or something else how do i fix? Path i already set under environment variables Mingw is installed , how do i set cc? Try to locate g++.exe (or may be it's named mingw-g++.exe or so), then run it from it's directory (should be 'bin'), then from directory with bitcoin sources. That's just wild guess, I don't have mingw installed now.
|
Of course I gave you bad advice. Good one is way out of your price range.
|
|
|
Hazard
Legendary
Offline
Activity: 980
Merit: 1000
|
|
September 04, 2013, 03:28:03 PM |
|
"Employable, but it'll cost you."
|
|
|
|
jdebunt
Legendary
Offline
Activity: 1596
Merit: 1010
|
|
September 04, 2013, 03:35:09 PM |
|
g++ –version , what result does that give you? (in command prompt)
|
|
|
|
smolen
|
|
September 04, 2013, 03:41:03 PM |
|
(ranting) from such large scale project as Bitcoin I'd expect XCode and Visual Studio project files...
|
Of course I gave you bad advice. Good one is way out of your price range.
|
|
|
shakezula
|
|
September 04, 2013, 03:44:48 PM |
|
Double check your -qt.pro file and make sure the "windows libs =" and "XXX_BUILD_PATH" statement sections are set up correctly for Windows.
Another thing to consider, if you're using a newer (last couple weeks/month) build of MinGW, you may also need to re-install the WHOLE thing including the MSYS bits (they were checked in the older builds, but not in recent builds) and not having MSYS can certainly cause this.
|
|
|
|
barwizi (OP)
Legendary
Offline
Activity: 882
Merit: 1000
|
|
September 05, 2013, 01:29:26 PM |
|
I re-installed everything, re did everything but now i get.
cc1plus.exe: error: unrecognized command line option "-fdiagnostics-show-option" Makefile.Debug:720: recipe for target 'build/bitcoin.o' failed mingw32-make[1]: *** [build/bitcoin.o] Error 1 mingw32-make[1]: Leaving directory 'C:/Serrazcoin' Makefile:34: recipe for target 'debug' failed mingw32-make: *** [debug] Error 2
|
|
|
|
jdebunt
Legendary
Offline
Activity: 1596
Merit: 1010
|
|
September 05, 2013, 01:37:54 PM |
|
I re-installed everything, re did everything but now i get.
cc1plus.exe: error: unrecognized command line option "-fdiagnostics-show-option" Makefile.Debug:720: recipe for target 'build/bitcoin.o' failed mingw32-make[1]: *** [build/bitcoin.o] Error 1 mingw32-make[1]: Leaving directory 'C:/Serrazcoin' Makefile:34: recipe for target 'debug' failed mingw32-make: *** [debug] Error 2
perhaps a stupid question/suggestion, but have you tried without -fdiagnostics-show-option?
|
|
|
|
|