prlw1
prlw1
I see in dispatch_common.c that you have ``` # ifdef ANDROID # define EGL_LIB "libEGL.so" # define GLES1_LIB "libGLESv1_CM.so" # define GLES2_LIB "libGLESv2.so" # else # define EGL_LIB "libEGL.so.1" #...
``` src/wscript_build: platform_libs = ['m', 'jpeg', 'dl'] src/wscript_build: lib = ['m', 'jpeg', 'dl'], ``` but many unices have dlopen in libc and libdl doesn't exist. (Guessing: only needed on linux?)
Just very briefly tried to compile 168d2f1650c84be3f13d1a5b76ccec8cbb89188e on an ubuntu 16.04.5 box and on first run, I see: ``` $ glmark2 ======================================================= glmark2 2017.07 ======================================================= OpenGL Information GL_VENDOR: Intel Open...
I have had this problem for a while, but waited until I could run cupsd 2.3.3op2 and cups-filters 1.28.7, so long after the patches in issue #97 were commited. Networkwise,...
Add ::value to is_formattable as per suggestion by @vitaut in https://github.com/fmtlib/fmt/issues/3854
If I compile ``` #include int main() { } ``` with g++ 14.0.1, with -std=c++20, all is well. If I use -std=c++23, I see ``` In file included from fmtbug.cc:1:...
Essentially, we `#include ` and then use `memset` rather than `std::memset` and there isn't a `using namespace std`. Admittedly I haven't been able to reproduce the `not in scope` error...
Just tried to build with today's git head of imgui/implot/implot_demos with gcc 10.3.0 and see: ``` [ 92%] Building CXX object CMakeFiles/app.dir/common/Fonts/RobotoItalic.cpp.o /usr/src/local/implot_demos/common/App.cpp: In constructor ‘App::App(std::string, int, int, int, const...