Code::Blocks Forums

User forums => Help => Topic started by: fancyivan on April 20, 2020, 12:59:45 pm

Title: can not find exchndl when building from source under windows
Post by: fancyivan on April 20, 2020, 12:59:45 pm
Hi,

win10x64
tdm64-gcc-9.2.0.exe

I downloaded the source code: codeblocks-20.03.tar.bz2
wxwidgets3.1.3: mingw32-make -f makefile.gcc SHARED=1 MONOLITHIC=1 BUILD=release UNICODE=1 VENDOR=cb
compile cb20.03 in Code::Blocks 17.12, get following error:

Code
C:\dev\dev-cpp\codeblocks-20.03\src\src\app.cpp|72|fatal error: exchndl.h: No such file or directory|

I check the source code folder, there is no such header file.

did I miss somthing?  or I need use another MinGW distribution to build CB20.03 from source?

Thanks~
Tao
Title: Re: can not find exchndl when building from source under windows
Post by: Miguel Gimenez on April 20, 2020, 01:40:03 pm
It is not in the tar file, I do not know why. You can find it here: https://sourceforge.net/p/codeblocks/code/HEAD/tree/trunk/src/exchndl/ (https://sourceforge.net/p/codeblocks/code/HEAD/tree/trunk/src/exchndl/)
Title: Re: can not find exchndl when building from source under windows
Post by: oBFusCATed on April 20, 2020, 01:45:31 pm
Because the tar file is generated on linux most probably ... :(
Title: Re: can not find exchndl when building from source under windows
Post by: fancyivan on April 22, 2020, 09:41:35 am
Thanks for reply.

:(, then I turned to use the svn verison...

and I found a mirror repository in github, use this one finally.
https://github.com/obfuscated/codeblocks_sf/tree/release-20.03
Thanks @oBFusCATed, seems that you are the owner in github.

Tao