Tagged Questions
0
votes
0answers
128 views
CPP Migration from Solaris to Linux
I am new to work on migration projects and also for Linux (RedHat). Now we are moving a C++ project from Solaris(32 bit) to Linux(64 bit) and compiler Sun CC(solaris) to G++(in Linux) (4.1.2). We are ...
0
votes
1answer
181 views
Solaris 5-10 CC Compiler missing symbols bug causes link failure [duplicate]
Possible Duplicate:
Solaris 10 CC Preprocessor bug causes undefined symbols
My apologies if this question posting looks familiar. I posted this issue yesterday here: Solaris 10 CC ...
3
votes
1answer
235 views
Solaris 10 CC Preprocessor bug causes undefined symbols
I have a very very simple C++ file as follows that I'm compiling on Solaris 5-10 with the CC compiler. Here is the source code in my file myTest.C:
#include <map>
std::map<int, bool> ...
1
vote
0answers
137 views
suppress solaris CC linker warning symbol XXX has differing sizes
I got this linker error message:
ld: warning: symbol `_VersioN' has differing sizes:
(file ./libsfc/libssl48.so value=0x16; file ./libsfc/libsipc.so value=0x15);
When I try to do link ...
0
votes
2answers
235 views
Building msgpack-python on Solaris 10 - Use of <stdbool.h> is valid only in a c99 compilation environment
I'm trying to build the python module msgpack-python on Solaris with the Sun compiler and am getting this error during the python ./setup.py build:
/opt/SUNWspro/bin/cc -DNDEBUG -O -xO3 -m32 ...
-3
votes
1answer
127 views
why cc “real time” >> “real time”?
I am having a problem with c compiler
When compiling a simple hello world, user time is >>> real time.
Here the comparison of times between two machines.
It should be noted that the machine is not ...
1
vote
5answers
1k 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
1answer
126 views
Where is the documentation for writing Eclipse toolchain plugins?
We're running Solaris 2.10 and using the native Solaris build tools (CC & dbx), for which there is no support in Eclipse 8. I up to writing the plugins to support these tools, but I'm having a ...
0
votes
1answer
256 views
Issue on Solaris CC optimization flag
May I ask a question about the CC compiler in Solaris environment.
I try to compile a Solaris release library with "-O" using Solaris CC compiler. I can compile the debug library previously using ...
0
votes
3answers
622 views
cross compilation from Solaris sparc to Solaris x86
May I know if I can cross compile the Solaris x86 library from Solaris sparc server?
The source code is mainly in C++ (some C). I need to use the Solaris C++ compiler CC to compile. I understand that ...