Guest User

Untitled

a guest
Aug 31st, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 8.82 KB | None | 0 0
  1. $ make -j4
  2.   CXX      src/core/libvapoursynth_la-lutfilters.lo
  3.   CC       src/core/libvapoursynth_la-mergefilters.lo
  4.   CC       src/core/libvapoursynth_la-reorderfilters.lo
  5.   CXX      src/core/libvapoursynth_la-settings.lo
  6. src/core/mergefilters.c: In function ‘maskedMergeGetFrame’:
  7. src/core/mergefilters.c:497:94: warning: signed and unsigned type in conditional expression [-Wsign-compare]
  8.                      func(srcp1, srcp2, maskp, dstp, depth, yuvhandling ? (1U << (depth - 1)) : offset1, w);
  9.                                                                                               ^
  10.   CC       src/core/libvapoursynth_la-simplefilters.lo
  11.   CXX      src/core/libvapoursynth_la-textfilter.lo
  12.   CXX      src/core/libvapoursynth_la-vsapi.lo
  13.   CXX      src/core/libvapoursynth_la-vscore.lo
  14.   CXX      src/core/libvapoursynth_la-vslog.lo
  15.   CXX      src/core/libvapoursynth_la-vsresize.lo
  16. In file included from src/core/vscore.cpp:21:0:
  17. src/core/vscore.h: In constructor ‘VSCore::VSCore(int)’:
  18. src/core/vscore.h:655:16: warning: ‘VSCore::memory’ will be initialized after [-Wreorder]
  19.      MemoryUse *memory;
  20.                 ^~~~~~
  21. src/core/vscore.h:643:21: warning:   ‘std::atomic_int VSCore::cpuLevel’ [-Wreorder]
  22.      std::atomic_int cpuLevel;
  23.                      ^~~~~~~~
  24. src/core/vscore.cpp:1232:1: warning:   when initialized here [-Wreorder]
  25.  VSCore::VSCore(int threads) :
  26.  ^~~~~~
  27.   CXX      src/core/libvapoursynth_la-vsthreadpool.lo
  28. make: *** No rule to make target 'src/core/kerne/x86/generic_avx2.cpp', needed by 'src/core/kerne/x86/libvapoursynth_avx2_la-generic_avx2.lo'.  Stop.
  29. make: *** Waiting for unfinished jobs....
  30.   CXX      src/core/libexprfilter_la-exprfilter.lo
  31. src/core/exprfilter.cpp: In member function ‘void {anonymous}::ExprCompiler::addInstruction(const {anonymous}::ExprInstruction&)’:
  32. src/core/exprfilter.cpp:198:16: warning: enumeration value ‘MUX’ not handled in switch [-Wswitch]
  33.          switch (insn.op.type) {
  34.                 ^
  35. src/core/exprfilter.cpp:198:16: warning: enumeration value ‘DUP’ not handled in switch [-Wswitch]
  36. src/core/exprfilter.cpp:198:16: warning: enumeration value ‘SWAP’ not handled in switch [-Wswitch]
  37. src/core/exprfilter.cpp: At global scope:
  38. src/core/exprfilter.cpp:235:19: error: using typedef-name ‘{anonymous}::ExprCompiler128::jit’ after ‘struct’
  39.      friend struct jit;
  40.                    ^~~
  41. src/core/exprfilter.cpp:234:92: note: ‘{anonymous}::ExprCompiler128::jit’ has a previous declaration here
  42.      typedef jitasm::function<void, ExprCompiler128, uint8_t *, const intptr_t *, intptr_t> jit;
  43.                                                                                             ^~~
  44. src/core/exprfilter.cpp:235:5: error: friend declaration does not name a class or function
  45.      friend struct jit;
  46.      ^~~~~~
  47. src/core/exprfilter.cpp: In member function ‘virtual void (* {anonymous}::ExprCompiler128::getCode())(void*, intptr_t*, intptr_t)’:
  48. src/core/exprfilter.cpp:1003:39: error: ‘ExprObj’ was not declared in this scope
  49.              void *ptr = mmap(nullptr, ExprObj.GetCodeSize(), PROT_READ | PROT_WRITE | PROT_EXEC, MAP_ANON | MAP_PRIVATE, 0, 0);
  50.                                        ^~~~~~~
  51. src/core/exprfilter.cpp:1003:39: note: suggested alternative: ‘ExprOp’
  52.              void *ptr = mmap(nullptr, ExprObj.GetCodeSize(), PROT_READ | PROT_WRITE | PROT_EXEC, MAP_ANON | MAP_PRIVATE, 0, 0);
  53.                                        ^~~~~~~
  54.                                        ExprOp
  55. src/core/exprfilter.cpp: At global scope:
  56. src/core/exprfilter.cpp:1019:19: error: using typedef-name ‘{anonymous}::ExprCompiler256::jit’ after ‘struct’
  57.      friend struct jit;
  58.                    ^~~
  59. src/core/exprfilter.cpp:1018:92: note: ‘{anonymous}::ExprCompiler256::jit’ has a previous declaration here
  60.      typedef jitasm::function<void, ExprCompiler256, uint8_t *, const intptr_t *, intptr_t> jit;
  61.                                                                                             ^~~
  62. src/core/exprfilter.cpp:1019:5: error: friend declaration does not name a class or function
  63.      friend struct jit;
  64.      ^~~~~~
  65. src/core/exprfilter.cpp: In member function ‘virtual void (* {anonymous}::ExprCompiler256::getCode())(void*, intptr_t*, intptr_t)’:
  66. src/core/exprfilter.cpp:1578:39: error: ‘ExprObj’ was not declared in this scope
  67.              void *ptr = mmap(nullptr, ExprObj.GetCodeSize(), PROT_READ | PROT_WRITE | PROT_EXEC, MAP_ANON | MAP_PRIVATE, 0, 0);
  68.                                        ^~~~~~~
  69. src/core/exprfilter.cpp:1578:39: note: suggested alternative: ‘ExprOp’
  70.              void *ptr = mmap(nullptr, ExprObj.GetCodeSize(), PROT_READ | PROT_WRITE | PROT_EXEC, MAP_ANON | MAP_PRIVATE, 0, 0);
  71.                                        ^~~~~~~
  72.                                        ExprOp
  73. src/core/exprfilter.cpp: In function ‘std::unique_ptr<{anonymous}::ExprCompiler> {anonymous}::make_compiler(int, int)’:
  74. src/core/exprfilter.cpp:1591:21: error: ‘make_unique’ is not a member of ‘std’
  75.          return std::make_unique<ExprCompiler256>(numInputs);
  76.                      ^~~~~~~~~~~
  77. src/core/exprfilter.cpp:1591:21: note: suggested alternative: ‘__unique’
  78.          return std::make_unique<ExprCompiler256>(numInputs);
  79.                      ^~~~~~~~~~~
  80.                      __unique
  81. src/core/exprfilter.cpp:1591:48: error: expected primary-expression before ‘>’ token
  82.          return std::make_unique<ExprCompiler256>(numInputs);
  83.                                                 ^
  84. src/core/exprfilter.cpp:1593:21: error: ‘make_unique’ is not a member of ‘std’
  85.          return std::make_unique<ExprCompiler128>(numInputs);
  86.                      ^~~~~~~~~~~
  87. src/core/exprfilter.cpp:1593:21: note: suggested alternative: ‘__unique’
  88.          return std::make_unique<ExprCompiler128>(numInputs);
  89.                      ^~~~~~~~~~~
  90.                      __unique
  91. src/core/exprfilter.cpp:1593:48: error: expected primary-expression before ‘>’ token
  92.          return std::make_unique<ExprCompiler128>(numInputs);
  93.                                                 ^
  94. src/core/exprfilter.cpp: In member function ‘void {anonymous}::ExprInterpreter::eval(const uint8_t* const*, uint8_t*, int)’:
  95. src/core/exprfilter.cpp:1716:61: warning: suggest parentheses around comparison in operand of ‘!=’ [-Wparentheses]
  96.                  registers[insn.dst] = (registers[insn.src1] > 0.0f != registers[insn.src2] > 0.0f) ? 1.0f : 0.0f;
  97. src/core/exprfilter.cpp:1616:20: warning: enumeration value ‘MEM_STORE_F16’ not handled in switch [-Wswitch]
  98.              switch (insn.op.type) {
  99.                     ^
  100. src/core/exprfilter.cpp:1616:20: warning: enumeration value ‘MUX’ not handled in switch [-Wswitch]
  101. src/core/exprfilter.cpp:1616:20: warning: enumeration value ‘DUP’ not handled in switch [-Wswitch]
  102. src/core/exprfilter.cpp:1616:20: warning: enumeration value ‘SWAP’ not handled in switch [-Wswitch]
  103. src/core/exprfilter.cpp: In function ‘float {anonymous}::evalConstantExpr(const {anonymous}::ExpressionTreeNode&)’:
  104. src/core/exprfilter.cpp:2096:63: warning: suggest parentheses around comparison in operand of ‘!=’ [-Wparentheses]
  105.      case ExprOpType::XOR: return evalConstantExpr(*node.left) > 0.0f != evalConstantExpr(*node.right) > 0.0f ? 1.0f : 0.0f;
  106.                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~
  107. src/core/exprfilter.cpp: In member function ‘void {anonymous}::ExponentMap::combineConstants(const ValueIndex&)’:
  108. src/core/exprfilter.cpp:2225:31: error: ‘powf’ is not a member of ‘std’
  109.                  coeff *= std::powf(node->op.imm.f, it->second);
  110.                                ^~~~
  111. src/core/exprfilter.cpp:2225:31: note: suggested alternative: ‘pow’
  112.                  coeff *= std::powf(node->op.imm.f, it->second);
  113.                                ^~~~
  114.                                pow
  115. src/core/exprfilter.cpp: In lambda function:
  116. src/core/exprfilter.cpp:2321:87: error: could not convert ‘memOpCodes’ from ‘const std::initializer_list<const {anonymous}::ExprOpType>’ to ‘std::initializer_list<{anonymous}::ExprOpType>
  117.              int lhsCategory = isConstant(*lhsNode) ? 2 : isOpCode(*lhsNode, memOpCodes) ? 1 : 0;
  118.                                                                                        ^
  119. src/core/exprfilter.cpp:2322:87: error: could not convert ‘memOpCodes’ from ‘const std::initializer_list<const {anonymous}::ExprOpType>’ to ‘std::initializer_list<{anonymous}::ExprOpType>
  120.              int rhsCategory = isConstant(*rhsNode) ? 2 : isOpCode(*rhsNode, memOpCodes) ? 1 : 0;
  121.                                                                                        ^
  122. Makefile:1573: recipe for target 'src/core/libexprfilter_la-exprfilter.lo' failed
  123. make: *** [src/core/libexprfilter_la-exprfilter.lo] Error 1
Add Comment
Please, Sign In to add comment