Advertisement
Guest User

Untitled

a guest
Jan 13th, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 8.37 KB | None | 0 0
  1. tim@tim-All-Series:/tmp$ git clone https://github.com/szechyjs/dsd
  2. Cloning into 'dsd'...
  3. remote: Counting objects: 617, done.
  4. remote: Total 617 (delta 0), reused 0 (delta 0)
  5. Receiving objects: 100% (617/617), 711.34 KiB | 561.00 KiB/s, done.
  6. Resolving deltas: 100% (313/313), done.
  7. Checking connectivity... done.
  8. tim@tim-All-Series:/tmp$ cd dsd
  9. tim@tim-All-Series:/tmp/dsd$ git tag -l
  10. v1.3
  11. v1.4.1
  12. v1.6.0
  13. tim@tim-All-Series:/tmp/dsd$ git reset --hard v1.6.0
  14. HEAD is now at 5d147c9 version 1.6.0
  15. tim@tim-All-Series:/tmp/dsd$ perl -p -i -e 's{/usr/local/include}{/tmp/mbelib/}g; s{-lmbe}{/tmp/mbelib/build/libmbe.a}' Makefile
  16. tim@tim-All-Series:/tmp/dsd$ make
  17. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c dsd_main.c -o dsd_main.o
  18. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c dsd_symbol.c -o dsd_symbol.o
  19. dsd_symbol.c: In function ‘getSymbol’:
  20. dsd_symbol.c:26:11: warning: variable ‘result’ set but not used [-Wunused-but-set-variable]
  21.    ssize_t result;
  22.            ^
  23. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c dsd_dibit.c -o dsd_dibit.o
  24. dsd_dibit.c: In function ‘skipDibit’:
  25. dsd_dibit.c:288:9: warning: variable ‘sample’ set but not used [-Wunused-but-set-variable]
  26.    short sample;
  27.          ^
  28. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c dsd_frame_sync.c -o dsd_frame_sync.o
  29. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c dsd_file.c -o dsd_file.o
  30. dsd_file.c: In function ‘closeMbeOutFile’:
  31. dsd_file.c:176:7: warning: variable ‘result’ set but not used [-Wunused-but-set-variable]
  32.    int result;
  33.        ^
  34. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c dsd_audio.c -o dsd_audio.o
  35. dsd_audio.c: In function ‘writeSynthesizedVoice’:
  36. dsd_audio.c:160:11: warning: variable ‘result’ set but not used [-Wunused-but-set-variable]
  37.    ssize_t result;
  38.            ^
  39. dsd_audio.c: In function ‘playSynthesizedVoice’:
  40. dsd_audio.c:188:11: warning: variable ‘result’ set but not used [-Wunused-but-set-variable]
  41.    ssize_t result;
  42.            ^
  43. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c dsd_serial.c -o dsd_serial.o
  44. dsd_serial.c: In function ‘resumeScan’:
  45. dsd_serial.c:75:11: warning: variable ‘result’ set but not used [-Wunused-but-set-variable]
  46.    ssize_t result;
  47.            ^
  48. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c dsd_frame.c -o dsd_frame.o
  49. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c dsd_mbe.c -o dsd_mbe.o
  50. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c dsd_upsample.c -o dsd_upsample.o
  51. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c p25p1_hdu.c -o p25p1_hdu.o
  52. p25p1_hdu.c: In function ‘processHDU’:
  53. p25p1_hdu.c:25:14: warning: variable ‘count’ set but not used [-Wunused-but-set-variable]
  54.    int dibit, count, i, j;
  55.               ^
  56. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c p25p1_ldu1.c -o p25p1_ldu1.o
  57. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c p25p1_ldu2.c -o p25p1_ldu2.o
  58. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c p25p1_tdulc.c -o p25p1_tdulc.o
  59. p25p1_tdulc.c: In function ‘processTDULC’:
  60. p25p1_tdulc.c:25:14: warning: variable ‘count’ set but not used [-Wunused-but-set-variable]
  61.    int dibit, count;
  62.               ^
  63. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c p25_lcw.c -o p25_lcw.o
  64. p25_lcw.c: In function ‘processP25lcw’:
  65. p25_lcw.c:7:8: warning: variable ‘tgid’ set but not used [-Wunused-but-set-variable]
  66.    char tgid[17], tmpstr[255];
  67.         ^
  68. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c x2tdma_voice.c -o x2tdma_voice.o
  69. x2tdma_voice.c: In function ‘processX2TDMAvoice’:
  70. x2tdma_voice.c:35:8: warning: variable ‘parity’ set but not used [-Wunused-but-set-variable]
  71.    char parity;
  72.         ^
  73. x2tdma_voice.c:34:8: warning: variable ‘cachdata’ set but not used [-Wunused-but-set-variable]
  74.    char cachdata[13];
  75.         ^
  76. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c x2tdma_data.c -o x2tdma_data.o
  77. x2tdma_data.c: In function ‘processX2TDMAdata’:
  78. x2tdma_data.c:30:7: warning: variable ‘aiei’ set but not used [-Wunused-but-set-variable]
  79.    int aiei;
  80.        ^
  81. x2tdma_data.c:29:8: warning: variable ‘ccset but not used [-Wunused-but-set-variable]
  82.    char cc[4];
  83.         ^
  84. x2tdma_data.c:28:8: warning: variable ‘cachdata’ set but not used [-Wunused-but-set-variable]
  85.    char cachdata[13];
  86.         ^
  87. x2tdma_data.c:27:8: warning: variable ‘syncdata’ set but not used [-Wunused-but-set-variable]
  88.    char syncdata[25];
  89.         ^
  90. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c dstar.c -o dstar.o
  91. dstar.c: In function ‘processDSTAR’:
  92. dstar.c:36:8: warning: variable ‘dstar’ set but not used [-Wunused-but-set-variable]
  93.    char dstar[300];
  94.         ^
  95. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c nxdn_voice.c -o nxdn_voice.o
  96. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c nxdn_data.c -o nxdn_data.o
  97. nxdn_data.c: In function ‘processNXDNData’:
  98. nxdn_data.c:6:10: warning: variable ‘dibit’ set but not used [-Wunused-but-set-variable]
  99.    int i, dibit;
  100.           ^
  101. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c dmr_voice.c -o dmr_voice.o
  102. dmr_voice.c: In function ‘processDMRvoice’:
  103. dmr_voice.c:33:8: warning: variable ‘cachdata’ set but not used [-Wunused-but-set-variable]
  104.    char cachdata[13];
  105.         ^
  106. dmr_voice.c:32:8: warning: variable ‘syncdata’ set but not used [-Wunused-but-set-variable]
  107.    char syncdata[25];
  108.         ^
  109. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c dmr_data.c -o dmr_data.o
  110. dmr_data.c: In function ‘processDMRdata’:
  111. dmr_data.c:29:8: warning: variable ‘ccset but not used [-Wunused-but-set-variable]
  112.    char cc[5];
  113.         ^
  114. dmr_data.c:28:8: warning: variable ‘cachdata’ set but not used [-Wunused-but-set-variable]
  115.    char cachdata[13];
  116.         ^
  117. dmr_data.c:27:8: warning: variable ‘syncdata’ set but not used [-Wunused-but-set-variable]
  118.    char syncdata[25];
  119.         ^
  120. gcc -O2 -Wall -I. -I/tmp/mbelib/ -I/usr/include -c provoice.c -o provoice.o
  121. gcc -O2 -Wall -o dsd dsd_main.o dsd_symbol.o dsd_dibit.o dsd_frame_sync.o dsd_file.o dsd_audio.o dsd_serial.o dsd_frame.o dsd_mbe.o dsd_upsample.o p25p1_hdu.o p25p1_ldu1.o p25p1_ldu2.o p25p1_tdulc.o p25_lcw.o x2tdma_voice.o x2tdma_data.o dstar.o nxdn_voice.o nxdn_data.o dmr_voice.o dmr_data.o provoice.o -L/usr/local/lib -lm /tmp/mbelib/build/libmbe.a
  122. /tmp/mbelib/build/libmbe.a(mbelib.c.o): In function `mbe_spectralAmpEnhance':
  123. mbelib.c:(.text+0x40e): undefined reference to `powf'
  124. mbelib.c:(.text+0x459): undefined reference to `powf'
  125. mbelib.c:(.text+0x481): undefined reference to `cosf'
  126. mbelib.c:(.text+0x4dd): undefined reference to `powf'
  127. mbelib.c:(.text+0x508): undefined reference to `powf'
  128. mbelib.c:(.text+0x57a): undefined reference to `sqrtf'
  129. mbelib.c:(.text+0x5dc): undefined reference to `cosf'
  130. mbelib.c:(.text+0x646): undefined reference to `powf'
  131. mbelib.c:(.text+0x839): undefined reference to `powf'
  132. mbelib.c:(.text+0x8ac): undefined reference to `sqrtf'
  133. /tmp/mbelib/build/libmbe.a(mbelib.c.o): In function `mbe_synthesizeSpeechf':
  134. mbelib.c:(.text+0xa7d): undefined reference to `log'
  135. mbelib.c:(.text+0xff5): undefined reference to `cosf'
  136. mbelib.c:(.text+0x1083): undefined reference to `cosf'
  137. mbelib.c:(.text+0x130d): undefined reference to `cosf'
  138. mbelib.c:(.text+0x139b): undefined reference to `cosf'
  139. mbelib.c:(.text+0x15b7): undefined reference to `cosf'
  140. /tmp/mbelib/build/libmbe.a(mbelib.c.o):mbelib.c:(.text+0x164d): more undefined references to `cosf' follow
  141. /tmp/mbelib/build/libmbe.a(imbe7200x4400.c.o): In function `mbe_decodeImbe4400Parms':
  142. imbe7200x4400.c:(.text+0x9de): undefined reference to `powf'
  143. imbe7200x4400.c:(.text+0xb01): undefined reference to `cosf'
  144. imbe7200x4400.c:(.text+0xd39): undefined reference to `powf'
  145. imbe7200x4400.c:(.text+0xf24): undefined reference to `cosf'
  146. imbe7200x4400.c:(.text+0x13b6): undefined reference to `powf'
  147. /tmp/mbelib/build/libmbe.a(ambe3600x2250.c.o): In function `mbe_decodeAmbe2250Parms':
  148. ambe3600x2250.c:(.text+0x598): undefined reference to `sqrtf'
  149. ambe3600x2250.c:(.text+0xafc): undefined reference to `cosf'
  150. ambe3600x2250.c:(.text+0x11ca): undefined reference to `cosf'
  151. ambe3600x2250.c:(.text+0x15a8): undefined reference to `log'
  152. ambe3600x2250.c:(.text+0x173f): undefined reference to `exp'
  153. ambe3600x2250.c:(.text+0x179f): undefined reference to `exp'
  154. collect2: error: ld returned 1 exit status
  155. Makefile:106: recipe for target 'dsd' failed
  156. make: *** [dsd] Error 1
  157. tim@tim-All-Series:/tmp/dsd$ ls
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement