Author Topic: can not find exchndl when building from source under windows  (Read 3008 times)

Offline fancyivan

  • Multiple posting newcomer
  • *
  • Posts: 11
can not find exchndl when building from source under windows
« 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

Offline Miguel Gimenez

  • Developer
  • Lives here!
  • *****
  • Posts: 1557
Re: can not find exchndl when building from source under windows
« Reply #1 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/

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: can not find exchndl when building from source under windows
« Reply #2 on: April 20, 2020, 01:45:31 pm »
Because the tar file is generated on linux most probably ... :(
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline fancyivan

  • Multiple posting newcomer
  • *
  • Posts: 11
Re: can not find exchndl when building from source under windows
« Reply #3 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