diff options
| author | Ray <raysan5@gmail.com> | 2014-09-30 18:14:08 +0200 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2014-09-30 18:14:08 +0200 |
| commit | c790891e6066b27548c526ecd163083bb90bd9a9 (patch) | |
| tree | f5956d4855cc8f7a2378834b69f9b0e3062b6a67 | |
| parent | 78a660d4092cb7b1ec662be7041d67a93009bf69 (diff) | |
| download | raylib-c790891e6066b27548c526ecd163083bb90bd9a9.tar.gz raylib-c790891e6066b27548c526ecd163083bb90bd9a9.zip | |
Added required linker libs
| -rw-r--r-- | templates/simple_game/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/simple_game/makefile b/templates/simple_game/makefile index 418df1a3..e5c2b2c2 100644 --- a/templates/simple_game/makefile +++ b/templates/simple_game/makefile @@ -56,7 +56,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 |
