oviano
oviano
So I've located the tzdata data, which is in /system/usr/share/zoneinfo. But after some more web trawling, I found only that I can retrieve the timezone using the following command from...
In other words, they've taken their own custom approach. Not too sure where this /data/property folder is, can't see that one on my device.
Ok, I found it. Silly me. date::set_install All good.
Although I think it would be cleaner if it wasn't necessary to have to add things like ;INSTALL=.;HAS_REMOTE_API=0 just to get it to compile, when I know I'm going to...
I am finding that when compiling a project in VS2019 with C++17 enabled, and /Zc:__cplusplus defined (reference https://devblogs.microsoft.com/cppblog/msvc-now-correctly-reports-__cplusplus/) that it incorrectly defined HAS_UNCAUGHT_EXCEPTIONS to 0 and the build fails. If...
Yes it gives a deprecation warning and I have warnings set to errors. Change > to >= is my workaround which must be the correct fix anyway?
Got it, it makes sense and thanks for the explanation.
Read @HowardHinnant comments on 14th June for the reason why it’s like it is.
Sure - bgfx is building fine but I'm talking about when you then create a separate project linking against bgfx and including the bgfx/bx/bimg header files. bx.h includes which doesn't...
> > PRIx64 > > This rings a bell. Try to add `-D__STDC_FORMAT_MACROS=1` when you're building bx. I don't know about MSVC, but this works with Mingw-w64. > > I...