Results 62 comments of piyushrpt

What is the version number in ``` /usr/local/home/jlmd9g/software/minicondda3/envs/fringe/include/gdal_version.h ```

I would also check the cmake config output - I suspect its loading gdal.h from a different location than the lib and reporting the mismatch.

So ``` GDAL_DIR=/usr/local/home/jlmd9g/software/minicondda3/envs/fringe CXX=g++ cmake -DCMAKE_INSTALL_PREFIX=../install ../src/fringe ``` doesn't work? What shell are you using?

What version of cmake? And are you clearing out the build folder before each cmake run? Else it will use the cached values

All is well .... these things are never documented :-P

Yeah. This needs some work. The logic for checking for images in the last mini stack doesn't exist. We typically just modify the stack.vrt to get around this.

The `zheevr` and `zpotrf` both complain about the first integer argument and I suspect this means 32-bit vs 64-bit? Possibly, this - https://numpy.org/devdocs/user/building.html#bit-blas-and-lapack

new macs are a little weird. gcc is pretty much unusable. Use clang. `CC=clang CXX=clang++ cmake -DCMAKE_INSTALL_PREFIX={installdir} {srcdir}`

clang-11 and gcc-10 are both a little weird as they get stricter with what can be done. I have only tested cmake with clang 9/10. Maybe this will help -...