Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.13 KB | None | 0 0
  1. ==> Starting build()...
  2. cc bin2c.c -o bin2c
  3. luac5.1 -p kernel.lua
  4. ./bin2c kernel < kernel.lua > kernel.h
  5. luac5.1 -p userlib.lua
  6. ./bin2c userlib < userlib.lua > userlib.h
  7. luac5.1 -p module_json.lua
  8. ./bin2c module_json < module_json.lua > module_json.h
  9. cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -DVERSION='"1.0pre4.ac815b"' -I/usr/include/lua5.1 -I/usr/include/freetype2/ -I/usr/include/ffmpeg -std=c99 -Wall -D_FORTIFY_SOURCE=2 -c -o main.o main.c
  10. In file included from /usr/include/strings.h:26:0,
  11. from main.c:5:
  12. /usr/include/features.h:148:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  13. # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE"
  14. ^
  15. cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -DVERSION='"1.0pre4.ac815b"' -I/usr/include/lua5.1 -I/usr/include/freetype2/ -I/usr/include/ffmpeg -std=c99 -Wall -D_FORTIFY_SOURCE=2 -c -o image.o image.c
  16. cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -DVERSION='"1.0pre4.ac815b"' -I/usr/include/lua5.1 -I/usr/include/freetype2/ -I/usr/include/ffmpeg -std=c99 -Wall -D_FORTIFY_SOURCE=2 -c -o font.o font.c
  17. cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -DVERSION='"1.0pre4.ac815b"' -I/usr/include/lua5.1 -I/usr/include/freetype2/ -I/usr/include/ffmpeg -std=c99 -Wall -D_FORTIFY_SOURCE=2 -c -o video.o video.c
  18. video.c: In function ‘video_open’:
  19. video.c:81:21: error: ‘PIX_FMT_RGB24’ undeclared (first use in this function)
  20. video->format = PIX_FMT_RGB24;
  21. ^
  22. video.c:81:21: note: each undeclared identifier is reported only once for each function it appears in
  23. video.c:146:24: warning: implicit declaration of function ‘avcodec_alloc_frame’ [-Wimplicit-function-declaration]
  24. video->raw_frame = avcodec_alloc_frame();
  25. ^
  26. video.c:146:22: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
  27. video->raw_frame = avcodec_alloc_frame();
  28. ^
  29. video.c:147:25: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
  30. video->scaled_frame = avcodec_alloc_frame();
  31. ^
  32. video.c:155:5: warning: ‘avpicture_get_size’ is deprecated [-Wdeprecated-declarations]
  33. video->buffer = av_malloc(avpicture_get_size(
  34. ^
  35. In file included from video.c:35:0:
  36. /usr/include/libavcodec/avcodec.h:4898:5: note: declared here
  37. int avpicture_get_size(enum AVPixelFormat pix_fmt, int width, int height);
  38. ^
  39. video.c:162:5: warning: ‘avpicture_fill’ is deprecated [-Wdeprecated-declarations]
  40. avpicture_fill(
  41. ^
  42. In file included from video.c:35:0:
  43. /usr/include/libavcodec/avcodec.h:4883:5: note: declared here
  44. int avpicture_fill(AVPicture *picture, const uint8_t *ptr,
  45. ^
  46. video.c: In function ‘video_next_frame’:
  47. video.c:206:9: warning: ‘av_free_packet’ is deprecated [-Wdeprecated-declarations]
  48. av_free_packet(&packet);
  49. ^
  50. In file included from video.c:35:0:
  51. /usr/include/libavcodec/avcodec.h:4040:6: note: declared here
  52. void av_free_packet(AVPacket *pkt);
  53. ^
  54. video.c:213:9: warning: ‘av_free_packet’ is deprecated [-Wdeprecated-declarations]
  55. av_free_packet(&packet);
  56. ^
  57. In file included from video.c:35:0:
  58. /usr/include/libavcodec/avcodec.h:4040:6: note: declared here
  59. void av_free_packet(AVPacket *pkt);
  60. ^
  61. video.c:224:9: warning: ‘av_free_packet’ is deprecated [-Wdeprecated-declarations]
  62. av_free_packet(&packet);
  63. ^
  64. In file included from video.c:35:0:
  65. /usr/include/libavcodec/avcodec.h:4040:6: note: declared here
  66. void av_free_packet(AVPacket *pkt);
  67. ^
  68. video.c:254:5: warning: ‘av_free_packet’ is deprecated [-Wdeprecated-declarations]
  69. av_free_packet(&packet);
  70. ^
  71. In file included from video.c:35:0:
  72. /usr/include/libavcodec/avcodec.h:4040:6: note: declared here
  73. void av_free_packet(AVPacket *pkt);
  74. ^
  75. <builtin>: recipe for target 'video.o' failed
  76. make: *** [video.o] Error 1
  77. ==> ERROR: A failure occurred in build().
  78. Aborting...
  79. The build failed.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement