Revert fix Verilated Makefile to get CXX etc. from environment (#4549) (#4554).

This commit is contained in:
Wilson Snyder 2023-10-12 04:22:58 -04:00
parent bd4eede6b4
commit d699caf255
2 changed files with 9 additions and 6 deletions

View File

@ -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.

View 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@