Tagged Questions
1
vote
1answer
106 views
linker option to ignore unused dependencies
I would like to remove all unused symbols from my compiled C++ binary. I saw this, which gives an overview using gcc, which is the toolchain I'm using: C/C++ gcc & ld - remove unused symbols
...
1
vote
1answer
60 views
how to execute a.out file without commanding like ./a.out in Unix [closed]
I want to execute c++ binary in terminal without inputting "./a.out", just typing "a.out"
In my school's PC(solaris10), I can just type a.out and the program executed. However, on my PC's solaris11 ...
0
votes
1answer
89 views
In Solaris, link dynamic library error when using /usr/sfw/bin/gcc
all:
I am working on Solaris 10, and meet the following issue:
There is ODBC dynamic library in /usr/local/lib:
lrwxrwxrwx 1 root root 16 Jun 26 2012 libodbc.so -> ...
1
vote
1answer
97 views
How to link two conflict shared library?
My project is using ACE library, and need link another library libsdk.so, it's using another version ACE library.
The link order like : ...-lMyAce -lsdk -lAnotherAce
When application running, ...
1
vote
1answer
339 views
Force use gcc to compile (instead of cc) in ./configure under Solaris Sparc
I want to build fossil code on Solaris.
wget http://www.fossil-scm.org/index.html/tarball/tip.tar.xz
tar xf tip.tar.xz ; cd tip.tar
./configure CC=gcc CXX=g++ C=gcc BCC=gcc # no error
It will ...
0
votes
1answer
320 views
compile/install gcc 4.1.2 on solaris 10 having gcc 3.4.3 already
I'm facing some issues on compiling gcc on solaris 10.
I downloaded the source code from "ftp://ftp.gwdg.de/pub/misc/gcc/releases/gcc-4.1.2/" and tried to compile it, by using configure and then ...
1
vote
2answers
79 views
Purest Way to Assemble/Compile a file With no other ELF/Object Bloat
I cannot believe how hard this seems to be. I am working from SPARC Solaris 8. and we have some kind of GNU-gcc (3.4.2) and 'as' assembler (Sun WorkShop 6 2003/12/18 Compiler Common 6.0).
Anyways, ...
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
3answers
156 views
Is there a way to print the PID of the process that called my C binary
I need to know which perl script is using my C CLI.
Using bash I can easily print "who" ran a script using:
CALLER=$(ps ax | grep "^ *$PPID" | awk '{print $NF}')
echo $CALLER
Up to now I have been ...
0
votes
1answer
1k views
Solaris make error - ld: fatal: library -luutil: not found
Hi guys hoping some of you solaris wizards might be able to point me in the right direction...
Background:
I'm compiling a program that makes use of some of the zfs CLI code. (found here: ...
2
votes
1answer
243 views
How to remove a compiler option that python disutils includes (language code=pic32 not recognized)
I'm trying to compile the msgpack-python python module with gcc (v4.7) on solaris 10. The python installed is 2.6.8. Distutils is automatically picking up a incorrect compiler option (-xcode=pic32) ...
0
votes
0answers
73 views
illumos rpcgen + GNU cpp = illegal character in file: %
I'm using Illumos' rpcgen [1] and C preprocessor from GCC to parse an .x file [2].
And get an error:
#define mdissyserror(ep, num) (((ep)->info.errclass == MDEC_SYS) &&
% ...
1
vote
1answer
688 views
Trouble Installing New Version of Perl Using Perlbrew
So based on instructions I was given on stackoverflow, I was attempting to install a new version of Perl on my 64 bit Solaris virtual machine using perlbrew, in order to ultimately install 'cpanm' and ...
0
votes
3answers
162 views
Refine the way I do malloc and free
I wrote this code that compiles on Solaris gcc
it works fine too for smaller inputs and I get the output I intend.
However, with larger inputs, I get segmentation faults, sometimes at places I do ...
0
votes
2answers
368 views
gcc compiling error on Solaris 10
I want to compile a source code, but there are some compiling errors about __sync_xxx functions (__sync_bool_compare_and_swap etc.)
GCC version on machine is 3.4.3 (it must be gcc 4.1 or over for ...
0
votes
2answers
111 views
porting network code to 64 bits
I have a program that performs some network IO that compiles a 32 bit binary just fine
However, when I set the -m64 option at compile time I get the following rather cryptic error
In file included ...
1
vote
1answer
101 views
atomic operations in Solaris studio on linux
I could not find <atomic.h>, I guess this is only found on Solaris but not on Linux.
I know that gcc has __sync intrinsics which I can use but,
How can I get atomic operations to work with ...
0
votes
1answer
116 views
Error: cannot use an address to initialize a field of a packed struct (#pragma pack)
I'm trying to use solaris studio for Linux on Ubuntu 10.10.
When I tried building following code,
const char * names [] = { "Apple", "Orange", "Mango"};
I'm getting following error message,
...
1
vote
2answers
185 views
assigning a value to a long long integers using gcc on sparc solaris
I came across something that I think rather strange. The test program
int main(int argc, char* argv[])
{
cout<<"hello"<<endl;
long unsigned l = 0x12345678;
long long unsigned ...
0
votes
1answer
387 views
Erlang/OTP fails to compile on Solaris 11 11/11
After upgrading to Solaris 11 (11/11) from Solaris 11 Express I'm no longer able to compile Erlang/OTP (in order to build couchdb), same with a fresh install of Solaris 11 64-bit in VirtualBox.
After ...
0
votes
1answer
210 views
Unable to investigate core files generated by programs built by GCC 4.6.x on Solaris
We are having trouble to debug C/C++ program core files (the program was built by GCC 4.6.1), even with the debug version, though file command showed debugging information and symbols are available.
...
0
votes
1answer
100 views
Open file for writing from shared lib written in C in Solaris
I need to append information into a given file from a shared lib I wrote in C in Solaris. What would be the safest way to open the file in a shared way for writing ? Being a shared lib I assume ...
1
vote
1answer
351 views
Lots of warnings compiling Lua on Solaris SPARC?
When I compile Lua (5.1.4) on Solaris SPARC I am getting the following warnings...and LOTS of them...
Below is just a snippet:
# /usr/ccs/bin/make solaris
cd src && /usr/ccs/bin/make solaris
...
0
votes
0answers
770 views
“'Unable to contact any configured publishers' when installing a package on Solaris”
# pkg publisher
PUBLISHER TYPE STATUS URI
solaris (preferred) origin online http://pkg.oracle.com/solaris/release/
#
# pkg install gcc-3
pkg: ...
2
votes
4answers
583 views
Good C/C++ compiler for OpenSolaris for x86
I am using OpenSolaris on x86. I tried the gcc compiler for Solaris for free, but found it to be quite old (gcc 3.4.6). I want to know if there is any latest C++ compiler for OpenSolaris, that is ...
1
vote
0answers
67 views
Undefined Symbol _memset although _memset nowhere used? [duplicate]
Possible Duplicate:
"Undefined Symbol _memset"
I asked a similar question nowdays, but I have some update which is really confusing me. Essentially, I want to link a number of ...
0
votes
1answer
292 views
Erlang/OTP ./configure failure Open Solaris
was running ./configure for OTP14BO3 on Open Solaris. part of the output is here:
Ignoring the --cache-file argument since it can cause the system to be erroneously configured
Disabling caching
...
2
votes
1answer
3k views
C Compiler cannot create executables, OpenSolaris Erlang/OTP ./configure error
was running the ./configure script for OTP14B03 on OpenSolaris and got the following output
Ignoring the --cache-file argument since it can cause the system to be erroneously configured
Disabling ...
3
votes
2answers
408 views
Solaris (SPARC) development environment
I'm working on a cross-platform application for which I would like to include Solaris/SPARC support but I no longer have access to a server. I have an OpenSolaris VM on VirtualBox but I don't know of ...
0
votes
2answers
315 views
gcc makes makefile but can't build with it
I am porting a big C++ project from Windows to Solaris 9, using Eclipse 3.3.1.1 and gcc. It makes a makefile, but then it can't read it:
gcc -f /export/home/MyPath/Debug/makefile -v
Using built-in ...
1
vote
1answer
913 views
libiconv solaris-sparc/opteron 64 bits
I have 64 bit solaris - sparc and opteron systems. Under /usr/local/lib , I can see libiconv.so for both systems. The file command on libiconv.so gives following output:-
ELF 32-bit LSB dynamic lib ...
2
votes
3answers
89 views
Removal of build info for what command
bash-2.05$ what xxx
ndmpd:
Product: yyy
Release:
Build number: unknown user-2011-87
Build date: Mon Mar 28 20:51:25 2011
Build arch.: solaris
Build info: ...
1
vote
2answers
4k views
solaris - compile 64bit gcc - elf class error
I'm installing a modern version of gcc on solaris. I compiled gmp, mpfr and mpc, they're all 64bit. When I try to configure gcc as follows I get an error complaining that mpc,mpfr and gmp are the ...
0
votes
1answer
852 views
Solaris 32 bit - build shared object using gcc
I am trying to crate a shared object (.so) using gcc version 3.4.3 for Solaris 32 bit system. I was googling for flags required to create a shared object for solaris. In some of the posts , I see that ...
1
vote
3answers
492 views
Getting Process List on Oracle Solaris 11
i used to get a list of processs under linux by enumerating the /proc file system, since it had plain-text files that i can read data from (stat, status, exe link....) but thats not the case on ...
11
votes
5answers
11k views
Installing GCC on Oracle Solaris 11
i recently got Oracle Solaris on my VM to test some code on it, i was unable to install gcc since i dont really know how, i googled alot but all info is about oracle compilers, i needed GCC, any idea ...
8
votes
1answer
3k views
gcc: undefined reference to _mcount (gprof instrumentation)
When compiling my c++ sources with the -pg option to inject gprof profile instrumentation code the compile fails with the undefined reference to _mcount error.
Without this option everything compiles ...
2
votes
4answers
428 views
Profiler for Solaris SPARC Platform (for C++ applications)
Is there a profiler for the Solaris 10 SPARC architecture for the use with c++ applications?
If it matters: We're using gcc for compiling our c++ sources.
2
votes
1answer
187 views
solaris gcc lib question
just compiled gcc on solaris 2.10.
My question: what is the difference between the lib/...so and lib/sparcv9/...so files ?
.../lib/sparcv9/libstdc++.so.6
.../lib/sparcv9/libstdc++.so.6.0.14
...
1
vote
1answer
1k views
gcc, 64 bit, oracle, solaris
info@s490up # gcc -std=gnu99 -o bla -g -O2 -DSunOS=1 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES= -I/usr/include/libxml2 -I/u/app/oracle/product/11.2/rdbms/demo -I/u/app/oracle/product/11.2/rdbms/public ...
1
vote
2answers
3k views
Is there a transparent way to force 64-bit gcc compilation on Solaris
Is there a way to force '-m64' not overriding CXXFLAGS/CFLAGS. I want automatic x64 build environment like in Linux/BSD amd64.
Why do I need this?
The problem is complexity of the project I need to ...
2
votes
2answers
992 views
gcc generates 32bit code on sparc
I have a Solaris sparc machine and when i build my programs, it generates 32bit code which should be 64bit. How to check the cause?
$uname -a
SunOS sol 5.10 Generic_118833-33 sun4u sparc ...
5
votes
3answers
3k views
getopt implicit declaration in Solaris?
In Solaris, gcc gives me
implicit declaration of function `getopt'
when compiling
#include <unistd.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
getopt(1,argv,"");
...
0
votes
2answers
527 views
Solaris process hanging in exit
On Solaris 9 and 10, both x86 and Sparc, we have a process that is hanging during exit:
fe0b5994 lwp_park (0, 0, 0)
fe0b206c slow_lock (ff388908, fe080400, 0, 0, 98, fe0abe00) + 58
ff376aa8 ...
7
votes
10answers
5k views
nanoseconds to milliseconds - fast division by 1000000
I'm wanting to convert the output from gethrtime to milliseconds.
The obvious way to do this is to divide by 1000000.
However, I'm doing this quite often and wonder if it could become a bottleneck.
...
0
votes
3answers
2k views
How to modify options being passed to ld , without recompiling gcc
I'm trying to compile shared library on solaris 2.7 using gcc 3.4.6 and
which is linking to a statically linked c .a and .o files.
Please note that it is using Sun ld from path "/usr/ccs/bin/ld"
At ...
1
vote
2answers
1k views
Problem compiling gcc 4.4.0 on OpenSolaris 2009.6
I am attempting to compile gcc 4.4.0 on opensolaris 2009.6
Currently in the box (which is a AMD 64bit machine), I have the gcc 3.4.6 installed.
I unpacked the gcc 4.4.0 tarball.
I set the ...
1
vote
2answers
803 views
Unresolved symbols when compiling with gcc on OpenSolaris 2008.11
When compiling a simple Netbeans C project that uses sockets I get the following output.
I supose the problem is that gcc is not properly linking sockets.h library.
Need a foolprof method to solve ...
1
vote
4answers
390 views
jstack equavalent in C++
jstack is very helpful to me in checking stack traces of live running processes.
Is there any tool in C++ to do this task. I am working with Solaris/GCC compilers.
Actually GDB/DBX can do that. But ...
2
votes
1answer
1k views
Solaris pstack output: what does “SYS#0” mean?
I encountered "SYS#0" at the top of a stack and cannot find any documentation as to what that means.
Compiler: g++
OS: Solaris 9
Arch: SPARC
Memory Manager libhoard_32.so from Hoard 3.5.1
We used ...