diff options
| author | Ray <raysan5@gmail.com> | 2014-09-30 18:14:36 +0200 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2014-09-30 18:14:36 +0200 |
| commit | d025230707b30f5e5e6b3724d91e4b2dd70a8ce0 (patch) | |
| tree | aae76c846386a5d34e49f9a05d9904be12383112 | |
| parent | c790891e6066b27548c526ecd163083bb90bd9a9 (diff) | |
| download | raylib-d025230707b30f5e5e6b3724d91e4b2dd70a8ce0.tar.gz raylib-d025230707b30f5e5e6b3724d91e4b2dd70a8ce0.zip | |
Added required linker libs
| -rw-r--r-- | templates/standard_game/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/standard_game/makefile b/templates/standard_game/makefile index 2aacd54c..8a5a7b55 100644 --- a/templates/standard_game/makefile +++ b/templates/standard_game/makefile @@ -52,7 +52,7 @@ LFLAGS = -L. -L../../src -L/opt/vc/lib ifeq ($(PLATFORM),PLATFORM_RPI) # libraries for Raspberry Pi compiling # NOTE: OpenAL Soft library should be installed (libopenal1 package) - LIBS = -lraylib -lGLESv2 -lEGL -lm -lbcm_host -lopenal + LIBS = -lraylib -lGLESv2 -lEGL -lpthread -lrt -lm -lbcm_host -lopenal else # libraries for Windows desktop compiling # NOTE: GLFW3 and OpenAL Soft libraries should be installed |
