mirror of
https://github.com/verilator/verilator.git
synced 2025-01-01 04:07:34 +00:00
This commit is contained in:
parent
bd4eede6b4
commit
d699caf255
1
Changes
1
Changes
@ -36,7 +36,6 @@ Verilator 5.017 devel
|
||||
* Fix stream shift operator of 32 bits (#4536). [Julien Faucher]
|
||||
* Fix object destruction after a copy constructor (#4540) (#4541). [Ryszard Rozak, Antmicro Ltd.]
|
||||
* Fix inlining of real functions miscasting (#4543). [Andrew Nolte]
|
||||
* Fix Verilated Makefile to get CXX etc. from environment (#4549) (#4554). [Gus Smith]
|
||||
* Fix broken link error for enum references (#4551). [Anthony Donlon]
|
||||
* Fix preprocessor to show `line 2 on resumed file.
|
||||
|
||||
|
@ -9,13 +9,17 @@
|
||||
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
||||
######################################################################
|
||||
|
||||
AR ?= @AR@
|
||||
CXX ?= @CXX@
|
||||
LINK ?= @CXX@
|
||||
# Tool names.
|
||||
# These are computed at configuration time, and most are not ?=
|
||||
# to avoid picking up potentilly incorrect Make implicit variables
|
||||
AR = @AR@
|
||||
CXX = @CXX@
|
||||
LINK = @CXX@
|
||||
OBJCACHE ?= @OBJCACHE@
|
||||
PERL ?= @PERL@
|
||||
PYTHON3 ?= @PYTHON3@
|
||||
PERL = @PERL@
|
||||
PYTHON3 = @PYTHON3@
|
||||
|
||||
# Configuration time options
|
||||
CFG_WITH_CCWARN = @CFG_WITH_CCWARN@
|
||||
CFG_WITH_LONGTESTS = @CFG_WITH_LONGTESTS@
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user