Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. cd /home/aler/crypto/eos/eos/build/libraries/fc && /usr/bin/clang++ -DHAS_BZIP2 -DHAS_ZLIB -I/home/aler/crypto/eos/eos/libraries/fc/include -I/usr/local/include -I/home/aler/crypto/eos/eos/libraries/fc/vendor/websocketpp -I/home/aler/crypto/eos/eos/libraries/fc -I/home/aler/crypto/eos/eos/libraries/fc/vendor/boost_1.51/include -I/home/aler/crypto/eos/eos/libraries/fc/vendor/cyoencode-1.0.2/src -Wall -Wno-invalid-partial-specialization -DWEBSOCKETPP_STRICT_MASKING -DBOOST_ASIO_HAS_STD_CHRONO -std=gnu++1z -o CMakeFiles/fc.dir/src/uint128.cpp.o -c /home/aler/crypto/eos/eos/libraries/fc/src/uint128.cpp
  2. In file included from /home/aler/crypto/eos/eos/libraries/fc/src/uint128.cpp:1:
  3. /home/aler/crypto/eos/eos/libraries/fc/include/fc/uint128.hpp:35:34: error: __int128 is not supported on this target
  4. explicit uint128( unsigned __int128 i ):hi( i >> 64 ), lo(i){ }
  5. ^
  6. /home/aler/crypto/eos/eos/libraries/fc/include/fc/uint128.hpp:40:34: error: __int128 is not supported on this target
  7. explicit operator unsigned __int128()const {
  8. ^
  9. /home/aler/crypto/eos/eos/libraries/fc/include/fc/uint128.hpp:41:19: error: __int128 is not supported on this target
  10. unsigned __int128 result(hi);
  11. ^
  12. /home/aler/crypto/eos/eos/libraries/fc/include/fc/uint128.hpp:132:35: error: __int128 is not supported on this target
  13. void to_variant( const unsigned __int128& var, variant& vo );
  14. ^
  15. /home/aler/crypto/eos/eos/libraries/fc/include/fc/uint128.hpp:133:52: error: __int128 is not supported on this target
  16. void from_variant( const variant& var, unsigned __int128& vo );
  17. ^
  18. /home/aler/crypto/eos/eos/libraries/fc/src/uint128.cpp:379:36: error: __int128 is not supported on this target
  19. void to_variant( const unsigned __int128& var, variant& vo ) { to_variant( *((uint128*)var), vo); }
  20. ^
  21. /home/aler/crypto/eos/eos/libraries/fc/src/uint128.cpp:380:53: error: __int128 is not supported on this target
  22. void from_variant( const variant& var, unsigned __int128& vo ) { from_variant( var, *((uint128*)&vo)); }
  23. ^
  24. 7 errors generated.
  25. libraries/fc/CMakeFiles/fc.dir/build.make:62: recipe for target 'libraries/fc/CMakeFiles/fc.dir/src/uint128.cpp.o' failed
  26. make[2]: *** [libraries/fc/CMakeFiles/fc.dir/src/uint128.cpp.o] Error 1
  27. make[2]: Leaving directory '/home/aler/crypto/eos/eos/build'
  28. CMakeFiles/Makefile2:378: recipe for target 'libraries/fc/CMakeFiles/fc.dir/all' failed
  29. make[1]: *** [libraries/fc/CMakeFiles/fc.dir/all] Error 2
  30. make[1]: Leaving directory '/home/aler/crypto/eos/eos/build'
  31. Makefile:129: recipe for target 'all' failed
  32. make: *** [all] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement