Build verilator_bin with -O3 (#3592)

This is consistently a few percent faster.
This commit is contained in:
Geza Lore 2022-09-03 22:10:07 +01:00 committed by GitHub
parent d42a2d6494
commit 937e893b6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,7 @@ ifeq ($(VL_NOOPT),1)
CPPFLAGS += -O0
else ifeq ($(VL_DEBUG),)
# Optimize
CPPFLAGS += -O2
CPPFLAGS += -O3
else
# Debug
CPPFLAGS += @CFG_CXXFLAGS_DEBUG@ -DVL_DEBUG -D_GLIBCXX_DEBUG