You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@thrift.apache.org by Daigo Wakabayashi <su...@gmail.com> on 2010/03/19 05:54:19 UTC

Re: Problem installing Thrift 0.2.0 on Mac OS X 10.6.2Problem installing Thrift 0.2.0 on Mac OS X 10.6.2

I just solve this problem.

gcc-4.2 unrecognize command line option "-Wno-long-double"
So, I did below.

sudo rm /usr/bin/gcc
sudo ln -s /usr/bin/gcc-4.0 /usr/bin/gcc
make

Thanks.

Re: Problem installing Thrift 0.2.0 on Mac OS X 10.6.2Problem installing Thrift 0.2.0 on Mac OS X 10.6.2

Posted by Christopher Tubbs <ct...@gmail.com>.
Wouldn't it have been better to do the following?

CC=/usr/bin/gcc-4.0 make

On Fri, Mar 19, 2010 at 12:54 AM, Daigo Wakabayashi
<su...@gmail.com> wrote:
> I just solve this problem.
>
> gcc-4.2 unrecognize command line option "-Wno-long-double"
> So, I did below.
>
> sudo rm /usr/bin/gcc
> sudo ln -s /usr/bin/gcc-4.0 /usr/bin/gcc
> make
>
> Thanks.
>