Sponsored Content
Full Discussion: Compilation problem on HP-UX
Top Forums Programming Compilation problem on HP-UX Post 302168791 by jim mcnamara on Tuesday 19th of February 2008 01:07:50 PM
Old 02-19-2008
I do not know specifically, but try a search the HP forums - you probably are missing
a -D<something> statement on the command line.

Start here, registration is free;
IT Resource Center forums
 

10 More Discussions You Might Find Interesting

1. Solaris

compilation problem

I am compiling a software named wine When i run make then at the end following error generated. DVAPI32_ -foversion.res version.rc ld.so.1: ../../tools/wrc/wrc: fatal: relocation error: file ../../tools/wrc/wrc: symbol wine_casemap_upper: referenced symbol not found *** Signal 9 make:... (0 Replies)
Discussion started by: mansoorulhaq
0 Replies

2. Programming

compilation problem

i have a class name 1.c in tht i am using function n wich has his body in 2.c and declaration in 2.h now how can i compile 1.c. ex; 1.c int main() { //some data n(10); //somedata } ***** 2.c int n(int k) { //some data } int main() { some data (2 Replies)
Discussion started by: phani_sree
2 Replies

3. Programming

Compilation problem with semtimedop

Hi, I'm porting code from Windows to HP-UX 11, compiling with gcc. I have a call to semtimedop with 4 arguments as in the definition: int semtimedop(int, struct sembuf *, unsigned int, const struct timespec *); When compiling I get an error saying: error: 'semtimedop' was not declared in... (3 Replies)
Discussion started by: rimon
3 Replies

4. Solaris

A compilation problem when using templates

Hello life savers, I'm having trouble compiling a specific program. The program was originally written for gcc and was compiled successfully under it. When trying to compile under Solaris 11, I get this error: "Hashtable.h", line 170: Error: Could not find a match for hash needed in... (2 Replies)
Discussion started by: yp515
2 Replies

5. UNIX for Advanced & Expert Users

Problem on Pro*C compilation on HP-UX

Hi, This is my first post to this forum. I have been facing a strange compilation error message. When I try to make a pro*C file on HP-UX ( uname -a shows HP-UX aopc7449 B.11.11 U 9000/800 2416083493 unlimited-user license), ::: Linking... /usr/ccs/bin/ld: profls.o: Not a valid object file... (5 Replies)
Discussion started by: asutoshch
5 Replies

6. AIX

Compilation problem

hi, I first want to apologize for my poor english ! I'm a newbe on Unix system and I have to install NRPE on an AIX 5.3. I have downloaded the NRPE Source code and i need to compile them... the problem is, when I do a: ./configure --enable-command-args --disable-ssl it returns me :... (1 Reply)
Discussion started by: Cyr1us
1 Replies

7. Programming

C Compilation problem

Dear all I am new to C programming In response to the post cat get_time.c #include <stdlib.h> #include <sys/time.h> main() { struct timeval tv; struct timezone tz; struct tm *tm; gettimeofday(&tv, &tz); tm=localtime(&tv.tv_sec); printf("... (2 Replies)
Discussion started by: on9west
2 Replies

8. AIX

Problem in compilation.

Hi, I am executing the below mentioned code:- proc SQLCHECK=SEMANTICS iname=CDBInteractor.pc parse=none code=cpp cpp_suffix=cpp g++ -c main.cpp g++ -o pre_request_engine main.o -I/oracle/oracle/app/product/10g/precomp -L/oracle/oracle/app/product/10g/lib32 -lnsl -ldl And... (2 Replies)
Discussion started by: tushar_tus
2 Replies

9. Programming

Compilation problem with gfortran

Hello everyone, I'm trying since a few days to compile a f90 program with gfortran (on Ubuntu) with a makefile. The fortran program calls 2 routines written in C. Here is my makefile: FC = gfortran SFC = gfortran FFLAGS = -ffree-form -O... (21 Replies)
Discussion started by: leroygr
21 Replies

10. Programming

Compilation problem with typedef

I am getting confused compiling a program that gives me the following error ../../../tomso/algeb/vector.hpp:19:9: error: ‘Vector' does not name a type typedef Vector<float> Vecflt; (1 Reply)
Discussion started by: kristinu
1 Replies
crt0_ia(3)						     Library Functions Manual							crt0_ia(3)

NAME
crt0_ia: crt0.o - execution startup routines for Integrity systems SYNOPSIS
Remarks This manpage describes for Integrity systems. For on PA-RISC systems, see crt0_pa(3). DESCRIPTION
The C, aC++, and FORTRAN compilers link in the object file for statically-bound programs to provide startup capabilities and environments for program execution. It contains startup code that must be linked using to every statically-bound program. In a dynamically linked program (the default method), the object file is not used, and all actions normally associated with it are instead done by the dynamic loader dld.so(5). processes initializers and terminators. Initializers are routines that are called before the program entry point and terminators are rou- tines that are called when the program terminates via the routine. Initializers are invoked in reverse order of the link line so that dependent libraries are initialized before the libraries that depend on them. Terminators, on the other hand, are invoked in the forward order. does not define any variables. It, however, sets the following global variables: A variable of type long containing the number of arguments. An array of character pointers to the arguments themselves. An array of character pointers to the environment in which the program will run. This array is terminated by a null pointer. A variable of type long containing the system id value for an executable program. A variable of type long containing the requested thread local storage size. This variable is initialized with data from the ker- nel. A variable of type void * containing load information passed from the kernel. A variable of type void * whose value equals to the global pointer. A symbol named is also declared in as an enumeration constant, and is incompatible with the declaration in In order to include both header files, it is necessary to define the macro before including This will force the header file to omit the conflicting definition of The enumeration constant is equivalent to in that context, and may be used instead. See ttrace(2). AUTHOR
The features described in this entry originated from AT&T UNIX System III. FILES
SEE ALSO
System Tools aCC(1) invoke the HP-UX aC++ compiler cc(1) invoke the HP-UX C compiler dld.so(5) the dynamic loader exec(2) execute a file f90(1) invoke the HP-UX FORTRAN compiler ld(1) invoke the link editor Miscellaneous end(3C) symbol of the last locations in program Integrity Systems Only crt0_ia(3)
All times are GMT -4. The time now is 07:24 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy