Compile in a default VPI module dir.

This commit is contained in:
steve 2001-03-22 21:26:53 +00:00
parent 715d140d85
commit e81d0d9f23
3 changed files with 15 additions and 5 deletions

View File

@ -16,7 +16,7 @@
# 59 Temple Place - Suite 330
# Boston, MA 02111-1307, USA
#
#ident "$Id: Makefile.in,v 1.8 2001/03/20 06:16:23 steve Exp $"
#ident "$Id: Makefile.in,v 1.9 2001/03/22 21:26:53 steve Exp $"
#
#
SHELL = /bin/sh
@ -39,7 +39,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
STRIP = @STRIP@
CPPFLAGS = @CPPFLAGS@ @DEFS@
CPPFLAGS = @CPPFLAGS@ @DEFS@ -DMODULE_DIR=\"$(libdir)/ivl\"
CXXFLAGS = @CXXFLAGS@ -I. -I$(srcdir)/..
LDFLAGS = @LDFLAGS@

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#if !defined(WINNT)
#ident "$Id: config.h.in,v 1.2 2001/03/16 01:44:34 steve Exp $"
#ident "$Id: config.h.in,v 1.3 2001/03/22 21:26:53 steve Exp $"
#endif
# define SIZEOF_UNSIGNED_LONG 0
@ -31,8 +31,15 @@
# define LU ""
# define TU ""
#ifndef MODULE_DIR
# define MODULE_DIR "."
#endif
/*
* $Log: config.h.in,v $
* Revision 1.3 2001/03/22 21:26:53 steve
* Compile in a default VPI module dir.
*
* Revision 1.2 2001/03/16 01:44:34 steve
* Add structures for VPI support, and all the %vpi_call
* instruction. Get linking of VPI modules to work.

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#if !defined(WINNT)
#ident "$Id: main.cc,v 1.4 2001/03/20 06:16:24 steve Exp $"
#ident "$Id: main.cc,v 1.5 2001/03/22 21:26:54 steve Exp $"
#endif
# include "config.h"
@ -29,7 +29,7 @@
# include <getopt.h>
const char*module_path = ".";
const char*module_path = MODULE_DIR;
unsigned module_cnt = 0;
const char*module_tab[64];
@ -90,6 +90,9 @@ int main(int argc, char*argv[])
/*
* $Log: main.cc,v $
* Revision 1.5 2001/03/22 21:26:54 steve
* Compile in a default VPI module dir.
*
* Revision 1.4 2001/03/20 06:16:24 steve
* Add support for variable vectors.
*