Author Topic: [DOWNLOAD] Packages of Code::Blocks in your linux distro  (Read 615176 times)

frenchman

  • Guest
Re: [DOWNLOAD] Packages of Code::Blocks in your linux distro
« Reply #150 on: January 07, 2008, 01:30:39 am »
Thank you Jens!

Your deb-packages works fine!




kometa

  • Guest
Re: [DOWNLOAD] Packages of Code::Blocks in your linux distro
« Reply #151 on: January 19, 2008, 01:05:09 pm »
I use OpenSUSE 10.3. Last time I get error during launch codeblocks:
The program 'codeblocks' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadAlloc (insufficient resources for operation)'.
  (Details: serial 405 error_code 11 request_code 148 minor_code 5)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)

Before this time I didn`t have problems. I have installed last version from http://download.opensuse.org/repositories/home:/TheTuxKeeper/openSUSE_10.3/i586/  but getting the same error.
Please, help me.

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: [DOWNLOAD] Packages of Code::Blocks in your linux distro
« Reply #152 on: January 19, 2008, 01:32:26 pm »
I use OpenSUSE 10.3. Last time I get error during launch codeblocks:
The program 'codeblocks' received an X Window System error.
...
Please, help me.

Do you see that little edit box at the top-right of the page with a button labeled "Search" next to it?
Type "X Window System error" in that box and hit the button...
Be patient!
This bug will be fixed soon...

kometa

  • Guest

Offline Ivo Georgiev

  • Single posting newcomer
  • *
  • Posts: 3
Re: [DOWNLOAD] Packages of Code::Blocks in your linux distro
« Reply #154 on: January 22, 2008, 05:40:08 am »
Hi, I was programming with Code::Blocks on Windows and I've really liked the IDE!I wanna continue programming now, when I use the more stable and better Linux Ubuntu 7.10.So, I've already said: my config is Linux Ubuntu 7.10 Gutsy Gibon.I've installed code::blocks from one package, and I get an error:
Code
codeblocks: error while loading shared libraries: libwx_gtk2u_aui-2.8.so.0: cannot open shared object file: No such file or directory
How to fix that?Please help, I wanna continue programming in a more stable OS than Windows, and I wanna continue my programming with code::blocks.I am a compleate noob :(

Offline johne53

  • Regular
  • ***
  • Posts: 253
Re: [DOWNLOAD] Packages of Code::Blocks in your linux distro
« Reply #155 on: January 22, 2008, 09:08:47 am »
I wanna continue programming in a more stable OS than Windows

All OS's have their strengths and weaknesses. It's a fallacy to think that any OS is 'more stable' than any other. There may be particular areas where Windows is more vulnerable than Linux - but equally, there are areas where Windows shines and Linux sucks (hardware support being an obvious example).

Your choice of OS should be based on your target audience. If you're driven by the ideaology of open source programming; and if your customers are already using Linux; and if they're comfortable about using command lines / compiling from source etc then Linux is probably a good bet. On the other hand, if your target audience is used to the ease of Windows, then it would be a mistake to think you can convert them to a supposedly 'more stable' OS that will probably give them nothing but headaches. Similarly, if you're intending to target the business sector (where your apps will need to be installed & supported by IT professionals) you can bet your bottom dollar that they won't want to get involved with Linux (at least, not on the desktop).

Linux is strong in certain areas (e.g. server side) and it's starting to grow strong in other areas (e.g. multimedia) but it's not the right choice for everyone, so you need to choose it for the right reasons - not because people have told you it's 'more stable' (which it isn't).
« Last Edit: January 22, 2008, 09:45:34 am by johne53 »

Offline Ivo Georgiev

  • Single posting newcomer
  • *
  • Posts: 3
Re: [DOWNLOAD] Packages of Code::Blocks in your linux distro
« Reply #156 on: January 22, 2008, 12:57:09 pm »
[offtopic-answer to the johne53's reply]I will use Linux, because I want to develop 3D games with Irrlicht that can be compiled for all distros of Linux and all versions Windows.Linux is ideal for my target.I've already tested Linux and Windows - which one can use the RAM in a better way - Linux was better.Also, Linux doesnt have alot of viruses.That's why i've chousen Linux instead of Windows.
Quote
(hardware support being an obvious example)
Yes, you are write, but I think the all things are linked - the hardware is created for Microsoft (if you get the point)...
And I am driven by the ideaology of open source programming!I am trying to host server for my games, so Linux is the OS for me.
[/offtopic]
« Last Edit: January 23, 2008, 12:14:00 pm by Ivo Georgiev »

Offline pasgui

  • Almost regular
  • **
  • Posts: 165
    • LGP
Re: [DOWNLOAD] Packages of Code::Blocks in your linux distro
« Reply #157 on: January 23, 2008, 01:07:33 pm »
Code
codeblocks: error while loading shared libraries: libwx_gtk2u_aui-2.8.so.0: cannot open shared object file: No such file or directory

Maybe you need to install the wxWidgets library from http://wiki.wxpython.org/InstallingOnUbuntuOrDebian:
- add the repository:
Code
deb http://apt.wxwidgets.org/ gutsy-wx
- and the public key:
Code
wget -q http://apt.wxwidgets.org/key.asc -O- | sudo apt-key add -

Regards, pasgui

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: [DOWNLOAD] Packages of Code::Blocks in your linux distro
« Reply #158 on: January 26, 2008, 05:49:12 pm »
I decided to change my repository for debian.

That means all former entries in "/etc/apt/sources.list" will not work anymore.

The reason is that I now build packages not only for "i386" (32-bit) systems, but also for "amd64" (64-bit systems), but based only on one suite (stable aka etch).

Please have a look for the new entries for "sources.list" on the starting page of my repository (see signature),

I'm sorry for the inconvenience, but I hope I make it a little bit more comfortable for all 64-bit debian users to work with C::B.

Edit:
The actual (and only) version of C::B in my repo is svn4845 at the moment.
« Last Edit: February 07, 2008, 10:31:59 pm by jens »

Offline Ivo Georgiev

  • Single posting newcomer
  • *
  • Posts: 3
Re: [DOWNLOAD] Packages of Code::Blocks in your linux distro
« Reply #159 on: January 30, 2008, 05:34:25 am »

   Hi,

   I was able to build an RPM for Mandriva 2006 just correcting the wxSleep stuff. Unfortunatelly I don't have place to store it but I can send to anyone who ask for.

Send it at ivshti@gmail.com , please
Thanks

Offline mess-mate

  • Multiple posting newcomer
  • *
  • Posts: 16
Re: [DOWNLOAD] Packages of Code::Blocks in your linux distro
« Reply #160 on: November 25, 2008, 11:33:55 am »
Hi, i don't know if this is a C::B issue or a plugin issue.
When i want settin my Settings/Environmnet C::B crash.
I use the jens nightly builds so can't test it with the 8.02 *.deb's.
On a debian/lenny distro.
regards
mess-mate (Linux/Debian)

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: [DOWNLOAD] Packages of Code::Blocks in your linux distro
« Reply #161 on: November 25, 2008, 12:38:21 pm »
Hi, i don't know if this is a C::B issue or a plugin issue.
When i want settin my Settings/Environmnet C::B crash.
I use the jens nightly builds so can't test it with the 8.02 *.deb's.
On a debian/lenny distro.


Do you have a crash-report inside your /tmp-directory ?
It should be named like "/tmp/codeblocks_dbgrpt-18802-20081125T120325/codeblocks.xml" (where the first number is the PID of crashed C::B and the second numner is the date and time of the crash).

Inside the xml-file the part beginning with "<stack>" is of interest (if it exists).

It would be nice if you would post it, or send it to me via mail or PM, so that I can have a look on it.

You can also try to remove (or better rename) your "default.conf"-file in "~/.codeblocks".
C::B will then create a new default configuration.

If you want to (have to) restore settings from the saved conf-file you can use "cb_share_config" (just type it in a console) to transfer sections to the newly created conf-file.

wread

  • Guest
Re: [DOWNLOAD] Packages of Code::Blocks in your linux distro
« Reply #162 on: October 18, 2013, 01:34:05 pm »
I made a C::B package for Porteus 2.1-32-bits; you can download it from here

Make a folder Codeblocks in "modules" and put the 4 downloaded xzm-files in it; activate them and you can start programming with DB...

Regards!

Offline baranbaran

  • Single posting newcomer
  • *
  • Posts: 2
Re: [DOWNLOAD] Packages of Code::Blocks in your linux distro
« Reply #163 on: June 04, 2015, 08:37:18 am »
that is great information ........

Offline archman007

  • Multiple posting newcomer
  • *
  • Posts: 11
Re: [DOWNLOAD] Packages of Code::Blocks in your linux distro
« Reply #164 on: March 17, 2019, 01:44:13 pm »
takeshi miya

I could not use what you posted.  First of all the download link requested me to supply an admin user and password.  This is not normal for a download.