Recent Posts

Pages: [1] 2 3 4 5 6 ... 10
1
Are you positive you are using the exact same compiler inside Code::Blocks and on the command line?

Tim S.
2
Help / Re: Windows 7
« Last post by nji on Yesterday at 05:42:09 pm »
If you're using a build compiled to work with UCRT then you need to install an update to enable UCRT in Windows 7.

Is one of the builds (https://www.codeblocks.org/downloads/binaries/#imagesoswindows48pnglogo-microsoft-windows)
compiled to work with UCRT then?
(I haven't installed that MS update).
3
Help / Re: Windows 7
« Last post by Михаил Агарков on Yesterday at 05:16:41 pm »
If you're using a build compiled to work with UCRT then you need to install an update to enable UCRT in Windows 7.
4
Nightly builds / Re: The 15 March 2025 build (13634) is out.
« Last post by dkulp on Yesterday at 02:59:50 pm »

The problem with CodeBlocks crashing at startup on the Mac is in libcodecompletion.dylib .   If I completely remove that lib from the app, CodeBlocks will start.

5
Help / Re: Windows 7
« Last post by Mr.Madguy on Yesterday at 01:38:01 pm »
Well, 25.03 works. At least IDE itself. I haven't tested built-in compiler, because I use different one.
6
I have trouble making GCC compile som additional ASM
The source is C and it has this test line:
asm("movl $0, %eax\n\t");

I get an error:
C:\Users\joe\AppData\Local\Temp\cc34a8K4.s|34018|Error: no such instruction: `movl $0,%eax'|

When I compile and link from command line it compiles and link fine. If I compile & link using "-masm=intel" the compiles fails with the same error.
SO I suspect I have "-masm=intel" setting somewhere in Codeblocks. Where is it? I searched "Project build options" and "Settings- compiler setting" but there was nothing about this.

Do I need some other setting or #include ?
7
Help / Windows 7
« Last post by nji on Yesterday at 11:38:24 am »
Will C::B still do on Win7?
8
Announcements / Re: successor of 20.03 available?
« Last post by Mr.Madguy on April 02, 2025, 10:24:20 pm »
Yeah, 25.03 is released. I hope the most annoying bug with Ctrl+C/Ctrl+V is now fixed.
9
Using Code::Blocks / Re: CodeBlocks 64bit, MSys2 and GTK
« Last post by stahta01 on April 02, 2025, 07:47:35 pm »
You do realize that static linking means that GCC GPL license applies to the software you are writing; so, this is normally considered bad for any  software you plan to sell.

Tim S.
10
Using Code::Blocks / Re: CodeBlocks 64bit, MSys2 and GTK
« Last post by stahta01 on April 02, 2025, 07:38:57 pm »
Code
N:\msys64\mingw64\lib\libgtk-4.dll.a N:\msys64\mingw64\lib\libgraphene-1.0.dll.a

Linking against DLLs and complaining it links against DLLs is not a smart thing to do.

Decide do you wish to link against these two DLLs or do you not wish to do that!

Oops, you might be right. Edit2: The shared gtk4 libs seems to be missing.

Code
$ ls /mingw64/lib/libgraphene-1.0.a
ls: cannot access '/mingw64/lib/libgraphene-1.0.a': No such file or directory

Tim S.
Pages: [1] 2 3 4 5 6 ... 10