Adriaan de Groot wrote:
> On Wednesday 27 February 2008, Paul Floyd wrote:
> 
>>arch.pri includes $$QT_ARCH_CPP/arch.pri, which I presume means
>>arch/i386/arch.pri, which includes
>>
>>!*-g++*:!*-icc*:SOURCES += $$QT_ARCH_CPP/qatomic.s
>>
>>So for compilers other than GCC and Intel, a rule to make qatomic.o from
>>  arch/i386/qatomic.s is generated.
> 
> 
> Thanks! That's very helpful. We can patch that right out of there in our own 
> builds (we run a bunch of patches over the "pristine source tree" to handle 
> things like this).

This diff seems to do the trick

diff thread/*pri thread/*~
19c19,20
< SOURCES += thread/qmutex.cpp \
---
 > SOURCES += thread/qatomic.cpp \
 >            thread/qmutex.cpp \
26,28d26
< *-g++*:SOURCES += thread/qatomic.cpp
< *-icc*:SOURCES += thread/qatomic.cpp
<

A+
Paul


Reply via email to