~ubuntu-branches/ubuntu/wily/verilator/wily

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): أحمد المحمودي (Ahmed El-Mahmoudy)
  • Date: 2014-09-28 12:18:43 UTC
  • mfrom: (1.2.29)
  • Revision ID: package-import@ubuntu.com-20140928121843-x25dh09ebwng7afl
Tags: 3.864-1
* New upstream release.
* debian/upstream/metadata: Add upstream metadata information
* debian/control: Bump Standards-Version to 3.9.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
#AC_INIT([Verilator],[#.### YYYY-MM-DD])
8
8
#AC_INIT([Verilator],[#.### devel])
9
 
AC_INIT([Verilator],[3.862 2014-06-10])
 
9
AC_INIT([Verilator],[3.864 2014-09-21])
10
10
AC_CONFIG_HEADER(src/config_build.h)
11
11
AC_CONFIG_FILES(Makefile src/Makefile src/Makefile_obj include/verilated.mk include/verilated_config.h)
12
12
 
122
122
 
123
123
# For example, -Wno-div-by-zero isn't in 4.1.2
124
124
_MY_CXX_CHECK_OPT(-Wno-char-subscripts)
 
125
_MY_CXX_CHECK_OPT(-Wno-parentheses-equality)
125
126
# Random code often does / 0.  Unfortunately VL_DIV_I(0,0) will warn
126
127
# without this flag, even though there's a conditional to prevent the divide.
127
128
# We still don't add no-div-by-zero as it throws message to stdout, though doesn't die.
128
129
#_MY_CXX_CHECK_OPT(-Wno-div-by-zero)
129
130
_MY_CXX_CHECK_OPT(-Wno-sign-compare)
130
131
_MY_CXX_CHECK_OPT(-Wno-uninitialized)
 
132
_MY_CXX_CHECK_OPT(-Wno-unused-but-set-variable)
131
133
_MY_CXX_CHECK_OPT(-Wno-unused-parameter)
132
134
_MY_CXX_CHECK_OPT(-Wno-unused-variable)
133
 
_MY_CXX_CHECK_OPT(-Wno-unused-but-set-variable)
 
135
_MY_CXX_CHECK_OPT(-fbracket-depth=4096)
134
136
AC_SUBST(CFG_CXXFLAGS_NO_UNUSED)
135
137
 
136
138
# Checks for library functions.