diff options
| author | Ray <raysan5@gmail.com> | 2014-09-30 18:13:16 +0200 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2014-09-30 18:13:16 +0200 |
| commit | 4040f9095d2f42de09b67b5aa59279697d8b9bc0 (patch) | |
| tree | 43fbfe5168abf0b1da5978bd25c3f6e7522d3876 | |
| parent | d95f743b6f60f50a04000e347da23777bb0e2b73 (diff) | |
| download | raylib-4040f9095d2f42de09b67b5aa59279697d8b9bc0.tar.gz raylib-4040f9095d2f42de09b67b5aa59279697d8b9bc0.zip | |
Added required linker libs
| -rw-r--r-- | templates/basic_test/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/basic_test/makefile b/templates/basic_test/makefile index 648c4802..8b2a1fd1 100644 --- a/templates/basic_test/makefile +++ b/templates/basic_test/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 |
