Advertisement
Redgeneral

Raylib src make bash

Dec 5th, 2015
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.28 KB | None | 0 0
  1. pi@raspberrypi:~ $ cd /home/pi/Downloads/raylib/raylib-master/src
  2.  
  3. pi@raspberrypi:~/Downloads/raylib/raylib-master/src $ make
  4.  
  5. gcc -c core.c -O1 -Wall -std=gnu99 -I. -I../src -I../external/glfw3/include -I../external/glew/include -I../external/openal_soft/include -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_11
  6.  
  7. gcc -c rlgl.c -O1 -Wall -std=gnu99 -I. -I../src -I../external/glfw3/include -I../external/glew/include -I../external/openal_soft/include -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_11
  8.  
  9. gcc -c raymath.c -O1 -Wall -std=gnu99 -I. -I../src -I../external/glfw3/include -I../external/glew/include -I../external/openal_soft/include
  10.  
  11. gcc -c shapes.c -O1 -Wall -std=gnu99 -I. -I../src -I../external/glfw3/include -I../external/glew/include -I../external/openal_soft/include -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_11
  12.  
  13. gcc -c text.c -O1 -Wall -std=gnu99 -I. -I../src -I../external/glfw3/include -I../external/glew/include -I../external/openal_soft/include -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_11
  14.  
  15. In file included from text.c:38:0:
  16.  
  17. stb_rect_pack.h:504:12: warning: ‘rect_width_compare’ defined but not used [-Wunused-function]
  18.  
  19.  static int rect_width_compare(const void *a, const void *b)
  20.             ^
  21. gcc -c textures.c -O1 -Wall -std=gnu99 -I. -I../src -I../external/glfw3/include -I../external/glew/include -I../external/openal_soft/include -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_11
  22.  
  23. textures.c: In function ‘LoadPVR’:
  24.  
  25. textures.c:1236:7: warning: typedef ‘pvrHeaderV2’ locally defined but not used [-Wunused-local-typedefs]
  26.      } pvrHeaderV2;
  27.        ^
  28.  
  29. textures.c:1262:7: warning: typedef ‘pvrMetadata’ locally defined but not used [-Wunused-local-typedefs]
  30.      } pvrMetadata;
  31.        ^
  32.  
  33. In file included from textures.c:43:0:
  34.  
  35. textures.c: At top level:
  36.  
  37. stb_image.h:1000:13: warning: ‘stbi__float_postprocess’ defined but not used [-Wunused-function]
  38.  
  39.  static void stbi__float_postprocess(float *result, int *x, int *y, int *comp, int req_comp)
  40.              ^
  41.  
  42. gcc -c models.c -O1 -Wall -std=gnu99 -I. -I../src -I../external/glfw3/include -I../external/glew/include -I../external/openal_soft/include -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_11
  43.  
  44. gcc -c audio.c -O1 -Wall -std=gnu99 -I. -I../src -I../external/glfw3/include -I../external/glew/include -I../external/openal_soft/include -DPLATFORM_DESKTOP
  45.  
  46. gcc -c utils.c -O1 -Wall -std=gnu99 -I. -I../src -I../external/glfw3/include -I../external/glew/include -I../external/openal_soft/include -DPLATFORM_DESKTOP
  47.  
  48. gcc -c camera.c -O1 -Wall -std=gnu99 -I. -I../src -I../external/glfw3/include -I../external/glew/include -I../external/openal_soft/include -DPLATFORM_DESKTOP
  49.  
  50. gcc -c gestures.c -O1 -Wall -std=gnu99 -I. -I../src -I../external/glfw3/include -I../external/glew/include -I../external/openal_soft/include -DPLATFORM_DESKTOP
  51.  
  52. gestures.c:287:13: warning: ‘ProcessMotionEvent’ defined but not used [-Wunused-function]
  53.  
  54.  static void ProcessMotionEvent(GestureEvent event)
  55.              ^
  56.  
  57. gcc -c stb_vorbis.c -O1 -I. -I../src -I../external/glfw3/include -I../external/glew/include -I../external/openal_soft/include -DPLATFORM_DESKTOP
  58.  
  59. ar rcs libraylib.a core.o rlgl.o raymath.o shapes.o text.o textures.o models.o audio.o utils.o camera.o gestures.o stb_vorbis.o
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement