forked from github/verilator
Configuring with ccache present now defaults to using it; see OBJCACHE in the manual.
This commit is contained in:
parent
5932eae32a
commit
efaf375887
@ -19,7 +19,6 @@ env:
|
|||||||
- VERILATOR_NUM_JOBS=$(echo `nproc` + 1 | bc)
|
- VERILATOR_NUM_JOBS=$(echo `nproc` + 1 | bc)
|
||||||
- VERILATOR_CONFIG_FLAGS="--enable-maintainer-mode --enable-longtests"
|
- VERILATOR_CONFIG_FLAGS="--enable-maintainer-mode --enable-longtests"
|
||||||
- VERILATOR_AUTHOR_SITE=1
|
- VERILATOR_AUTHOR_SITE=1
|
||||||
- OBJCACHE=ccache
|
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
|
2
Changes
2
Changes
@ -7,6 +7,8 @@ The contributors that suggested a given feature are shown in []. Thanks!
|
|||||||
|
|
||||||
** Add simplistic class support with many restrictions, see manual, #377.
|
** Add simplistic class support with many restrictions, see manual, #377.
|
||||||
|
|
||||||
|
** Configuring with ccache present now defaults to using it; see OBJCACHE.
|
||||||
|
|
||||||
**** Support $ferror, and $fflush without arguments, #1638.
|
**** Support $ferror, and $fflush without arguments, #1638.
|
||||||
|
|
||||||
|
|
||||||
|
@ -1080,7 +1080,8 @@ design --output-split 20000 resulted in splitting into approximately
|
|||||||
one-minute-compile chunks.
|
one-minute-compile chunks.
|
||||||
|
|
||||||
Typically when using this, make with VM_PARALLEL_BUILDS=1 (set for you if
|
Typically when using this, make with VM_PARALLEL_BUILDS=1 (set for you if
|
||||||
using the default makefiles), and use I<ccache>.
|
using the default makefiles), and use I<ccache> (set for you if present at
|
||||||
|
configure time).
|
||||||
|
|
||||||
=item --output-split-cfuncs I<statements>
|
=item --output-split-cfuncs I<statements>
|
||||||
|
|
||||||
@ -2125,9 +2126,10 @@ needed at simulation runtime.
|
|||||||
=item OBJCACHE
|
=item OBJCACHE
|
||||||
|
|
||||||
Optionally specifies a caching or distribution program to place in front of
|
Optionally specifies a caching or distribution program to place in front of
|
||||||
all runs of the C++ Compiler. For example, "objcache --read --write", or
|
all runs of the C++ compiler. For example, "ccache". If using distcc or
|
||||||
"ccache". If using distcc or icecc/icecream, they would generally be run
|
icecc/icecream, they would generally be run under cache; see the
|
||||||
under either objcache or ccache; see the documentation for those programs.
|
documentation for those programs. If OBJCACHE is not set, and at configure
|
||||||
|
time ccache was present, ccache will be used as a default.
|
||||||
|
|
||||||
=item SYSTEMC
|
=item SYSTEMC
|
||||||
|
|
||||||
@ -5136,9 +5138,9 @@ now relatively old GCC 3.0 to 3.3 being horrible.
|
|||||||
|
|
||||||
Compile in parallel on many machines and use caching; see the web for the
|
Compile in parallel on many machines and use caching; see the web for the
|
||||||
ccache, distcc and icecream packages. ccache will skip GCC runs between
|
ccache, distcc and icecream packages. ccache will skip GCC runs between
|
||||||
identical source builds, even across different users. You can use the
|
identical source builds, even across different users. If ccache was
|
||||||
OBJCACHE environment variable to use these CC wrappers. Also see the
|
installed when Verilator was built it is used, or see OBJCACHE environment
|
||||||
--output-split option.
|
variable to override this. Also see the --output-split option.
|
||||||
|
|
||||||
To reduce the compile time of classes that use a Verilated module (e.g. a
|
To reduce the compile time of classes that use a Verilated module (e.g. a
|
||||||
top CPP file) you may wish to add /*verilator no_inline_module*/ to your
|
top CPP file) you may wish to add /*verilator no_inline_module*/ to your
|
||||||
|
@ -159,6 +159,12 @@ if test "x$YACC" = "x" ; then
|
|||||||
AC_MSG_ERROR([Cannot find "bison" in your PATH, please install it])
|
AC_MSG_ERROR([Cannot find "bison" in your PATH, please install it])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
AC_CHECK_PROG(OBJCACHE,ccache,ccache)
|
||||||
|
if test "x$OBJCACHE" != "x" ; then
|
||||||
|
objcache_version=$($OBJCACHE --version | head -1)
|
||||||
|
AC_MSG_RESULT([objcache is $OBJCACHE --version = $objcache_version])
|
||||||
|
fi
|
||||||
|
|
||||||
# Checks for libraries.
|
# Checks for libraries.
|
||||||
|
|
||||||
# Checks for typedefs, structures
|
# Checks for typedefs, structures
|
||||||
|
@ -14,6 +14,7 @@ CXX = @CXX@
|
|||||||
LINK = @CXX@
|
LINK = @CXX@
|
||||||
AR = ar
|
AR = ar
|
||||||
RANLIB = ranlib
|
RANLIB = ranlib
|
||||||
|
OBJCACHE ?= @OBJCACHE@
|
||||||
|
|
||||||
CFG_WITH_CCWARN = @CFG_WITH_CCWARN@
|
CFG_WITH_CCWARN = @CFG_WITH_CCWARN@
|
||||||
CFG_WITH_LONGTESTS = @CFG_WITH_LONGTESTS@
|
CFG_WITH_LONGTESTS = @CFG_WITH_LONGTESTS@
|
||||||
|
@ -42,6 +42,7 @@ LEX = @LEX@
|
|||||||
LFLAGS = -d
|
LFLAGS = -d
|
||||||
PERL = @PERL@
|
PERL = @PERL@
|
||||||
YACC = @YACC@
|
YACC = @YACC@
|
||||||
|
OBJCACHE ?= @OBJCACHE@
|
||||||
|
|
||||||
prefix = @prefix@
|
prefix = @prefix@
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user