diff options
author | tgingold <tgingold@users.noreply.github.com> | 2017-03-05 18:22:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-05 18:22:00 +0100 |
commit | b2cf9c3f6aa27c16bd31e84ee92c6e6dde16bc11 (patch) | |
tree | 3c155c6894851d0c8714ff4b11d6e16b0b9e6075 | |
parent | 8aa64761c535d29ca612412017ebb921c7106eae (diff) | |
parent | 633829cc70a3318eb863297065005270663aa681 (diff) | |
download | ghdl-b2cf9c3f6aa27c16bd31e84ee92c6e6dde16bc11.tar.gz ghdl-b2cf9c3f6aa27c16bd31e84ee92c6e6dde16bc11.tar.bz2 ghdl-b2cf9c3f6aa27c16bd31e84ee92c6e6dde16bc11.zip |
Merge pull request #307 from Paebbels/paebbels/Precompile-UVVM-2.0.x
Precompile UVVM: Added ti_uvvm_engine to library uvvm_vvc_framework.
-rw-r--r-- | libraries/vendors/compile-uvvm.ps1 | 3 | ||||
-rw-r--r-- | libraries/vendors/compile-uvvm.sh | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/libraries/vendors/compile-uvvm.ps1 b/libraries/vendors/compile-uvvm.ps1 index 073aa5121..8e53adb77 100644 --- a/libraries/vendors/compile-uvvm.ps1 +++ b/libraries/vendors/compile-uvvm.ps1 @@ -14,7 +14,7 @@ # - compiles all UVVM packages # # ============================================================================== -# Copyright (C) 2015-2016 Patrick Lehmann - Dresden, Germany +# Copyright (C) 2015-2017 Patrick Lehmann - Dresden, Germany # # GHDL is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free @@ -167,6 +167,7 @@ $UVVM_VVC_Files = @( "uvvm_vvc_framework\src\ti_data_queue_pkg.vhd", "uvvm_vvc_framework\src\ti_data_fifo_pkg.vhd", "uvvm_vvc_framework\src\ti_data_stack_pkg.vhd" + "uvvm_vvc_framework\src\ti_uvvm_engine.vhd" ) $VIP_Files = @{ "AXILite" = @{ diff --git a/libraries/vendors/compile-uvvm.sh b/libraries/vendors/compile-uvvm.sh index 1a601df60..4555c1f8e 100644 --- a/libraries/vendors/compile-uvvm.sh +++ b/libraries/vendors/compile-uvvm.sh @@ -15,7 +15,7 @@ # - compiles all UVVM packages # # ============================================================================== -# Copyright (C) 2015-2016 Patrick Lehmann - Dresden, Germany +# Copyright (C) 2015-2017 Patrick Lehmann - Dresden, Germany # # GHDL is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free @@ -238,6 +238,7 @@ if [ "$COMPILE_UVVM" == "TRUE" ]; then uvvm_vvc_framework/src/ti_data_queue_pkg.vhd uvvm_vvc_framework/src/ti_data_fifo_pkg.vhd uvvm_vvc_framework/src/ti_data_stack_pkg.vhd + uvvm_vvc_framework/src/ti_uvvm_engine.vhd ) # append absolute source path |