Recent Posts

Pages: 1 2 3 4 5 6 [7] 8 9 10
61
Development / Re: Compile CB 25.03 from Source with tinyxml Problem
« Last post by hesti on April 15, 2025, 09:08:53 am »
Wild guess is the "tinyxml" package installed? Does it have an devel package?
I have no idea if it is better to have the package(s) installed or not installed!

Tim S.
Yes, tinyxml is already installed. The developer package is included. And others are using it. The plugins under "src/plugins" already use the package and compile flawlessly. After my mini-patch, everything runs smoothly. Only the -ltinyxml library specification is missing when linking.
Hesti
62
Development / Re: Compile CB 25.03 from Source with tinyxml Problem
« Last post by hesti on April 15, 2025, 09:03:15 am »
./configure --with-contrib-plugins=all   (I used this in Ubuntu.  There are no quotation marks on both sides of all.   I don't know if this is relevant.  )

./configure --with-contrib-plugins="all"  (yours)


That's more or less the same thing. You can also specify individual packages there, like:

./configure --with-contrib-plugins="byogames AutoVersioning"

Besides, the packages (plugins) are compiled, otherwise there wouldn't be an error message. I imagine there's a switch that triggers this. It only affects the plugins under "src/plugins/contrib."
63
Help / Re: Pls help if you can!
« Last post by Pecan on April 15, 2025, 07:03:25 am »
Might be that (for the second problem) the support dll's to run the users program are missing from his exec folder.

Using the debug would have made the support dll's accessable.
64
Announcements / Re: successor of 20.03 available?
« Last post by cdavalillo on April 15, 2025, 02:13:16 am »
Finally, thank you guys.  :)
65
Help / Re: Most download links for CB 25.03 not working
« Last post by stahta01 on April 14, 2025, 10:37:39 pm »
https://www.codeblocks.org/downloads/binaries/

I also had issues with some of the 32 bit downloads from the above URL.

Edit: Now it is working; all I did was close and refresh the page.

Tim S.
66
Development / Re: Compile CB 25.03 from Source with tinyxml Problem
« Last post by stahta01 on April 14, 2025, 07:37:02 pm »
Wild guess is the "tinyxml" package installed? Does it have an devel package?
I have no idea if it is better to have the package(s) installed or not installed!

Tim S.
67
Help / Re: Most download links for CB 25.03 not working
« Last post by Frank_CB on April 14, 2025, 06:29:59 pm »
@gtafan

Clear your browser's cache and cookies. The links for codeblocks.org are all working.

Regards
68
Development / Re: Compile CB 25.03 from Source with tinyxml Problem
« Last post by wtfisgoingoff on April 14, 2025, 06:13:36 pm »
./configure --with-contrib-plugins=all   (I used this in Ubuntu.  There are no quotation marks on both sides of all.   I don't know if this is relevant.  )

./configure --with-contrib-plugins="all"  (yours)

69
Help / Re: Pls help if you can!
« Last post by stahta01 on April 14, 2025, 05:10:26 pm »
Please post a full re-build log for the first problem.
https://wiki.codeblocks.org/index.php?title=FAQ-Compiling_%28general%29#Q:_How_do_I_report_a_compilation_problem_on_the_forums.3F

I did not understand the second problem.

Tim S.
70
Using Code::Blocks / Can't find declaration for std::to_string() and std::stoi()
« Last post by Pacfrog on April 14, 2025, 04:40:03 pm »
Hello, I'm using Code::Blocks on Debian 12, with the following version info: Version: 20.03+svn13046-0.1+b2.I have noticed that when I write standard C++ code using std::to_string() or std::stoi(), the code compiles and runs perfectly, but when I right-click and choose "Find declaration", Codeblocks shows:

Warning: Not found "to_string"
Warning: Not found "stoi"

Here's my sample code
Code
#include <iostream>
#include <string>

using namespace std;

int main() {
  string str = to_string(123); // Double-click 'to_string' then right-click Find declaration of: 'to_string'
  int i = stoi("123");         // also here
  return 0;
}


Things I've tried:
1. Verified string header is present.
2. Tries the same setup on Windows with Codeblocks, and the exact same problem happens.

Thanks in advance for your help!
This is my first time posting here, so please kindly guide me if I missed anything.
Pages: 1 2 3 4 5 6 [7] 8 9 10