the 64bit codelite couldn't run on win2003x64, cann't link _wsprintf.
please build wxwidgets and codelite x64 use:
CXXFLAGS ?= -fno-keep-inline-dllexport -std=gnu++11
CPPFLAGS ?= -D__USE_MINGW_ANSI_STDIO
please build codelite x64 use -D__USE_MINGW_ANSI_STDIO
-
- CodeLite Enthusiast
- Posts: 16
- Joined: Fri Nov 22, 2013 3:21 am
- Genuine User: Yes
- IDE Question: c++
- Contact:
please build codelite x64 use -D__USE_MINGW_ANSI_STDIO
Last edited by xuiv on Tue May 12, 2015 5:59 am, edited 1 time in total.
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: please build codelite x64 use -D__USE_MINGW_ANSI_STDIO
We only support building CodeLite as described on our wiki page:
http://codelite.org/Developers/Windows
Eran
http://codelite.org/Developers/Windows
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Enthusiast
- Posts: 16
- Joined: Fri Nov 22, 2013 3:21 am
- Genuine User: Yes
- IDE Question: c++
- Contact:
Re: please build codelite x64 use -D__USE_MINGW_ANSI_STDIO
mingw32-make -j4 -f Makefile.gcc SHARED=1 UNICODE=1 BUILD=release VENDOR=cl CXXFLAGS="-fno-keep-inline-dllexport -std=gnu++11" CPPFLAGS="-D__USE_MINGW_ANSI_STDIO" MONOLITHIC=1
mingw32-make -j4 -f Makefile.gcc SHARED=1 UNICODE=1 BUILD=debug VENDOR=cl CXXFLAGS="-fno-keep-inline-dllexport -std=gnu++11" CPPFLAGS="-D__USE_MINGW_ANSI_STDIO" MONOLITHIC=1
mingw32-make -j4 -f Makefile.gcc SHARED=1 UNICODE=1 BUILD=debug VENDOR=cl CXXFLAGS="-fno-keep-inline-dllexport -std=gnu++11" CPPFLAGS="-D__USE_MINGW_ANSI_STDIO" MONOLITHIC=1
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: please build codelite x64 use -D__USE_MINGW_ANSI_STDIO
I don't know whats the purpose of these lines, as I mentioned above. We only support building CodeLite as described in our wiki pagexuiv wrote:mingw32-make -j4 -f Makefile.gcc SHARED=1 UNICODE=1 BUILD=release VENDOR=cl CXXFLAGS="-fno-keep-inline-dllexport -std=gnu++11" CPPFLAGS="-D__USE_MINGW_ANSI_STDIO" MONOLITHIC=1
mingw32-make -j4 -f Makefile.gcc SHARED=1 UNICODE=1 BUILD=debug VENDOR=cl CXXFLAGS="-fno-keep-inline-dllexport -std=gnu++11" CPPFLAGS="-D__USE_MINGW_ANSI_STDIO" MONOLITHIC=1
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Enthusiast
- Posts: 16
- Joined: Fri Nov 22, 2013 3:21 am
- Genuine User: Yes
- IDE Question: c++
- Contact:
Re: please build codelite x64 use -D__USE_MINGW_ANSI_STDIO
use mingw libc++ instead of msvcrt, thus codelite x64 can run on winxp/2003 x64.