Sponsored Content
Top Forums UNIX for Dummies Questions & Answers timer_gettime unresolved error Post 135 by PxT on Friday 27th of October 2000 05:20:18 PM
Old 10-27-2000

make sure you are using '#include <time.h>'



[Edited by Neo on 10-27-2000 at 10:19 PM]
 

9 More Discussions You Might Find Interesting

1. Programming

c++ unresolved symbol

I have this problem: # make gcc -g -D_REENTRANT -DDISABLE_MJPEG=1 -I. -o encmain.o -c encmain.cc ld: 0711-317 ERROR: Undefined symbol: std::string::_Rep::_S_max_size collect2: ld returned 8 exit status but from /usr/local/include/g++v3/bits/basic_string.h : namespace... (0 Replies)
Discussion started by: thalex
0 Replies

2. Programming

Unresolved Symbol on HP UX & oracle7

Hi everyone, I have a problem. I do not succeed to linking the oracle7's library for my .so and a Unresolved Symbol :sqlcxt error returns me when I call program. this is my makefile. cc -Ae -I/usr/include/curses_colr -L/usr/lib -DUSE_TERMIOS -D_FILE64 -DDYNAMIC_LIBRARIES_SUPPORTED... (2 Replies)
Discussion started by: luckycs
2 Replies

3. Programming

How To Find Unresolved symbol in shared library?

1 . I use Digital Unix V4.0F 2 . I compile a programe which use a shared library . But when I run it( prog.out) , the shell told me that "Fatal Error : /sbin/loader : unresolved symbol in lib3cZap.so" But When I compile proj.out and lib3cZap.so , the compiler said nothing . And I ls -l... (1 Reply)
Discussion started by: chenhao_no1
1 Replies

4. UNIX for Dummies Questions & Answers

unresolved symbol ???

when I make ncftp 111.111.1.2 I just get problems like ... /usr/lib/dld.sl unresolved symbol:inet_ntop (code) does anybody know what is the problem and how to solve this? thx.. (2 Replies)
Discussion started by: svennie
2 Replies

5. Programming

unresolved symbol on AIX 5.2

Hi, want to port an executable from AIX 5.3 to AIX 5.2. This seems to be no problem, when i build one executable. But in another case i have to link one library statically and the rest is loaded at runtime. This works for AIX 5.3 but on AIX 5.2 i get the following error ... (2 Replies)
Discussion started by: pm_user
2 Replies

6. HP-UX

Unresolved symbol problem

Hi I am trying to make an executable which has informix esqlc and .per files. I am using informix version 9.3. The make is successful, but when i execute, i get an error message /usr/lib/dld.sl: Unresolved symbol: ibm_lib4gl_loadint4 (code) from RVprnrecvr Abort(coredump) I searched for... (4 Replies)
Discussion started by: venkatakrishnan
4 Replies

7. UNIX for Advanced & Expert Users

database connection (unresolved sqlcxt)

i have a little pro*c code (as shown below) to connect an oracle database. (in unix solaris platform) in the preprocessor compilation step everything is ok. but when i try to compile the code using cc i get the error below: ld: Unresolved: sqlcxt i think there is a problem while linking... (3 Replies)
Discussion started by: gfhgfnhhn
3 Replies

8. AIX

Unresolved symbols

Hello experts , i have some strange problem, i wanted to create a shared object in AIX 5.3 for which i have compiled all my .cxx to .o which worked fine and then i created the .so from them , but when i do nm -Bo sample.so , i have many unresolved symbol, including printf... (0 Replies)
Discussion started by: vin_pll
0 Replies

9. UNIX for Dummies Questions & Answers

> 5 ")syntax error: operand expected (error token is " error

im kinda new to shell scripting so i need some help i try to run this script and get the error code > 5 ")syntax error: operand expected (error token is " the code for the script is #!/bin/sh # # script to see if the given value is correct # # Define errors ER_AF=86 # Var is... (4 Replies)
Discussion started by: metal005
4 Replies
iverilog-vpi(1) 						  Version 0.9.5 						   iverilog-vpi(1)

NAME
iverilog-vpi - Compile front end for VPI modules SYNOPSIS
iverilog-vpi [--name=name] sourcefile... DESCRIPTION
iverilog-vpi is a tool to simplify the compilation of VPI modules for use with Icarus Verilog. It takes on the command line a list of C or C++ source files, and generates as output a linked VPI module. See the vvp(1) man page for a description of how the linked module is loaded by a simulation. The output is named after the first source file. For example, if the first source file is named foo.c, the output becomes foo.vpi. OPTIONS
iverilog-vpi accepts the following options: -llibrary Include the named library in the link of the VPI module. This allows VPI modules to further reference external libraries. -Idirectory Add directory to the list of directories that will be search for header files. -Ddefine Define a macro named define. --name=name Normally, the output VPI module will be named after the first source file passed to the command. This flag sets the name (without the .vpi suffix) of the output vpi module. --install-dir This flag causes the program to print the install directory for VPI modules, then exit. It is a convenience for makefiles or auto- mated plug-in installers. --cflags, --ldflags and -ldlibs These flags provide compile time information. PC-ONLY OPTIONS The PC port of iverilog-vpi includes two special flags needed to support the more intractable development environment. These flags help the program locate parts that it needs. -mingw=path Tell the program the root of the Mingw compiler tool suite. The vvp runtime is compiled with this compiler, and this is the com- piler that iverilog-vpi expects to use to compile your source code. This is normally not needed, and if you do use it, it is only needed once. The compiler will save the path in the registry for use later. -ivl=path Set for the use during compilation the root if the Icarus Verilog install. This is the place where you installed Icarus Verilog when you ran the installer. This flag is also only needed once, and the path is stored in the registry for future use. UNIX-ONLY OPTIONS The UNIX version of iverilog-vpi includes additional flags to let Makefile gurus peek at the configuration of the iverilog installation. This way, Makefiles can be written that handle complex VPI builds natively, and without hard-coding values that depend on the system and installation. If used at all, these options must be used one at a time, and without any other options or directives. --cflags Print the compiler flags (CFLAGS or CXXFLAGS) needed to compile source code destined for a VPI module. --ldflags Print the linker flags (LDFLAGS) needed to link a VPI module. --ldlibs Print the libraries (LDLIBS) needed to link a VPI module. -m32 On 64bit systems that support it (and support vvp32) this flag requests a 32bit vpi binary instead of the default 64bit binary. Example GNU makefile that takes advantage of these flags: CFLAGS = -Wall -O $(CFLAGS_$@) VPI_CFLAGS := $(shell iverilog-vpi --cflags) CFLAGS_messagev.o = $(VPI_CFLAGS) CFLAGS_fifo.o = $(VPI_CFLAGS) messagev.o fifo.o: transport.h messagev.vpi: messagev.o fifo.o iverilog-vpi $^ AUTHOR
Steve Williams (steve@icarus.com) SEE ALSO
iverilog(1), vvp(1), <http://www.icarus.com/eda/verilog/>, <http://www.mingw.org>, COPYRIGHT
Copyright (C) 2002-2009 Stephen Williams This document can be freely redistributed according to the terms of the GNU General Public License version 2.0 April 17th, 2009 iverilog-vpi(1)
All times are GMT -4. The time now is 12:14 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy