Install header files in includedir/iverilog
Move the header files from includedir/verilog to .../iverilog because the verilog name is a little too generic. The iverilog-vpi command should handle the changes.
This commit is contained in:
parent
4de891d096
commit
5660e0ed8b
|
|
@ -60,7 +60,7 @@ bindir = @bindir@
|
|||
libdir = @libdir@
|
||||
# This is actually the directory where we install our own header files.
|
||||
# It is a little different from the generic includedir.
|
||||
includedir = @includedir@/verilog$(suffix)
|
||||
includedir = @includedir@/iverilog$(suffix)
|
||||
mandir = @mandir@
|
||||
|
||||
dllib=@DLLIB@
|
||||
|
|
|
|||
|
|
@ -514,7 +514,7 @@ static void setup_ivl_environment()
|
|||
assign(&gstr.pCFLAGS,IVERILOG_VPI_CFLAGS " -I");
|
||||
append(&gstr.pCFLAGS,gstr.pIVL);
|
||||
appendBackSlash(&gstr.pCFLAGS);
|
||||
append(&gstr.pCFLAGS,"\\include\\\\verilog" IVERILOG_SUFFIX);
|
||||
append(&gstr.pCFLAGS,"\\include\\\\iverilog" IVERILOG_SUFFIX);
|
||||
|
||||
/* Build up the LDFLAGS option string */
|
||||
assign(&gstr.pLDLIBS,"-L");
|
||||
|
|
|
|||
13
verilog.spec
13
verilog.spec
|
|
@ -76,13 +76,16 @@ rm -rf $RPM_BUILD_ROOT
|
|||
%attr(-,root,root) %{_libdir}/libveriuser.a
|
||||
%attr(-,root,root) %{_libdir}/ivl/include/constants.vams
|
||||
%attr(-,root,root) %{_libdir}/ivl/include/disciplines.vams
|
||||
%attr(-,root,root) /usr/include/verilog/ivl_target.h
|
||||
%attr(-,root,root) /usr/include/verilog/vpi_user.h
|
||||
%attr(-,root,root) /usr/include/verilog/acc_user.h
|
||||
%attr(-,root,root) /usr/include/verilog/veriuser.h
|
||||
%attr(-,root,root) /usr/include/verilog/_pli_types.h
|
||||
%attr(-,root,root) /usr/include/iverilog/ivl_target.h
|
||||
%attr(-,root,root) /usr/include/iverilog/vpi_user.h
|
||||
%attr(-,root,root) /usr/include/iverilog/acc_user.h
|
||||
%attr(-,root,root) /usr/include/iverilog/veriuser.h
|
||||
%attr(-,root,root) /usr/include/iverilog/_pli_types.h
|
||||
|
||||
%changelog -n verilog
|
||||
* Tue Nov 25 2008 - steve@icarus.com
|
||||
- Move header files frim /verilog/ to /iverilog/
|
||||
|
||||
* Tue Nov 18 2008 - steve@icarus.com
|
||||
- New snapshot 20080905
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue