Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/ralna/CUTEst
Browse files Browse the repository at this point in the history
  • Loading branch information
dalekopera committed Aug 26, 2024
2 parents b964eb9 + 074fb7b commit 7ae913b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/meson.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,15 @@ jobs:
else
MODE="shared"
fi
QUADRUPLE="true"
if [[ "${{ matrix.compiler }}" == "intel-classic" || "${{ matrix.compiler }}" == "intel" ]]; then
QUADRUPLE="false"
fi
meson setup builddir --buildtype=debug \
--prefix=$GITHUB_WORKSPACE/cutest \
-Ddefault_library=${MODE} \
-Dquadruple=true \
-Dint64=$INT64
-Dquadruple=${QUADRUPLE} \
-Dint64=${INT64}
- name: Build CUTEST
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion include/cutest.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* give a version number
*/

#define CUTEST_VERSION 2.2.2
#define CUTEST_VERSION 2.2.3

/*
* Define name of main() function on a
Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'CUTEst',
'fortran', 'c',
version: '2.2.2',
version: '2.2.3',
meson_version: '>= 0.62.0',
default_options: [
'buildtype=release',
Expand Down Expand Up @@ -176,7 +176,7 @@ if build_quadruple

gen_quadruple = generator(fc_compiler,
output : 'quadruple_@[email protected]',
arguments : pp_options + '-DREAL_128' +
arguments : pp_options + '-DREAL_128' + '-DCUTEST_16btye_reals_exist' +
['-I', '@CURRENT_SOURCE_DIR@/include', '@INPUT@'] +
output_generator)

Expand Down

0 comments on commit 7ae913b

Please sign in to comment.