From 0d9c04854fa5257ea1273718a9710ec249fa6a84 Mon Sep 17 00:00:00 2001 From: Cary R Date: Fri, 8 Jul 2011 17:51:44 -0700 Subject: [PATCH] Fix reported Mac compile problem. This patch removes the space between -L and the directory in the vpi Makefile. It also fixes the line to use the correct variable name for the LDFLAGS. --- vpi/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vpi/Makefile.in b/vpi/Makefile.in index ce094e30e..ee0542bc1 100644 --- a/vpi/Makefile.in +++ b/vpi/Makefile.in @@ -151,7 +151,7 @@ va_math.vpi: $V ../vvp/libvpi.a $(CC) @shared@ -o $@ $V -L../vvp $(LDFLAGS) -lvpi $(VA_MATH_VPI_LDFLAGS) vhdl_sys.vpi: $(VHDL_SYS) ../vvp/libvpi.a - $(CXX) @shared@ -o $@ $(VHDL_SYS) -L ../vvp $(LDFLAGS) -lvpi $(SYSTEM_VPI_FLAGS) + $(CXX) @shared@ -o $@ $(VHDL_SYS) -L../vvp $(LDFLAGS) -lvpi $(SYSTEM_VPI_LDFLAGS) stamp-vpi_config-h: $(srcdir)/vpi_config.h.in ../config.status @rm -f $@