Skip to content

Commit 11eced6

Browse files
committed
Release 2.5.7
1 parent 309133d commit 11eced6

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

.github/julia/build_tarballs.jl

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,17 @@ script = raw"""
1717
# Update Ninja
1818
cp ${host_prefix}/bin/ninja /usr/bin/ninja
1919
20+
QUADRUPLE="true"
21+
if [[ "${target}" == *arm* ]] || [[ "${target}" == *i686* ]] || [[ "${target}" == *aarch64-linux* ]] || [[ "${target}" == *aarch64-unknown-freebsd* ]] || [[ "${target}" == *powerpc64le-linux-gnu* ]] || [[ "${target}" == *riscv64* ]]; then
22+
QUADRUPLE="false"
23+
fi
24+
2025
cd ${WORKSPACE}/srcdir/CUTEst
21-
meson setup builddir --cross-file=${MESON_TARGET_TOOLCHAIN%.*}_gcc.meson --prefix=$prefix -Dquadruple=true -Dtests=false
26+
meson setup builddir --cross-file=${MESON_TARGET_TOOLCHAIN%.*}_gcc.meson --prefix=$prefix -Dquadruple=${QUADRUPLE} -Dtests=false
2227
meson compile -C builddir
2328
meson install -C builddir
2429
25-
meson setup builddir_shared --cross-file=${MESON_TARGET_TOOLCHAIN%.*}_gcc.meson --prefix=$prefix -Dquadruple=true -Dtests=false -Ddefault_library=shared
30+
meson setup builddir_shared --cross-file=${MESON_TARGET_TOOLCHAIN%.*}_gcc.meson --prefix=$prefix -Dquadruple=${QUADRUPLE} -Dtests=false -Ddefault_library=shared
2631
meson compile -C builddir_shared
2732
meson install -C builddir_shared
2833
"""

include/cutest.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* give a version number
3333
*/
3434

35-
#define CUTEST_VERSION 2.5.6
35+
#define CUTEST_VERSION 2.5.7
3636

3737
/*
3838
* Define name of main() function on a

include/cutest_c.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* give a version number
3131
*/
3232

33-
#define CUTEST_VERSION 2.5.6
33+
#define CUTEST_VERSION 2.5.7
3434

3535
/*
3636
* Define name of main() function on a

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'CUTEst',
33
'fortran', 'c',
4-
version: '2.5.6',
4+
version: '2.5.7',
55
meson_version: '>= 0.62.0',
66
default_options: [
77
'buildtype=release',

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* CUTEst version 2.5.6 (10/Aug/2025 15:50 GMT)
1+
* CUTEst version 2.5.7 (5/Sep/2025 15:50 GMT)

0 commit comments

Comments
 (0)