Created
January 2, 2026 09:00
-
-
Save GeroZayas/42b7e0057a5f3adf70c523a4d954d0ec to your computer and use it in GitHub Desktop.
Compile RAYLIB App with Zig (C99)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| zig cc -std=c99 main.c \ | |
| -lraylib -lGL -lm -lpthread -ldl -lrt -lX11 \ | |
| -o app |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-o app
Name the output executable app.
Without -o, Zig would pick a default name.