![]() |
Blitz Support : |
From: Patrick Guio (Patrick.Guio_at_[hidden])
Date: 2005-06-08 04:30:02
On Tue, 7 Jun 2005, Patrik Jonsson wrote:
> Hey all,
> I'm recently experiencing some strangeness trying to build blitz, both with
> 0.8 and with the cvs version: CXXFLAGS doesn't work. I do
> setenv CXX KCC
> setenv CXXFLAGS --thread_safe
> ./configure --enable-64bit
>
> but when I compile, the --thread_safe option is never applied. I thought I
> would outsmart it, and set CXX='KCC --thread_safe', in which case the
> CXXFLAGS *are* used (I get --thread_safe twice), but then --enable-64bit
> stops working.
>
> Any ideas?
>
Hi Patrik,
I think you need to also have the option --disable-cxx-flags-preset
so something like
./configure --enable-64bit --disable-cxx-flags-preset CXX="KCC" CXXFLAGS="--thread_safe"
should work.
Sincerely,
Patrick