Sponsored Content
Full Discussion: Error code with if statement
Top Forums UNIX for Beginners Questions & Answers Error code with if statement Post 303026781 by dodona on Monday 3rd of December 2018 09:27:41 AM
Old 12-03-2018
I just checked it out under msys/mingw implemented as an function. It works perfectly.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Code checking for all values in the same if statement.

I am trying to set up a variable based on the name of the file. function script_name { if then job_name='MONITOR' return job_name; elsif then job_name='VERSION' return job_name fi } for i in `ls *log` do script_name $i done. (4 Replies)
Discussion started by: oracle8
4 Replies

2. Shell Programming and Scripting

Error with if statement..Please help

:b:hi, I have a script as given below: pr_det="1" if then awk ' BEGIN {printf("%23s","session")}' >> report.txt awk ' BEGIN {printf "\n"} ' >> report.txt else awk ' BEGIN {printf("%55s","file_dsc")} ' >> report.txt awk ' BEGIN {printf("%101s","no_recs")} '... (1 Reply)
Discussion started by: jisha
1 Replies

3. Shell Programming and Scripting

Snytax error on If Statement--help

year=`date '+%Y'` month=`date '+%m'` day=`date '+%d'` day=`expr $day - 1` case $month in 1 | 3 | 5 | 7 | 8 | 10 | 12);; if($day =7 ); then $day=6 fi 4 | 6 | 9 | 11);; if ; then $day=31 fi 2);; if ; then if ; then (2 Replies)
Discussion started by: dannyd_y
2 Replies

4. Linux

error in if statement

Hi , I am getting an error when I run the script for checking word "view" in a file . I am using if statement. like this if then VW_VAR=` cat $TN.${ecmdate}.sql1 | grep -i view | awk '{print $3}' | cut -d '.' -f2 ` echo " VW_$VW_VAR " sed -e... (16 Replies)
Discussion started by: capri_drm
16 Replies

5. Shell Programming and Scripting

Error in IF statement

HI i am getting error while executing the given statement for filename in `cat a/file.lst` do if then echo "Exit Code Description :File $filename - is missing in Input Directory" >a.log exit else count1=`awk 'END {print NR}' $filename` echo "$count1">>a.log count2=`awk 'END {print... (4 Replies)
Discussion started by: ravi214u
4 Replies

6. UNIX for Dummies Questions & Answers

error in if statement

Hi, This is my script to catch any oracle errors. In this, the $sqlerr returns ORA-01017: invalid username/password; logon denied when i specify wrong username/password the if condition is failing. how can i resolve the issue. the if statement gives error sqloutput=`sqlplus -s -L... (1 Reply)
Discussion started by: Swapna173
1 Replies

7. UNIX for Dummies Questions & Answers

if statement code syntax

Hi, can someone please tell me what is wrong with this code? I just want it to check if the file size is greater than 2000kb. if Thanks! ---------- Post updated at 09:23 PM ---------- Previous update was at 09:21 PM ---------- I should probably post the full code: #!/bin/sh... (9 Replies)
Discussion started by: Bengel
9 Replies

8. UNIX for Dummies Questions & Answers

How to use a return code in an if statement?

Hi all, After so many tries and searching online for ideas, I had trouble accomplishing this. Is it possible to do something like this in KSH to run an if statement on a return code? Unfortunately the code below fails... Would anyone know how to fix the below attempt? if "$`{pkginfo... (3 Replies)
Discussion started by: chatguy
3 Replies

9. Shell Programming and Scripting

Error in if statement

I am working on script for stale nfs. the file consists of cat data01stale.log - - - - /abcd/backup - - - - /abcd/data Script (16 Replies)
Discussion started by: nareshkumar522
16 Replies

10. UNIX for Dummies Questions & Answers

Does this statement of code mean.....

Good morning, I am 100% mew to Unix and am trying to troubleshoot why a pgm written 3 years ago, suddenly is not working properly. It is part Perl with some UNIX commands thrown in. I need to verify what the UNIX commands are doing before I can continue with my other troubleshooting. print... (7 Replies)
Discussion started by: jaacmmason
7 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 01:45 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy