Advertisement
Guest User

Untitled

a guest
Apr 18th, 2016
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 5.95 KB | None | 0 0
  1. root@raspberrypi:/home/pi/bass24-linux# make all
  2. make -C 3dtest
  3. make[1]: Entering directory '/home/pi/bass24-linux/3dtest'
  4. cc 3dtest.c -Os -I/home/pi/bass24-linux -L/home/pi/bass24-linux -L/home/pi/bass24-linux/hardfp -lbass -lm -Wl,-rpath,/home/pi/bass24-linux:/home/pi/bass24-linux/hardfp `pkg-config gtk+-2.0 --cflags --libs` `pkg-config libglade-2.0 --cflags --libs` -export-dynamic -D'GLADE_PATH="/home/pi/bass24-linux/3dtest/"' -o 3dtest
  5. /usr/bin/ld: skipping incompatible /home/pi/bass24-linux/libbass.so when searching for -lbass
  6. make[1]: Leaving directory '/home/pi/bass24-linux/3dtest'
  7. make -C basstest
  8. make[1]: Entering directory '/home/pi/bass24-linux/basstest'
  9. cc basstest.c -Os -I/home/pi/bass24-linux -L/home/pi/bass24-linux -L/home/pi/bass24-linux/hardfp -lbass -lm -Wl,-rpath,/home/pi/bass24-linux:/home/pi/bass24-linux/hardfp `pkg-config gtk+-2.0 --cflags --libs` `pkg-config libglade-2.0 --cflags --libs` -export-dynamic -D'GLADE_PATH="/home/pi/bass24-linux/basstest/"' -o basstest
  10. /usr/bin/ld: skipping incompatible /home/pi/bass24-linux/libbass.so when searching for -lbass
  11. make[1]: Leaving directory '/home/pi/bass24-linux/basstest'
  12. make -C contest
  13. make[1]: Entering directory '/home/pi/bass24-linux/contest'
  14. cc contest.c -Os -I/home/pi/bass24-linux -L/home/pi/bass24-linux -L/home/pi/bass24-linux/hardfp -lbass -lm -Wl,-rpath,/home/pi/bass24-linux:/home/pi/bass24-linux/hardfp  -o contest
  15. /usr/bin/ld: skipping incompatible /home/pi/bass24-linux/libbass.so when searching for -lbass
  16. make[1]: Leaving directory '/home/pi/bass24-linux/contest'
  17. make -C custloop
  18. make[1]: Entering directory '/home/pi/bass24-linux/custloop'
  19. cc custloop.c -Os -I/home/pi/bass24-linux -L/home/pi/bass24-linux -L/home/pi/bass24-linux/hardfp -lbass -lm -Wl,-rpath,/home/pi/bass24-linux:/home/pi/bass24-linux/hardfp `pkg-config gtk+-2.0 --cflags --libs` `pkg-config gthread-2.0 --cflags --libs` -o custloop
  20. custloop.c: In function ‘PlayFile’:
  21. custloop.c:166:5: warning: ‘g_thread_create’ is deprecated (declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:104): Use 'g_thread_new' instead [-Wdeprecated-declarations]
  22.      scanthread=g_thread_create(ScanPeaks,(void*)chan2,TRUE,NULL); // start scanning in a new thread
  23.      ^
  24. custloop.c: In function ‘main’:
  25. custloop.c:217:2: warning: ‘g_thread_init’ is deprecated (declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:265) [-Wdeprecated-declarations]
  26.   g_thread_init(NULL);
  27.   ^
  28. custloop.c:261:2: warning: ‘gdk_pixbuf_unref’ is deprecated (declared at /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h:226): Use 'g_object_unref' instead [-Wdeprecated-declarations]
  29.   gdk_pixbuf_unref(wavepb);
  30.   ^
  31. /usr/bin/ld: skipping incompatible /home/pi/bass24-linux/libbass.so when searching for -lbass
  32. /tmp/ccBRZLbh.o: In function `ScanPeaks':
  33. custloop.c:(.text+0xa0): undefined reference to `BASS_ChannelGetLevelEx'
  34. custloop.c:(.text+0xf0): undefined reference to `BASS_ChannelGetLevelEx'
  35. custloop.c:(.text+0x1f8): undefined reference to `BASS_ChannelGetAttributeEx'
  36. custloop.c:(.text+0x21c): undefined reference to `BASS_ChannelGetAttributeEx'
  37. custloop.c:(.text+0x234): undefined reference to `BASS_ChannelSetAttributeEx'
  38. collect2: error: ld returned 1 exit status
  39. ../makefile.in:18: recipe for target 'custloop' failed
  40. make[1]: *** [custloop] Error 1
  41. make[1]: Leaving directory '/home/pi/bass24-linux/custloop'
  42. makefile:11: recipe for target 'custloop' failed
  43. make: *** [custloop] Error 2
  44.  
  45.  
  46. ///////////////////////////////// SECOND TRY ////////////////
  47. root@raspberrypi:/home/pi/bass24-linux# make all
  48. make -C 3dtest
  49. make[1]: Entering directory '/home/pi/bass24-linux/3dtest'
  50. make[1]: Nothing to be done for 'all'.
  51. make[1]: Leaving directory '/home/pi/bass24-linux/3dtest'
  52. make -C basstest
  53. make[1]: Entering directory '/home/pi/bass24-linux/basstest'
  54. make[1]: Nothing to be done for 'all'.
  55. make[1]: Leaving directory '/home/pi/bass24-linux/basstest'
  56. make -C contest
  57. make[1]: Entering directory '/home/pi/bass24-linux/contest'
  58. make[1]: Nothing to be done for 'all'.
  59. make[1]: Leaving directory '/home/pi/bass24-linux/contest'
  60. make -C custloop
  61. make[1]: Entering directory '/home/pi/bass24-linux/custloop'
  62. cc custloop.c -Os -I/home/pi/bass24-linux -L/home/pi/bass24-linux -L/home/pi/bass24-linux/hardfp -lbass -lm -Wl,-rpath,/home/pi/bass24-linux:/home/pi/bass24-linux/hardfp `pkg-config gtk+-2.0 --cflags --libs` `pkg-config gthread-2.0 --cflags --libs` -o custloop
  63. custloop.c: In function ‘PlayFile’:
  64. custloop.c:166:5: warning: ‘g_thread_create’ is deprecated (declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:104): Use 'g_thread_new' instead [-Wdeprecated-declarations]
  65.      scanthread=g_thread_create(ScanPeaks,(void*)chan2,TRUE,NULL); // start scanning in a new thread
  66.      ^
  67. custloop.c: In function ‘main’:
  68. custloop.c:217:2: warning: ‘g_thread_init’ is deprecated (declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:265) [-Wdeprecated-declarations]
  69.   g_thread_init(NULL);
  70.   ^
  71. custloop.c:261:2: warning: ‘gdk_pixbuf_unref’ is deprecated (declared at /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h:226): Use 'g_object_unref' instead [-Wdeprecated-declarations]
  72.   gdk_pixbuf_unref(wavepb);
  73.   ^
  74. /usr/bin/ld: skipping incompatible /home/pi/bass24-linux/libbass.so when searching for -lbass
  75. /tmp/ccf9wQqA.o: In function `ScanPeaks':
  76. custloop.c:(.text+0xa0): undefined reference to `BASS_ChannelGetLevelEx'
  77. custloop.c:(.text+0xf0): undefined reference to `BASS_ChannelGetLevelEx'
  78. custloop.c:(.text+0x1f8): undefined reference to `BASS_ChannelGetAttributeEx'
  79. custloop.c:(.text+0x21c): undefined reference to `BASS_ChannelGetAttributeEx'
  80. custloop.c:(.text+0x234): undefined reference to `BASS_ChannelSetAttributeEx'
  81. collect2: error: ld returned 1 exit status
  82. ../makefile.in:18: recipe for target 'custloop' failed
  83. make[1]: *** [custloop] Error 1
  84. make[1]: Leaving directory '/home/pi/bass24-linux/custloop'
  85. makefile:11: recipe for target 'custloop' failed
  86. make: *** [custloop] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement