Tony Hallam

Results 35 comments of Tony Hallam

Had to rename to txt but this is the file. Understand that I'm using an obscure environment. Would compiling with the debug flag enable a better trace? It really just...

Hi @markusdregi I know you guys are busy but wondering if you managed to test my data on your end? Cheers

@crayxt , I forgot about this error. Mainly I just read the binary outputs from Eclipse now. It is relatively straightforward to build a parser for these files in Python...

So I was able to get a pretty easy install going for v2.9.4. I have msvc.exe from VS 2017 installed and I edited the `setup.py` to include a windows platform...

Awesome, understand @dotfloat about the time thing. If I can help out somehow just let me know.

I'm on x64 windows. I'm not sure I have a 32bit MSVC compiler so it may just be suited to my system. I suspect you will need an architecture specific...

@dotfloat , so here is the rub. I don't think Github actions provides any 32bit images. So we can build a 32 bit windows lib, but we can't test it...

Oh ok, Well, using the same setup as on Github (VS 2019 v16) I have to modify the cmake command like this. ``` mkdir cmake-build cmake -S . -B cmake-build...

The previous post was in the build dir `cmake-build` no? You have the line `cd cmake-build` in the `run tests` actions. Anyway, I tried a few different configurations of the...

Ok cool, making progress. I had to add the dll directory to the path in powershell ``` cd cmake-build $Env:Path += ";"+$pwd+"\lib\Debug" ctests --output-on-failure -C Debug ``` There are some...