i setup a new Programming VM with Windows 7 64bit and CodeLite 13.0.8.
wxWidgets are compiled with following commands:
Code: Select all
set WXWIN=C:\wxWidgets_3.1.3
set MINGW=C:\mingw64_710_seh
set PATH=%PATH%;%MINGW%\bin
cd %WXWIN%\build\msw
mingw32-make -f makefile.gcc BUILD=release SHARED=1 MONOLITHIC=0 UNICODE=1 USE_OPENGL=1 VENDOR=73 CXXFLAGS="-std=gnu++11"
mingw32-make -f makefile.gcc BUILD=release SHARED=0 MONOLITHIC=0 UNICODE=1 USE_OPENGL=1 VENDOR=73 CXXFLAGS="-std=gnu++11"
if exist gcc_mswudll rmdir /S /Q gcc_mswudll
if exist gcc_mswulib rmdir /S /Q gcc_mswu
cd\
Code: Select all
CodeLiteDir=C:\Program Files\CodeLite
MINGW=C:\mingw64_710_seh
WXWIN=C:\wxWidgets_3.1.3
Code: Select all
$(shell wx-config --cflags)
But, when compiling statically with:
Code: Select all
$(shell wx-config --cflags --static)
CodeLite and wxWidgets on a Linux 64bit VM compliles dynamically and statically without any errors.
Ist this an issue with the 64bit MinGW?
Please held me.
Grettings Netzschleicher