Tagged Questions

0
votes
2answers
54 views

Sun Studio C++ “is not terminated with a newline” warning - how to suppress?

I have ported a fair bit of code from Win to Solaris, one of the issues I have - I am getting a heaps of warnings: Warning: Last line in file is not terminated with a newline. I like warnings - …
2
votes
3answers
96 views

difference between -h <name> and -o <outputfile> options in cc (C++)

I am building .so library and was wondering - what is the difference b/w -h and -o cc complier option (using the Sun Studio C++) ? Aren't they are referring to the same thing - the name of the …
0
votes
4answers
496 views

SunStudio C++ compiler pragma to disable warnings?

The STLport bundled with the SunStudio11 generates alot of warnings. I beleive most compilers have a way to disable warnings from certain source files, like this: Sun C #pragma error_messages off …
0
votes
1answer
60 views

dbxtool on 64-bit linux won’t load 64-bit version of dbx?

I am using the Linux version of dbxtool to debug a 64-bit programme called frankie: file ../support/frankie ../support/frankie: ELF 64-bit LSB executable, AMD x86-64, version 1 (SYSV), for GNU/Linux …
1
vote
2answers
92 views

Sun Studio Compiler: implicit function declaration: typeof

When attempting to compile mpd with Sun Studio compiler: "client.c", line 438: warning: implicit function declaration: typeof I tracked down the offending lines of code, in dlist.h: #define …
0
votes
5answers
118 views

Static linking with Sunstudio

I'm trying to link my library xxx to a library yyy. I want to link statically so that I don't need to package yyy along with xxx when I deliver xxx. I have two versions of yyy provided by a …
0
votes
1answer
33 views

How can I determine the project directory and other environmental variables in SunStudio?

I'm currently trying to add a post build step to a SunStudio project's build/make file, but to continue I need to know the project's directory. Problem is ${PWD} doesn't return the current directory …
0
votes
2answers
176 views

Warnings and SunStudio C++ compiler

I talked my team into turning on compiler warnings again. Some how all warnings (-w) were disabled (don't ask...). Most of them are obvious but one of them is really annoying. I get it from my date …