Skip to content

Commit

Permalink
Release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yohanchatelain committed Jul 6, 2020
1 parent a56fb89 commit d8a8c7a
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG
@@ -1,5 +1,34 @@
Verificarlo CHANGELOG

# [v0.4.0] 2020/07/03

## Added
* Support for LLVM up to 10.0.1
* Add flang support for Fortran
* Add test_fortran_NAS that compiles and run the CG test from the NAS Parallel Benchmarks
* Add test_cpp for testing the compilation of C++ files
* Add wrappers for each target language: verificarlo-c, verificarlo-f and verificarlo-c++
* Add the option --linker to verificarlo to choose which linker to use
* Add the option --show-cmd in verificarlo to print internal commands
* Add clang-format-lint in the CI pipeline to check the clang-format conformity of source files
* Add VPREC backend that allows simulating any floating-point formats that fit into the IEEE-754 double precision format

## Changed
* Update configure.ac to check gcc and llvm version
* Update m4/ax_llvm.m4 to remove the dragonegg option
* Update test_vprec_backend to reduce its execution time

## Fixed
* Fix test_branch_instrumentation to force FP constants to be actual float
* Fix test_kahan that does not correctly output files
* Fix wrong max range for binary32 type
* Fix typo in exclusion/inclusion rules

## Removed
* Support for LLVM 3.3 to 3.9
* Support for gcc version older than 4.9
* Support for dragonegg+gcc

# [v0.3.0] 2020/04/02

## Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
![verificarlo logo](https://avatars1.githubusercontent.com/u/12033642)

## Verificarlo v0.3.0
## Verificarlo v0.4.0

[![Build Status](https://travis-ci.org/verificarlo/verificarlo.svg?branch=master)](https://travis-ci.org/verificarlo/verificarlo)
[![DOI](https://zenodo.org/badge/34260221.svg)](https://zenodo.org/badge/latestdoi/34260221)
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.69])
AC_INIT([verificarlo], [0.3.0], [])
AC_INIT([verificarlo], [0.4.0], [])
AM_SILENT_RULES([yes])
AC_CONFIG_AUX_DIR(autoconf)
AC_CONFIG_MACRO_DIR([m4])
Expand Down

0 comments on commit d8a8c7a

Please sign in to comment.