Tagged Questions
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
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 ...
1
vote
6answers
91 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
3answers
418 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 ...