Hi,
I'm maintaining some ARM/iwMMXt-optimized code in pixman,
http://cgit.freedesktop.org/pixman/
gcc will only emit iwmmxt instructions when -march=iwmmxt{,2} is used,
which is stupid. It also has the side-effect of putting gcc into ARMv5
mode, even though the CPU I care about is ARMv7. So, we w
On Wed, May 30, 2012 at 3:45 PM, Nick Bowler wrote:
> On 2012-05-30 13:20 -0400, Matt Turner wrote:
>> I'm maintaining some ARM/iwMMXt-optimized code in pixman,
>> http://cgit.freedesktop.org/pixman/
>>
>> gcc will only emit iwmmxt instructions when -march=iwmmxt
such that it will work with 1.11 and 1.12?
http://cgit.freedesktop.org/mesa/mesa/tree/configure.ac
http://cgit.freedesktop.org/mesa/mesa/tree/src/glsl/Makefile.am
Thanks,
Matt Turner
I started thinking about this again recently, so I thought I'd respond.
So, first thanks for the email and the suggestion.
On Sat, Jul 14, 2012 at 1:42 AM, Stefano Lattarini
wrote:
> On 07/13/2012 07:16 PM, Matt Turner wrote:
>> Hi,
>>
>> In Mesa (http://www.mesa3
In attempting to massage automake into doing what I want, I've found
what I consider to be some deficiencies in its handling of bison- and
flex-generated code. Here's one in particular.
=== AM_YFLAGS aren't used in the presence of per-target YFLAGS ===
Bison's -p flag specifies a prefix for a par
On Sat, Sep 15, 2012 at 12:56 AM, Stefano Lattarini
wrote:
> On 09/15/2012 04:51 AM, Matt Turner wrote:
>> In attempting to massage automake into doing what I want, I've found
>> what I consider to be some deficiencies in its handling of bison- and
>> flex-generated code
Hi,
I'd like to be able to conditionally link with C++. Consider a case
where a shared library is C-only, except for when an optional feature
is enabled which causes it to be linked with static C++ libraries.
When linking with the static C++ libraries, C++ linking must be used
in order to link wit