Add configure flag --enable-shortcheck to enable a shortened make check
Only BSIM3 and BSIM4 are tested, when selected.
This commit is contained in:
parent
474a1e47b8
commit
975ea03308
|
|
@ -187,6 +187,10 @@ AC_ARG_WITH([ngshared],
|
||||||
AC_ARG_ENABLE([utf8],
|
AC_ARG_ENABLE([utf8],
|
||||||
[AS_HELP_STRING([--disable-utf8], [Don't use utf-8 or tchar (default is UNICODE support with utf-8)])])
|
[AS_HELP_STRING([--disable-utf8], [Don't use utf-8 or tchar (default is UNICODE support with utf-8)])])
|
||||||
|
|
||||||
|
# --enable-shortcheck: CMC quality check only for BSIM3/4 to shorten check time
|
||||||
|
AC_ARG_ENABLE([shortcheck],
|
||||||
|
[AS_HELP_STRING([--enable-shortcheck], [CMC QA check only for BSIM4/4])])
|
||||||
|
|
||||||
# old options, not maintained, may even not work at all
|
# old options, not maintained, may even not work at all
|
||||||
|
|
||||||
# --enable-ansi: try to force --ansi option to the compiler
|
# --enable-ansi: try to force --ansi option to the compiler
|
||||||
|
|
@ -1158,6 +1162,8 @@ AC_SUBST([XSPICEDLLIBS])
|
||||||
|
|
||||||
AM_CONDITIONAL([XSPICE_WANTED], [test "x$enable_xspice" = xyes])
|
AM_CONDITIONAL([XSPICE_WANTED], [test "x$enable_xspice" = xyes])
|
||||||
|
|
||||||
|
AM_CONDITIONAL([SHORT_CHECK_WANTED], [test "x$enable_shortcheck" = xyes])
|
||||||
|
|
||||||
|
|
||||||
# Add CIDER enhancements to ngspice.
|
# Add CIDER enhancements to ngspice.
|
||||||
if test "x$enable_cider" = xyes; then
|
if test "x$enable_cider" = xyes; then
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,13 @@ if XSPICE_WANTED
|
||||||
SUBDIRS += xspice
|
SUBDIRS += xspice
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if SHORT_CHECK_WANTED
|
||||||
|
SUBDIRS += \
|
||||||
|
bsim3 \
|
||||||
|
bsim4
|
||||||
|
endif
|
||||||
|
|
||||||
|
if !SHORT_CHECK_WANTED
|
||||||
SUBDIRS += \
|
SUBDIRS += \
|
||||||
bsim3 \
|
bsim3 \
|
||||||
bsim4 \
|
bsim4 \
|
||||||
|
|
@ -15,6 +22,7 @@ SUBDIRS += \
|
||||||
hicum2 \
|
hicum2 \
|
||||||
hisimhv1 \
|
hisimhv1 \
|
||||||
hisimhv2
|
hisimhv2
|
||||||
|
endif
|
||||||
|
|
||||||
DIST_SUBDIRS = \
|
DIST_SUBDIRS = \
|
||||||
bsim1 \
|
bsim1 \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue