On Sun, Feb 03, 2013 at 03:25:09PM -0700, Dave Johansen wrote:
On Fri, Feb 1, 2013 at 2:40 AM, Karanbir Singh mail-lists@karan.org wrote:
On 01/27/2013 10:41 PM, Tru Huynh wrote:
Hi,
For the daring users ;) http://people.centos.org/tru/devtools-1.1/ enjoy and report
Thanks for doing these Tru.
I wonder if someone wants to take a stab at building hiphop with this stack (ref: https://github.com/facebook/hiphop-php )
I noticed that the gmp-devel package isn't listed as a dependency of devtoolset-1.1-gcc-plugin-devel even thought it appears that it should be. What do I need to do to help get that fixed?
why would gmp/gmp-devel be required? afaik, those packages are not used in the devtools-gcc.
devtools-gcc is built with gmp-4.3.1.
Here's the conversation that identified this as the resolution to the issue I ran into: http://www.codesynthesis.com/pipermail/odb-users/2013-February/001026.html
the basic build works for me (CentOS-6 x86_64) wget http://codesynthesis.com/download/odb/2.1/odb-2.1.1.tar.bz2 http://www.codesynthesis.com/download/libcutl/1.7/libcutl-1.7.0.tar.bz2 tar xjf libcutl-1.7.0.tar.bz2 tar xjf odb-2.1.1.tar.bz2 scl enable devtoolset-1.1 bash (cd libcutl-1.7.0 && ./configure && make -j 8) (cd odb-2.1.1 && ./configure --with-libcutl=../libcutl-1.7.0 && make -j 8)
Cheers,
Tru