Skip to content

Commit 7ea0420

Browse files
committed
Merge branch 'master' of https://github.com/ralna/SIFDecode
2 parents de95918 + 8f96447 commit 7ea0420

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Install Julia
1515
uses: julia-actions/setup-julia@v2
1616
with:
17-
version: 1
17+
version: "1.7"
1818
arch: x64
1919
- name: Set the environment variables BINARYBUILDER_AUTOMATIC_APPLE, SIFDECODE_RELEASE, SIFDECODE_COMMIT
2020
shell: bash

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ sifdecoder_standalone -qp ROSENBR.SIF # decode the SIF problem in quadruple pre
4848
Then, you can create either a shared or a static library for your problem
4949
using a Fortran compiler, such as `gfortran`.
5050
```shell
51-
gfortran -shared -fPIC -o libROSENBR.so *.f # shared library on Linux and FreeBSD
52-
gfortran -shared -fPIC -o libROSENBR.dll *.f # shared library on Windows
53-
gfortran -shared -fPIC -o libROSENBR.dylib *.f # shared library on Mac
51+
gfortran -O3 -shared -fPIC -o libROSENBR.so *.f # shared library on Linux and FreeBSD
52+
gfortran -O3 -shared -fPIC -o libROSENBR.dll *.f # shared library on Windows
53+
gfortran -O3 -shared -fPIC -o libROSENBR.dylib *.f # shared library on Mac
5454

55-
gfortran -c *.f # generate object files *.o
55+
gfortran -O3 -c *.f # generate object files *.o
5656
ar rcs libmylibrary.a *.o # static library on all platform
5757
```
5858

meson.build

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'SIFDecode',
33
'fortran',
4-
version: '2.6.0',
4+
version: '2.6.2',
55
meson_version: '>= 0.61.0',
66
default_options: [
77
'buildtype=release',
@@ -37,3 +37,6 @@ endforeach
3737
# Fortran modules
3838
script_modules = files('install_modules.py')
3939
meson.add_install_script(script_modules)
40+
41+
# Install the bash script
42+
install_data('bin/sifdecoder', install_dir: 'bin')

src/decode/sifdecode.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ MODULE SIFDECODE
2525
! V e r s i o n
2626
!---------------
2727

28-
CHARACTER ( LEN = 6 ) :: version = '2.6.0 '
28+
CHARACTER ( LEN = 6 ) :: version = '2.6.2 '
2929

3030
!--------------------
3131
! P r e c i s i o n

0 commit comments

Comments
 (0)