Tagged Questions

3
votes
1answer
119 views

Building Boost on Solaris

Will Boost build in entirety on Solaris? I'd like to know if anyone has success with this (specifically Proto/Spirit) before I go and pay for a support contract to patch Sun Studio 12.2 to the ...
3
votes
1answer
108 views

Warning on field init order, signed comparison, and unused vars in VC++ & Sun Studio

I am hoping to enable warnings for the following C++ compilation issues and corresponding compilers: Unused variables -- Sun Studio CC Example: void m() { int i = 10; } Signed to unsigned ...
3
votes
2answers
104 views

Sun Studio 10 has strange `sun` constant?

Strangely, the following C++ program compiles on Sun Studio 10 without producing a warning for an undefined variable: int main() { return sun; } The value of sun seems to be 1. Where does this ...
3
votes
4answers
179 views

Is there a way to speed up C++ compilation times in Solaris Sun Studio 12?

Since I am compiling my C++ code on a very server box (32 or 64 cores in total), is there a way of tweaking compiler options to speed up the compilation times? E.g. to tell compiler to compile ...
3
votes
1answer
218 views

Compiling boost on Sunos

I have just started with using boost libraries. For one of our projects i want to compile Boost 1.39.0 on Sun OS using sun compiler. However if i compile it using steps mentioned in ...
2
votes
3answers
67 views

Alignment in SunStudio C++ compiler

I need to declare type alias for 2 bytes variable aligned by 4 bytes. In GCC, XL C/C++ (AIX), aCC (HP-UX) I can use this code: typedef uint16_t AlignedType __attribute__ ((aligned (4))); In ...
2
votes
2answers
81 views

const to non-const pointer template argument conversion

VC10 and GCC 4.4 accept the following, while Sun Studio 12 does not: std::pair<char*, int> p1; std::pair<char* const, int> p2; p1 = p2 Sun Studio 12 complains: Error: Cannot use ...
2
votes
2answers
111 views

template friend of template class fails in Sun Studio C++

I have a problem with giving a template class a template friend in Sun Studio. The code compiles fine with GNU G++ (4.4.1 and 4.4.3), but fails with Sun Studio C++ (5.9 SunOS_sparc Patch 124863-01 ...
2
votes
3answers
158 views

Warning: should not initialize a non-const reference with a temporary

I get the warning from the title on Sun Studio 12.1 with the following snippet: #include <vector> std::vector<int> g() { std::vector<int> result; result.push_back(5); return ...
2
votes
5answers
136 views

How to silence 'The last statement should return a value' warning?

Sun Studio 12.1 prints the warning Warning: The last statement should return a value. frequently for functions like that: int f() { /* some code that may return */ // if we end up here, ...
2
votes
3answers
154 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 ...
1
vote
2answers
220 views

How to disable warnings for system headers in Sun Studio 12

We're in the middle of tidying up our codebase by (among other things) fixing all the compiler warnings. The end goal is to turn on the flag that converts all warnings to errors. We've run into a ...
1
vote
3answers
416 views

Linking Error in Sun Studio 10 under Solaris

I wrote a test program like this: #include <sys/socket.h> int main( void ) { int sock = socket(AF_INET, SOCK_DGRAM, 0); return 0; } And tried to compile it: $ /tool/sunstudio/bin/cc ...
0
votes
1answer
66 views

Populate global function pointers in shared library (Solaris, Sun Studio)

I am creating a small C++ wrapper shared library around a Fortran 95 library. Since the Fortran symbols contain . in the symbol name, I have to use dlsym to load the Fortran function into a C++ ...
0
votes
2answers
270 views

std::sort problem on solaris (libCstd)

I have a problem on Solaris using the Sun Studio compiler, which is most likely due to the strange STL implementation (libCstd) used, see ...
0
votes
1answer
390 views

error while loading shared libraries: libCstd.so.1: cannot open shared object file: No such file or directory

error while loading shared libraries: libCstd.so.1: cannot open shared object file: No such file or directory. Hello! I got this error when I tried to run a C++ project in Netbeans 6.8 with the Sun ...
0
votes
2answers
331 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 - ...
0
votes
5answers
472 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
2answers
403 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 ...