Ran into my code::blocks compiler path issues last night.
Started fresh this evening. Following the instructions on the Github readme.windows and making the changes in order down the line here.
I installed a new wxWidgets64-3.1.0 directory
cd'd down to the build\msw
edited the setup.h and the rtti.h files per instructions 4) and 4b)
running the command number 7 or 8 gives me:
C:\wxWidgets64-3.1.0\build\msw>mingw32-make -f makefile.gcc --debug MONOLITHIC=1 SHARED=1 UNICODE=1 CXXFLAGS="-std=gnu++14" BUILD=release -j 10
GNU Make 4.1
Built for x86_64-w64-mingw32
Copyright (C) 1988-2014 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Reading makefiles...
Updating goal targets....
File 'all' does not exist.
File 'gcc_mswudll' does not exist.
Must remake target 'gcc_mswudll'.
if not exist gcc_mswudll mkdir gcc_mswudll
File 'setup_h' does not exist.
File '..\..\lib\gcc_dll\mswu\wx' does not exist.
File '..\..\lib\gcc_dll\mswu' does not exist.
Must remake target '..\..\lib\gcc_dll\mswu'.
if not exist ..\..\lib\gcc_dll\mswu mkdir ..\..\lib\gcc_dll\mswu
File '..\..\lib\gcc_dll\mswu\wx\setup.h' does not exist.
Must remake target '..\..\lib\gcc_dll\mswu\wx\setup.h'.
if not exist ..\..\lib\gcc_dll\mswu\wx\setup.h copy ..\..\include\wx\msw\setup.h ..\..\lib\gcc_dll\mswu\wx\setup.h
File '..\..\lib\gcc_dll\mswu\wx\msw\rcdefs.h' does not exist.
File '..\..\lib\gcc_dll\mswu\wx\msw' does not exist.
File '..\..\lib\gcc_dll\libwxregexu.a' does not exist.
File 'gcc_mswudll\wxregex_regcomp.o' does not exist.
Must remake target 'gcc_mswudll\wxregex_regcomp.o'.
gcc -c -o gcc_mswudll\wxregex_regcomp.o -O2 -mthreads -DHAVE_W32API_H -DNDEBUG -I..\..\include -I..\..\lib\gcc_dll\mswu -D__WXMSW__ -D_UNICODE -MTgcc_mswudll\wxregex_regcomp.o -MFgcc_mswudll\wxregex_regcomp.o.d -MD -MP ../../src/regex/regcomp.c
File 'gcc_mswudll\wxregex_regexec.o' does not exist.
Must remake target 'gcc_mswudll\wxregex_regexec.o'.
gcc -c -o gcc_mswudll\wxregex_regexec.o -O2 -mthreads -DHAVE_W32API_H -DNDEBUG -I..\..\include -I..\..\lib\gcc_dll\mswu -D__WXMSW__ -D_UNICODE -MTgcc_mswudll\wxregex_regexec.o -MFgcc_mswudll\wxregex_regexec.o.d -MD -MP ../../src/regex/regexec.c
The system cannot find the path specified.
0 file(s) copied.
File 'gcc_mswudll\wxregex_regerror.o' does not exist.
Must remake target 'gcc_mswudll\wxregex_regerror.o'.
makefile.gcc:5728: recipe for target '..\..\lib\gcc_dll\mswu\wx\setup.h' failed
mingw32-make: *** [..\..\lib\gcc_dll\mswu\wx\setup.h] Error 1
mingw32-make: *** Waiting for unfinished jobs....
In file included from ..\..\include/wx/defs.h:20:0,
from ../../src/regex/regcustom.h:39,
from ../../src/regex/regguts.h:38,
from ../../src/regex/regcomp.c:33:
..\..\include/wx/platform.h:136:22: fatal error: wx/setup.h: No such file or directory
compilation terminated.
In file included from ..\..\include/wx/defs.h:20:0,
from ../../src/regex/regcustom.h:39,
from ../../src/regex/regguts.h:38,
from ../../src/regex/regexec.c:32:
..\..\include/wx/platform.h:136:22: fatal error: wx/setup.h: No such file or directory
compilation terminated.
makefile.gcc:5778: recipe for target 'gcc_mswudll\wxregex_regcomp.o' failed
mingw32-make: *** [gcc_mswudll\wxregex_regcomp.o] Error 1
makefile.gcc:5781: recipe for target 'gcc_mswudll\wxregex_regexec.o' failed
mingw32-make: *** [gcc_mswudll\wxregex_regexec.o] Error 1
I was thinking it was a path error, but the path is:
C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\xLights;C:\wxWidgets64-3.1.0\lib\gcc_dll;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files\Git\cmd;C:\Program Files\mingw-w64\x86_64-5.3.0-posix-seh-rt_v4-rev0\mingw64\bin
and I don't see any issues with that.