fson icon indicating copy to clipboard operation
fson copied to clipboard

Fortran 95 JSON Parser

Results 11 fson issues
Sort by recently updated
recently updated
newest added

Hi, I was using fson for a while in my project ifort 2024, and it was working great. Today I was debugging some unrelated issue and I turned on all...

``` [ 58%] Linking Fortran executable zofu-driver /opt/local/bin/cmake -E cmake_link_script CMakeFiles/zofu-driver.dir/link.txt --verbose=ON /opt/local/bin/gfortran-mp-12 -L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-rpath,/opt/local/lib/libgcc -pipe -Os -m32 -mmacosx-version-min=10.6 "CMakeFiles/zofu-driver.dir/_deps/zofu-src/src/zofu_driver.F90.o" -o zofu-driver -Wl,-rpath,/opt/local/lib libzofu.dylib make[2]: Leaving directory `/opt/local/var/macports/build/_opt_PPCRosettaPorts_devel_fson/fson/work/josephalevin-fson-16731d9' [...

A user may have a copy of ZOFU installed in a known location. This change set allows the user to specify ZOFU's installation details according to its [`find_package` script](https://github.com/acroucher/zofu/blob/master/contrib/cmake/FindZOFU.cmake) and...

CMakeLists have the following: https://github.com/josephalevin/fson/blob/16731d9b510b94a4e074a1fa7e35706f6045a85f/CMakeLists.txt#L133 In fact, however, `zofu` does have CMake implementation. It is also desirable to add an option for using external `zofu`, so that it does not...

``` [10/23] /opt/local/bin/gfortran-mp-12 -Ilibfson.dylib.p -I. -I../josephalevin-fson-16731d9 -fdiagnostics-color=always -Wall -O0 -g -pipe -Os -m64 -Wno-maybe-uninitialized -Jlibfson.dylib.p -o libfson.dylib.p/src_fson_path_m.f90.o -c ../josephalevin-fson-16731d9/src/fson_path_m.f90 FAILED: libfson.dylib.p/src_fson_path_m.f90.o libfson.dylib.p/fson_path_m.mod /opt/local/bin/gfortran-mp-12 -Ilibfson.dylib.p -I. -I../josephalevin-fson-16731d9 -fdiagnostics-color=always -Wall -O0 -g...

Dear all, I want to read geojson file and get the coordinations. Can you help me to read coordinations array? Thanks IH Lee

First, thank you for this wonderful library! I just added `fson` to one of my f90 projects and decided to make `fson_get` calls to accept default values when a specified...

The library hangs on on the parsing of one simple integer. Here is the code to reproduce the issue: ```fortran subroutine test_parsing() type(fson_value), pointer :: jsonValue jsonValue => fson_parse(str='42') !...

The library accept invalid json strings. Here is the code to reproduce the issue: ```fortran subroutine test_parsing() type(fson_value), pointer :: jsonValue jsonValue => fson_parse(str=' [ - 4 y 2 ]...

I have a trouble with installation. I got following errors but there is no documentation for that. Is there a minimum requirement for gfortran? (I'm using `GNU Fortran (GCC) 4.4.6...