From 596bb9721a6d172f03104fcbb33d5f75bf477b1f Mon Sep 17 00:00:00 2001 From: "B. Scott Michel" Date: Wed, 21 Oct 2015 14:22:11 -0700 Subject: [PATCH] update_changelog Add CHANGELOG notes. --- CHANGELOG | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 5d2983eb9..78e911eec 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -40,12 +40,12 @@ ecl_import_current_thread ecl_release_current_thread - - When cl-truename encounters a broken symlink it returns it's path + - When cl-truename encounters a broken symlink, it returns its path instead of signalling a file-error - Deprecated variables has been removed c::*suppress-compiler-warnings*, c::*suppress-compiler-notes* - + - Random state might be initialized by a random seed (truncated to 32bit value) or by a precomputed array. @@ -55,6 +55,15 @@ - C99 supporting compiler is mandatory for C backend. + - COMPILER::*cc_is_cxx*: New variable to switch the output extension of + emitted compiler code to ".cxx" when configured with "--with-c++". This + eliminates compiler warnings that compiling C++ with a ".c" extension is + deprecated; this is seen mostly with Clang++. + + - Added Clang-specific pragmas to disable return type, unused value and + excessive parentheses warnings, which are fairly harmless, but annoying + and clutter user output. + ** Enhancements: - Added code walker (present as *feature* :walker)