Author Topic: RH EL Core 4  (Read 7555 times)

Offline KirkD

  • Multiple posting newcomer
  • *
  • Posts: 77
RH EL Core 4
« on: May 08, 2006, 10:59:36 pm »
Before I even start, any idea if installation on Red Hat Enterprise LINUX Core 4 has been attempted?  Has been successful?  Can utilize the Fedora Core 4/5 items??

-Kirk


Offline Michael

  • Lives here!
  • ****
  • Posts: 1608
Re: RH EL Core 4
« Reply #1 on: May 09, 2006, 11:22:38 am »
Hello,

If you can use FC4/5, I am not sure. RHEL 4 is based auf FC3. Anyway, you can give the C::B RPM package a try. The next release, RHEL 5 would be based on FC5, which should make possible to use C::B RPM package (AFAIK).

Anyway, you can try to compile the SVN sources by yourself. It is not that difficult :).

Best wishes,
Michael

Offline TheTuxKeeper

  • Regular
  • ***
  • Posts: 293
  • daniel2000
Re: RH EL Core 4
« Reply #2 on: May 09, 2006, 03:37:22 pm »
The package will work, if you have a RH/FC wxGTK 2.6 package installed. But there is no package for FC3, so I don't think that there is one for RHEL 4.

You will have to compile wxGTK too, if there is no wxGTK 2.6 package available. Try to use the src.rpm from FC4 (http://stentz.freshrpms.net/rpm.html?id=473) and compile it with
Code
rpmbuild --rebuild wxGTK-2.6.2-0.2.2.fc4.src.rpm

Perhaps you will need to solve some dependencies.
I never tested this, so I can't say whether it really works (perhaps even solving the dependencies will fail because of different package names).

Good luck ;)
Daniel
Nightly builds for openSUSE

Offline KirkD

  • Multiple posting newcomer
  • *
  • Posts: 77
Re: RH EL Core 4
« Reply #3 on: May 10, 2006, 05:49:51 pm »
OK, we're getting there.  I was able to get RC1 working - a step above my last attempt.  Now on to the SVNs.  I rebuilt GTK as suggested by daniel2000.  That worked without any problems, so I installed the new package (2.6.2) and so far everything seems to behave itself. 

The 08 May 2006 build of C::B, however, now complains about needing libstdc++.so.6:

libstdc++.so.6(GLIBCXX_3.4.4) is needed by codeblocks...
libstdc++.so.6(GLIBCXX_3.4.6) is needed by codeblocks...

Thing is, libstdc++.so.6 exists in /usr/lib as a link to libstdc++.so.6.0.3.  So, it exists, but the C::B installation can't find it??  I'm using gcc 3.4.5, in case that helps.

-Kirk


Offline TheTuxKeeper

  • Regular
  • ***
  • Posts: 293
  • daniel2000
Re: RH EL Core 4
« Reply #4 on: May 10, 2006, 06:43:16 pm »
Oh sorry, I forgot this :(

RHEL4 and FC3 use an older glibc. So you have to compile codeblocks yourself, too.

You can take two ways ;) :
1.) If you want to compile codeblocks and have an rpm as result take a look at Compiling Code::Blocks in RPM based distributions
2.) If not read Compiling Code::Blocks in Linux (applies to all distros)#Code::Blocks_installation


gcc 3.4.5 is good, so it should work :D
Nightly builds for openSUSE

Offline KirkD

  • Multiple posting newcomer
  • *
  • Posts: 77
Re: RH EL Core 4
« Reply #5 on: May 10, 2006, 07:24:00 pm »
Yeah, I was working on that.  I took the step to get the latest SVN, so I downloaded/installed SubVersion, tested that it is working, and now when I execute

svn checkout svn://svn.berlios.de/codeblocks/trunk

I get "cannot connect to host...connection was actively refused by target machine"

I have a feeling that if I could get the source, I could get it to compile.  Any ideas there??

-Kirk

Offline TDragon

  • Lives here!
  • ****
  • Posts: 943
    • TDM-GCC
Re: RH EL Core 4
« Reply #6 on: May 10, 2006, 07:34:23 pm »
Probably an issue with your firewall/router.
https://jmeubank.github.io/tdm-gcc/ - TDM-GCC compiler suite for Windows (GCC 9.2.0 2020-03-08, 32/64-bit, no extra DLLs)

Offline Pecan

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 2778
Re: RH EL Core 4
« Reply #7 on: May 10, 2006, 08:09:49 pm »
Indeed, the migration is finished :D

For anonymous SVN access you can use either
Code
svn checkout svn://svn.berlios.de/codeblocks/trunk
(via svn protocol), or
Code
svn checkout http://svn.berlios.de/svnroot/repos/codeblocks/trunk
(via HTTP).

Developers must use either
Code
svn checkout svn+ssh://developername@svn.berlios.de/svnroot/repos/codeblocks/trunk
(via svn+ssh protocol), or
Code
svn checkout https://developername@svn.berlios.de/svnroot/repos/codeblocks/trunk
(via HTTPS).

Try the http method.

Offline KirkD

  • Multiple posting newcomer
  • *
  • Posts: 77
Re: RH EL Core 4
« Reply #8 on: May 10, 2006, 08:32:20 pm »
I should have mentioned that I did indeed try that method.  I get this:

svn:  REPORT request failed on '/svnroot/repos/codeblocks/!svn/vcc/default'
svn:  REPORT of '/svnroot/repos/codeblocks/!svn/vcc/default':  400 Bad Request (http://svn.berlios.de)




Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: RH EL Core 4
« Reply #9 on: May 10, 2006, 09:14:23 pm »
svn:  REPORT request failed on '/svnroot/repos/codeblocks/!svn/vcc/default'
svn:  REPORT of '/svnroot/repos/codeblocks/!svn/vcc/default':  400 Bad Request (http://svn.berlios.de)

What are these paths? These aren't ours...
Be patient!
This bug will be fixed soon...

Offline KirkD

  • Multiple posting newcomer
  • *
  • Posts: 77
Re: RH EL Core 4
« Reply #10 on: May 10, 2006, 09:18:48 pm »
Not mine either.  They are what SubVersion gives me when I give the specified command.


Offline TheTuxKeeper

  • Regular
  • ***
  • Posts: 293
  • daniel2000
Re: RH EL Core 4
« Reply #11 on: May 10, 2006, 09:49:30 pm »
I found this with google ;)
Try https instead of http.

My guess is you have a proxying firewall which is messing up the svn 
stream.  Since https is encrypted your firewall can't corrupt it.

Try it and let us know whether it worked :-)
Nightly builds for openSUSE

Offline KirkD

  • Multiple posting newcomer
  • *
  • Posts: 77
Re: RH EL Core 4
« Reply #12 on: May 10, 2006, 11:05:34 pm »
Holy crap, it worked!   :D

Now on to the build process....  I promise to make that a new thread.   :P

Offline KirkD

  • Multiple posting newcomer
  • *
  • Posts: 77
Re: RH EL Core 4
« Reply #13 on: May 11, 2006, 02:06:17 am »
Indeed it worked.  I now have Code::Blocks rev 2438 running on LINUX and Windows. 

Thanks for all your help and patience.  Hopefully I can give something back one day.

If anyone is interested in my installation notes, I'm happy to post them.