Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
117 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
109 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
1answer
275 views

Sun Studio 12 C compiler for Linux is so slow

I download and tried it today. It compiles my project but "suncc" is even slower then "gcc" which is famous for its leisureliness. I just -xO1 which i thought should do no optimizations. I have a ...
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
6answers
87 views

struct definition inside main() causing Segmentation Fault

Is it not possible to define structure inside main() . I tried the following only to get a Segmentation Fault: #include <stdio.h> #include <unistd.h> #include <strings.h> #define ...
1
vote
0answers
39 views

Where can I find the linker(ld) in Sun Solaris Studios 12.2?

At the moment I am using for linking purposes the pre-installed linker on my SPARC machine in the following directory: /usr/ccs/bin/ld I wanna compile my application with the Sun Studios Compiler ...
1
vote
0answers
311 views

Sun compiler's equivalent of gcc's __sync_fetch_and_add? aka Oracle Studio 12.2

Does the Oracle (Sun) Studio 12.2 C/C++/Fortran compiler for Linux 64-bit have an equivalent to the __sync_fetch_and_add function that is provided in gcc? I can't seem to find the wrapper code for ...
1
vote
1answer
392 views

Zero sized arrays and array bounds checking

When compiled with either GNU Fortran (v4.4.3) or Sun Studio F95 (v8.3) and no array bounds checking the following program runs without error. However, when array bounds checking is switched on ...
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 ...
1
vote
2answers
314 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 ...
1
vote
4answers
1k 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
0answers
18 views

Mixing PIC and non-PIC objects in a shared library

This question is related to this one as well as its answer. I just discovered some ugliness in a build I'm working on. The situation looks somewhat like the following (written in gmake format); ...
0
votes
0answers
17 views

sun studio gives an error that the module is declared twice

I'm trying to compile pysvn on Solaris 10 (CC: Sun C++ 5.9 SunOS_sparc Patch 124863-01 2007/07/25) I get the following error: "pysvn.cpp", line 359: Error: the_pysvn_module is initialized twice. ...
0
votes
0answers
20 views

How to build opensplice dds community version souce code with an IDE like SunStudio?

I'm using opensplice source code and want to build it. I can make and install the source code in shell, but have no idea how to add them to sun studio or other IDE. Also I wonder how to debug ...
0
votes
1answer
65 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
0answers
85 views

Sun Studio 11 for Solaris 8. Oracle site does not have it (Dead Link)

I need Sun Studio 11 specifically since it is the last one supported on Solaris 8. The Oracle site simply does not have it. It seems to be a bug, and goes around in circles. i.e. Oracle site says "Sun ...
0
votes
2answers
269 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
389 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
1answer
271 views

Which compiler (Sun Studio or gcc ) to choose while porting from Solaris Sparc to Linux x86

We have decide to port our application that currently runs on solaris sparc to linux x86 system. Which compiler, Sun Studio or GNU gcc would be more beneficial to use on linux? Which one would produce ...
0
votes
0answers
329 views

compiling numpy with sunperf atlas libraries

I would like to use the sunperf libraries when compiling scipy and numpy. I tried using setupscons.py which seems to check from SUNPERF libraries, but it didnt recognize where mine are: here is a ...
0
votes
1answer
318 views

GNU gdb 6.4 on SunOS 5.10, recognized executable formats

Below details are from a session in a sun machine. $ file devli devli: ELF 32-bit MSB executable SPARC Version 1, dynamically linked, stripped $ file a a: ELF 32-bit MSB executable SPARC Version 1, ...
0
votes
2answers
330 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
1answer
328 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 ...
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
1answer
60 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
402 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 ...