-
Hi, I have a small app compile in with the following flags
With the flag
Without the flag would result in the following warnings
I did some tracing and understand the errors came from the following changes: #19057 From the PR, it seem GLFW should be included unless the flag Hence wish to check with @sbc100 about it. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
The is working as intended. In In this case I think you can just add |
Beta Was this translation helpful? Give feedback.
-
Fixed in #19935 |
Beta Was this translation helpful? Give feedback.
The is working as intended. In
STRICT
mode (i.e. withAUTO_JS_LIBRARIES=0
) you need to explicitly link any libraries that you use.In this case I think you can just add
-lGL
(or-lGLESv2
) to your command line).