On 06/ 8/10 08:38 PM, Michael Rubinstein wrote:

The antiquated header files and unused variables have been removed in
L-1.3,
which has not yet been released to the public. It should be released in the
next couple of weeks.

Best,
Mike

It would be good if you could remove that option from your makefile that adds -Wa,-W to CFLAGS and/or CXXFLAGS in an attempt to suppress warnings from the assembler.

Passing -W directly to the assembler causes an error with Sun assembler and probably most non-GNU assemblers.

kir...@t2:[~] $ gcc test.c
kir...@t2:[~] $ gcc -Wa,-W test.c
/usr/ccs/bin/as: error: unknown option 'W'
usage: /usr/ccs/bin/as [-V] [-Q{y,n}] [-q] [-s]
        [-S] [-K {pic,PIC}] [-o objfile] [-L] [-T]
        [-P [[-Yc,path] [-Ipath] [-Dname] [-Dname=def] [-Uname]]...]
        [-m [-Ym,path]] [-n] [-ul] [-xF]
        [-m32] [-m64]
[-xarch={v7,v8,v8a,v8plus,v8plusa,v8plusb,v9,v9a,v9b,sparc,sparcvis, sparcvis2,sparcfmaf,sparcima}]
        [-xcode={pic13,pic32}] file.s...

As such, your source code would not build on Solaris when the Sun assembler is used, which is the recommended way to configure gcc on SPARC processors.

I've got no idea if your code is computationally intensive or not, but if it is, then it would be good if it could build with the Sun C compiler (/opt/SUNWspro/bin/cc on t2) and/or C++ compiler (/opt/SUNWspro/bin/CC on 't2').

The Sun compilers are more fussy than gcc, so will reject code that has GNUisms.

Dave

--
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/sage-support
URL: http://www.sagemath.org

Reply via email to