Migration of application from libCstd.so.1 to libstlport.so.1


 
Thread Tools Search this Thread
Top Forums Programming Migration of application from libCstd.so.1 to libstlport.so.1
# 1  
Old 03-31-2011
Migration of application from libCstd.so.1 to libstlport.so.1

Hello,

I want to migrate from application that was compiled with Sun 4.2 compiler with C++ standard library(libCstd.so.1) to STLport(libstlport.so.1) library.

I am able to compile all the files on Solaris 10 with Sun 5.8 compiler but linking is failing with symbol referencing errors though pointed explicitly using compiler option "-library=stlport".

There is huge list of symbol referncing errors.. Need to know if any procedure exists for this migration.

Shafi
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. AIX

AIX - FC Switch migration, SAN Migration question!

I'm New to AIX / VIOS We're doing a FC switch cutover on an ibm device, connected via SAN. How do I tell if one path to my remote disk is lost? (aix lvm) How do I tell when my link is down on my HBA port? Appreciate your help, very much! (4 Replies)
Discussion started by: BG_JrAdmin
4 Replies

2. Programming

computation migration

Hi, i need a code to implement computation migration in c. Can you guys help me out?? (3 Replies)
Discussion started by: tanvi
3 Replies

3. Solaris

libstlport.so.1

Hi, I need to include libstlport.so.1 in a build (to have it installed on the machine where I deploy the build). As far as I know this is only included in sun studio and I can't seam to find it compiled separate (libstlport.so.1 compiled with sun C compiler, libstdc++.so compiled with gcc). ... (0 Replies)
Discussion started by: potro
0 Replies

4. Solaris

libCstd.so.1: open failed

Morning all, I have a problem with a Sun workstation which is running Solaris 8. When I attempt to open an application, the executable fails with this message : "fatal: libcstd.so.1: open failed: No such file or directory" It was suggested to me that I need to add these patches to fix the... (4 Replies)
Discussion started by: AndyD
4 Replies

5. Solaris

Migration Solaris 5.8 to 10

Hi, it is necessary to make the migration of Solaris 5.8 for Solaris 10, would like to know which the best form to execute this task, if to be able to say me where I can arrange some manual that helps me to make this task. Thanks :o (2 Replies)
Discussion started by: bruno_a_correia
2 Replies

6. Shell Programming and Scripting

Perl Application Migration From MPE To Unix

Hi, Iam working on migration of perl applicaion from MPE/ix OS to UNIX. Perl Application uses MPE::File Package which cannot be used in HPUX. I have identified IO::File and Filehandle package as replacement. Will the functionality of the MPE Package & Unix filehandle Package will match? ... (0 Replies)
Discussion started by: tc.omkumar
0 Replies

7. UNIX for Advanced & Expert Users

Migration

Hi all, Would appreciate advise on my situation. Currently server A is in production. Server A takes in data from Server X, does some processing and send to server Y. We are going to develop a different system in server B, something like an enhanced version of A. Server A will be retired once... (2 Replies)
Discussion started by: new2ss
2 Replies

8. UNIX for Advanced & Expert Users

migration

hi, is there any tool that i can use to update my scripts (SH scripts) form Unix to linux. please mention any useful websites. thanx in advance (2 Replies)
Discussion started by: omran
2 Replies

9. UNIX for Dummies Questions & Answers

Migration

Is it possible to migrate a UNIX program and use it in a NetWare or Windows 2000 network? I have a client that must have one of those two operating systems for the new program that they want. However, they've been using an older UNIX program for about 7 years and they want to be able to refer to... (7 Replies)
Discussion started by: refram
7 Replies
Login or Register to Ask a Question
MM-CONFIG(1)						       Shared Memory Library						      MM-CONFIG(1)

NAME
mm-config - OSSP mm library configuration/build utility VERSION
OSSP mm 1.4.1 (10-Aug-2006) SYNOPSIS
mm-config [--help] [--version] [--cflags] [--ldflags] [--libs] DESCRIPTION
The mm-config program is a little helper utility for easy configuring and building applications based on the mm(3) library. It can be used to query the C compiler and linker flags which are required to correctly compile and link the application against the mm(3) library. OPTIONS
mm-config accepts the following options: --help Prints the short usage information. --version Prints the version number and date of the installed mm(3) library. --cflags Prints the C compiler flags which are needed to compile the mm(3)-based application. The output is usually added to the "CFLAGS" vari- able of the applications "Makefile". --ldflags Prints the linker flags ("-L") which are needed to link the application with the mm(3) library. The output is usually added to the "LDFLAGS" variable of the applications "Makefile". --libs Prints the library flags ("-l") which are needed to link the application with the mm(3) library. The output is usually added to the "LIBS" variable of the applications "Makefile". EXAMPLE
CC=cc CFLAGS=-O `mm-config --cflags` LDFLAGS=`mm-config --ldflags` LIBS=-lm `mm-config --libs` all: foo foo: foo.o $(CC) $(LDFLAGS) -o foo foo.o $(LIBS) foo.o: foo.c $(CC) $(CFLAGS) -c foo.c SEE ALSO
mm(3). AUTHOR
Ralf S. Engelschall rse@engelschall.com www.engelschall.com 10-Aug-2006 MM 1.4.1 MM-CONFIG(1)