File tree Expand file tree Collapse file tree 4 files changed +10
-7
lines changed
Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -48,11 +48,11 @@ sifdecoder_standalone -qp ROSENBR.SIF # decode the SIF problem in quadruple pre
4848Then, you can create either a shared or a static library for your problem
4949using 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
5656ar rcs libmylibrary.a * .o # static library on all platform
5757```
5858
Original file line number Diff line number Diff line change 11project (
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
3838script_modules = files (' install_modules.py' )
3939meson .add_install_script(script_modules)
40+
41+ # Install the bash script
42+ install_data (' bin/sifdecoder' , install_dir : ' bin' )
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments