Recent Posts

Pages: [1] 2 3 4 5 6 ... 10
1
Development / Re: build bot in the github, I see one nice project
« Last post by Grit Clef on Today at 05:22:58 am »
Good news: I had just forgotten to use some shell commands to change the Makefile so that it can work under MSYS2 zip. The following commands can change all back-slashes to forward-slashes and do other necessary modification:
Code
sed '/zip -jq9*/ s/\\/\//g' Makefile_core -i
sed -i '85 s/LIB_SDK = $(LIB) -lshfolder -ltxml -lwxscintilla_cb -lsquirrel -lgdi32/LIB_SDK = -lshfolder -ltxml -lwxscintilla_cb $(LIB) -lsquirrel -lgdi32/' Makefile_core
sed 's/$(DEP_.*//g' Makefile_core -i
A successful action can be found at https://github.com/zxunge/winstyle-codeblocks-bins/actions/runs/11192814700
So now maybe we can use a automatical winstyle build.

I'm now wondering if cbp2make can convert .workspace files.
2
Development / Re: CodeBlocks with FortranProject plugin
« Last post by Wkerry on Today at 01:17:35 am »
Have a look at the C::B wiki pages.
3
Development / CodeBlocks with FortranProject plugin
« Last post by MehdiChinoune on Yesterday at 09:48:05 pm »
How to build codeblocks with FortranProject plugin enabled using Autotools?
4
yep noticed it some days ago sorry havent been around much lately (just moved, again...).
seems most of the things are now in working order  :)  great good job folks.
5
Development / Re: build bot in the github, I see one nice project
« Last post by reckless on Yesterday at 06:35:14 am »
great :D
6
General (but related to Code::Blocks) / Re: Welcome Newcomers - PLEASE READ!!!
« Last post by sslyd on Yesterday at 04:38:43 am »
I am new, I am here
I use Code::Blocks about 6 years. This is a Great Project. I would like to join this community
7
General (but related to Code::Blocks) / Thanks for all the worlk
« Last post by Whant1983 on October 04, 2024, 12:16:23 pm »
I'd like to say a massive "Thank you" for all the work that has gone into Code::Blocks.

Kudos to the devs and contributors.
8
Nightly builds / Re: The 25 September 2024 build (13571) is out.
« Last post by stahta01 on October 03, 2024, 11:05:31 pm »
What std is being used to build CB and wxWidgets?
CXXFLAGS+="-std=c++11" or 14 or 17 or 20?

I'd like to set my wx build to the level being used for the nightlies.


C++11 is the correct value, C++14 worked for wxSmith plugin and C++17 failed my recent patch set it to C++11 under MSys2 MinGW.
Note: The [Windows] nightly does use C++11 with GNU extension for some CB Plugins I forgot if the CB Core App uses extension or not.
Edit: Before my patch listed above the bug in configure/make code resulted in GCC 14 trying to use the default of C++17 instead of C++11 as CB was set to use before GCC 14 or maybe 13 default value was for GCC. The m4 script update returned to C++11 for GCC 14 configure./make builds.
Edit2: "AX_CXX_COMPILE_STDCXX(11, noext)" in configure.ac is what says the answer is c++11 without extensions with configure/make; but, the script was out of date for GCC 14.

Tim S.
9
Nightly builds / Re: The 25 September 2024 build (13571) is out.
« Last post by Pecan on October 03, 2024, 07:25:29 pm »
What std is being used to build CB and wxWidgets?
CXXFLAGS+="-std=c++11" or 14 or 17 or 20?

I'd like to set my wx build to the level being used for the nightlies.
10
General (but related to Code::Blocks) / Re: Successfull build and run on AlmaLinux 9
« Last post by Kitty Foo on October 03, 2024, 04:45:25 pm »
Works fine in CentOS Stream 9.

Thanks a lot!
Pages: [1] 2 3 4 5 6 ... 10