Advertisement
NecroBoy

Nginx + FFmpeg

Oct 31st, 2017
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. cc -c -pipe -O -W -Wall -Wpointer-arith -Wno-unused -Werror -g -I../nginx-rtmp-module-master -I src/core -I src/event -I src/event/modules -I src/os/unix -I objs \
  2. -o objs/src/core/ngx_murmurhash.o \
  3. src/core/ngx_murmurhash.c
  4. src/core/ngx_murmurhash.c: In function ‘ngx_murmur_hash2’:
  5. src/core/ngx_murmurhash.c:37:11: error: this statement may fall through [-Werror=implicit-fallthrough=]
  6. h ^= data[2] << 16;
  7. ~~^~~~~~~~~~~~~~~~
  8. src/core/ngx_murmurhash.c:38:5: note: here
  9. case 2:
  10. ^~~~
  11. src/core/ngx_murmurhash.c:39:11: error: this statement may fall through [-Werror=implicit-fallthrough=]
  12. h ^= data[1] << 8;
  13. ~~^~~~~~~~~~~~~~~
  14. src/core/ngx_murmurhash.c:40:5: note: here
  15. case 1:
  16. ^~~~
  17. cc1: all warnings being treated as errors
  18. objs/Makefile:524: recipe for target 'objs/src/core/ngx_murmurhash.o' failed
  19. make[1]: *** [objs/src/core/ngx_murmurhash.o] Error 1
  20. make[1]: Leaving directory '/home/user/nginx/nginx-1.9.9'
  21. Makefile:8: recipe for target 'build' failed
  22. make: *** [build] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement