Using GLFW 3.4 on MacOS 15.0.1 using Apple clang version 16.0.0 (clang-1600.0.26.3) Target: arm64-apple-darwin24.0.0 to compile the basic example code on Documentation | GLFW get the following messages when execution starts:
… a.out[6930:998382] +[IMKClient subclass]: chose IMKClient_Legacy
… a.out[6930:998382] +[IMKInputSession subclass]: chose IMKInputSession_Legacy
The first message seems to happen during the call to glfwPollEvents(). Nonetheless, the example program seems to run OK (as does my larger program that now has the same issue).
Probably unrelatedly, the compiler complains that:
glfwtest.c:26:9: warning: ‘glClear’ is deprecated: first deprecated in macOS 10.14 - OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings) [-Wdeprecated-declarations]
26 | glClear(GL_COLOR_BUFFER_BIT);
| ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenGL.framework/Headers/gl.h:2394:13: note: ‘glClear’ has been explicitly marked deprecated here
2394 | extern void glClear (GLbitfield mask) OPENGL_DEPRECATED(10.0, 10.14);
| ^