Monsterray

Untitled

Apr 27th, 2021 (edited)
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.15 KB | None | 0 0
  1. $ make
  2. mkdir -p ./bin
  3. cd lib/cglm && cmake . -DCGLM_STATIC=ON && make
  4. -- Configuring done
  5. -- Generating done
  6. -- Build files have been written to: /Users/monsterray/Downloads/minecraft-weekend-master/minecraft-weekend/lib/cglm
  7. [100%] Built target cglm
  8. cd lib/glad && clang -o src/glad.o -Iinclude -c src/glad.c
  9. cd lib/glfw && cmake . && make
  10. -- Using Cocoa for window creation
  11. -- Configuring done
  12. -- Generating done
  13. -- Build files have been written to: /Users/monsterray/Downloads/minecraft-weekend-master/minecraft-weekend/lib/glfw
  14. [ 14%] Built target glfw
  15. [ 16%] Built target wave
  16. [ 19%] Built target windows
  17. [ 21%] Built target triangle-opengl
  18. [ 24%] Built target sharing
  19. [ 29%] Built target particles
  20. [ 32%] Built target heightmap
  21. [ 34%] Built target splitview
  22. [ 36%] Built target offscreen
  23. [ 39%] Built target gears
  24. [ 41%] Built target boing
  25. [ 44%] Built target triangle-vulkan
  26. [ 48%] Built target clipboard
  27. [ 51%] Built target title
  28. [ 54%] Built target timeout
  29. [ 57%] Built target threads
  30. [ 59%] Built target gamma
  31. [ 62%] Built target tearing
  32. [ 66%] Built target iconify
  33. [ 69%] Built target joysticks
  34. [ 72%] Built target window
  35. [ 75%] Built target inputlag
  36. [ 78%] Built target empty
  37. [ 80%] Built target reopen
  38. [ 84%] Built target msaa
  39. [ 86%] Built target cursor
  40. [ 90%] Built target glfwinfo
  41. [ 93%] Built target monitors
  42. [ 97%] Built target events
  43. [ 99%] Built target icon
  44. [100%] Generating HTML documentation
  45. warning: ignoring unsupported tag `OUTPUT_TEXT_DIRECTION  =' at line 102, file Doxyfile
  46. warning: ignoring unsupported tag `JAVADOC_BANNER         =' at line 198, file Doxyfile
  47. warning: ignoring unsupported tag `OPTIMIZE_OUTPUT_SLICE  =' at line 301, file Doxyfile
  48. warning: ignoring unsupported tag `EXTRACT_PRIV_VIRTUAL   =' at line 477, file Doxyfile
  49. warning: ignoring unsupported tag `HTML_FORMULA_FORMAT    =' at line 1517, file Doxyfile
  50. warning: ignoring unsupported tag `FORMULA_MACROFILE      =' at line 1543, file Doxyfile
  51. warning: ignoring unsupported tag `LATEX_MAKEINDEX_CMD    =' at line 1727, file Doxyfile
  52. warning: ignoring unsupported tag `LATEX_EMOJI_DIRECTORY  =' at line 1869, file Doxyfile
  53. warning: ignoring unsupported tag `XML_NS_MEMB_FILE_SCOPE =' at line 2013, file Doxyfile
  54. [100%] Built target docs
  55. cd lib/noise && make
  56. ar rcs libnoise.a noise1234.o
  57. clang -o src/ui/hotbar.o -c src/ui/hotbar.c -std=c11 -O3 -g -Wall -Wextra -Wpedantic -Wstrict-aliasing -Wno-pointer-arith -Wno-newline-eof -Wno-unused-parameter -Wno-gnu-statement-expression -Wno-gnu-compound-literal-initializer -Wno-gnu-zero-variadic-macro-arguments -Ilib/cglm/include -Ilib/glad/include -Ilib/glfw/include -Ilib/stb -Ilib/noise -fbracket-depth=1024
  58. src/ui/hotbar.c:73:13: error: too many arguments provided to function-like macro
  59.      invocation
  60.            STONE,
  61.            ^
  62. /usr/include/secure/_string.h:64:9: note: macro 'memcpy' defined here
  63. #define memcpy(dest, src, len)                                  \
  64.        ^
  65. src/ui/hotbar.c:70:5: note: parentheses are required around macro argument
  66.      containing braced initializer list
  67.    memcpy(self->values, (enum BlockId[]) {
  68.    ^
  69. 1 error generated.
  70. make: *** [src/ui/hotbar.o] Error 1
Add Comment
Please, Sign In to add comment