Re: [gdal-dev] core dump on dir info

2024-02-04 Thread Javier Jimenez Shaw via gdal-dev
Hi Mike Out of curiosity, are run running it in a virtual machine? A few year ago I had problems running a program in a virtual machine (virtualbox, but I read it happens in others) due to a missing SSE instruction. The solution there was to "enable" the missing instructions in the virtual machine

Re: [gdal-dev] core dump on dir info

2024-02-04 Thread Michael Sumner via gdal-dev
Excellent, thanks Even - confirmed at my end and on my original use-case. Cheers, Mike On Mon, Feb 5, 2024 at 12:04 PM Even Rouault wrote: > ghcr.io/osgeo/gdal:ubuntu-full-latest has been regenerated with the > rebuild of TileDB without AVX2. I've also enabled the > drivers-with-external-depe

Re: [gdal-dev] core dump on dir info

2024-02-04 Thread Even Rouault via gdal-dev
ghcr.io/osgeo/gdal:ubuntu-full-latest has been regenerated with the rebuild of TileDB without AVX2. I've also enabled the drivers-with-external-depencies-built-as-plugin GDAL build mode, so it is easy to just remove a given plugin by deleting the corresponding .so in /usr/lib/x86_64-linux-gnu/g

Re: [gdal-dev] ECW plugin

2024-02-04 Thread Even Rouault via gdal-dev
Hi, you need to download the ECW SDK from https://supportsi.hexagon.com/s/article/ERDAS-ECW-JP2-SDK-v5-5-Update-4-Release-Announcement?language=en_US and install it and then point to it with the CMake variables indicated at https://gdal.org/development/building_from_source.html#ecw Cf htt

[gdal-dev] ECW plugin

2024-02-04 Thread Marián Hadri via gdal-dev
Hi, I've build GDAL version 3.8.3 in VS2019 from source files "gdal-3.8.3.tar.gz". For creating project file "GDAL.vcxproj" I used CMake program. I've added variables PROJ_INCLUDE_DIR = C:\OSGeo4W\include and PROJ_LIBRARY = C:\OSGeo4W\lib\proj.lib and everything worked fine. When I added gdal.dl

Re: [gdal-dev] core dump on dir info

2024-02-04 Thread Michael Sumner via gdal-dev
indeed there's no avx2: cat /proc/cpuinfo|grep sse|head -n 1 flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm rep_good nopl cpuid extd_apicid tsc_known_freq pni pclmulqdq ssse3 fma cx16

Re: [gdal-dev] core dump on dir info

2024-02-04 Thread Even Rouault via gdal-dev
ok, so I believe this is the AVX2 issue I was talking about, as I realize that enabling AVX2 is the default mode when TileDB is built from source (which the Docker image does), and must be explicitly disabled with "./bootstrap --disable-avx2" (I've just changed the build recipe to include that,