Skip to content

Commit

Permalink
Release 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
rurban committed Mar 8, 2024
1 parent fb7b4fc commit 0a544d2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ Changes in 3.8
- Fixed wrong *printf_s \0 termination. Broken since 3.7. GH #124.
- Fixed getenv_s to not handle_error for non-existent env var. GH #119
- Added a single include/safec.h for all 3 public headers. GH #114
- Changed wording of Null termination to Zero termination. GH #130
- Improve arm/aarch64 MEMORY_BARRIER, GH #116
- strpbrk_s: check for slen overflow or early exit,
- Update to Unicode 15.0

Changes in 3.7.1
- Fixed powerpc compilation of the perf tests. GH #113
Expand Down
4 changes: 2 additions & 2 deletions build-aux/smoke.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Linux)
make -s -j4 check-log || exit
make -s clean
fi
for clang in clang clang-{11,10,7,5.0}
for clang in clang clang-{17,16,15,14,13,12,11,10,7,5.0}
do
if test -n `which $clang`; then
echo $clang -march=native --disable-constraint-handler --enable-unsafe --enable-norm-compat
Expand Down Expand Up @@ -169,7 +169,7 @@ Linux)
fi
#CC="g++-6 -std=c++11" ./configure && \
# make -s -j4 check-log || exit
for gcc in gcc-{12,11,10,9,8,7,6,5}
for gcc in gcc-{13,12,11,10,9,8,7,6,5}
do
if test -n "`which $gcc`"; then
if CC="$gcc" ./configure; then
Expand Down
2 changes: 1 addition & 1 deletion tests/test_vsnprintf_s.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*------------------------------------------------------------------
* test_vsnprintf_s
* File 'wchar/vsnprintf_s.c'
* Lines executed:40.25% of 487
* Lines executed:40.37% of 488
*
*------------------------------------------------------------------
*/
Expand Down
2 changes: 1 addition & 1 deletion tests/test_wcsnorm_s.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*------------------------------------------------------------------
* test_wcsnorm_s
* File 'wcsnorm_s.c'
* Lines executed:75.82% of 364
* Lines executed:74.27% of 377
*
*------------------------------------------------------------------
*/
Expand Down

0 comments on commit 0a544d2

Please sign in to comment.