Skip to content

Commit

Permalink
nesC 1.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cire831 committed Jun 11, 2018
1 parent 7f9f661 commit 7ae9c0e
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 12 deletions.
14 changes: 13 additions & 1 deletion Changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
This is version 1.3.6 of the nesC compiler.
This is version 1.4.0 of the nesC compiler.

Changes in nesC 1.4.0
=====================
- properly handle restrict keyword (pull #42)
handling the restrict keyword let's nesc work properly with
gcc versions later than 4.9.
- Add _Noreturn keyword (pull #44)
- Fix logical operator constant folding (pull #46)
- Fix building with -Werror=format-security (issue #40)
- Bug in mig's python class generation (issue #39)
fixed generation of getString_* method.
- simplified vim file type detection for nesc files (issue #30)

Changes in nesC 1.3.6
=====================
Expand Down
12 changes: 6 additions & 6 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# This file is part of the nesC compiler.
#
#
# This file is derived from the RC Compiler. It is thus
# Copyright (C) 2000-2001 The Regents of the University of California.
# Changes for nesC are
# Copyright (C) 2002 Intel Corporation
#
#
# The attached "nesC" software is provided to you under the terms and
# conditions of the GNU General Public License Version 2 as published by the
# Free Software Foundation.
#
#
# nesC is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# along with nesC; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
Expand All @@ -24,7 +24,7 @@ dnl -*- m4 -*-
# force autoconf 2.5 on Debian systems
AC_PREREQ(2.50)

AC_INIT(nesc, 1.3.6)
AC_INIT(nesc, 1.4.0)
AC_CONFIG_AUX_DIR(config-aux)

AM_INIT_AUTOMAKE
Expand All @@ -35,7 +35,7 @@ AC_PROG_CC

AC_PATH_PROG(pathperl, perl)
if test -z "$pathperl" ; then
AC_MSG_ERROR(I can't find perl);
AC_MSG_ERROR(I can't find perl);
fi

# Only check if emacs, flex, bison and gperf are installed if
Expand Down
10 changes: 5 additions & 5 deletions src/configure.ac
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# This file is part of the nesC compiler.
#
#
# This file is derived from the RC Compiler. It is thus
# Copyright (C) 2000-2001 The Regents of the University of California.
# Changes for nesC are
# Copyright (C) 2002 Intel Corporation
#
#
# The attached "nesC" software is provided to you under the terms and
# conditions of the GNU General Public License Version 2 as published by the
# Free Software Foundation.
#
#
# nesC is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# along with nesC; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
Expand All @@ -24,7 +24,7 @@ dnl -*- m4 -*-
# force autoconf 2.5 on Debian systems
AC_PREREQ(2.50)

AC_INIT(nesc, 1.3.6)
AC_INIT(nesc, 1.4.0)
AC_CONFIG_AUX_DIR(../config-aux)
AC_CONFIG_SRCDIR(c-parse.y)
AC_CONFIG_HEADERS(autoconf.h)
Expand Down

0 comments on commit 7ae9c0e

Please sign in to comment.