Advertisement
marquessbr

animata build 'scons' console resut

Oct 11th, 2016
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.77 KB | None | 0 0
  1. root@localhost [/home/xuser/opt/animata] # scons
  2. scons: Reading SConscript files ...
  3.  
  4. scons: warning: BuildDir() and the build_dir keyword have been deprecated;
  5.     use VariantDir() and the variant_dir keyword instead.
  6. File "/home/armando/opt/animata/SConstruct", line 17, in <module>
  7. Checking for C++ library m... (cached) yes
  8. Checking for C++ library pthread... (cached) yes
  9. Checking for C++ library fltk... (cached) yes
  10. Checking for C++ library X11... (cached) yes
  11. Checking for C++ library GL... (cached) yes
  12. Checking for C++ library GLU... (cached) yes
  13. scons: done reading SConscript files.
  14. scons: Building targets ...
  15. g++ -o build/Bone.o -c -Wall -Wno-unknown-pragmas -Wno-long-long -pedantic -Wno-format -DTIXML_USE_STL -DOSC_HOST_LITTLE_ENDIAN -DANIMATA_MAJOR_VERSION=0 -DANIMATA_MINOR_VERSION=003 -Wno-variadic-macros -ggdb2 -O0 -DDEBUG=1 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_THREAD_SAFE -D_REENTRANT -I/usr/include -Ibuild/libs -Isrc/libs -Ibuild/libs/tinyxml -Isrc/libs/tinyxml -Ibuild/libs/oscpack -Isrc/libs/oscpack -I/usr/include/freetype2 src/Bone.cpp
  16. In file included from src/Face.h:28:0,
  17.                  from src/Mesh.h:30,
  18.                  from src/animata.h:45,
  19.                  from src/Bone.cpp:30:
  20. src/Texture.h:73:69: error: conflicting declaration 'unsigned char* d'
  21.    Texture(const char *filename, int w, int h, int d, unsigned char* d, int reuseResource = 0);
  22.                                                                      ^
  23. src/Texture.h:73:51: error: 'd' has a previous declaration as 'int d'
  24.    Texture(const char *filename, int w, int h, int d, unsigned char* d, int reuseResource = 0);
  25.                                                    ^
  26. In file included from src/Mesh.h:33:0,
  27.                  from src/animata.h:45,
  28.                  from src/Bone.cpp:30:
  29. src/Drawable.h:28:7: error: using typedef-name 'Drawable' after 'class'
  30.  class Drawable
  31.        ^
  32. In file included from /usr/include/FL/Xutf8.h:24:0,
  33.                  from /usr/include/FL/fl_utf8.h:64,
  34.                  from /usr/include/FL/Fl.H:30,
  35.                  from src/animata.h:42,
  36.                  from src/Bone.cpp:30:
  37. /usr/include/X11/X.h:97:13: note: 'Drawable' has a previous declaration here
  38.  typedef XID Drawable;
  39.              ^
  40. In file included from src/animata.h:45:0,
  41.                  from src/Bone.cpp:30:
  42. src/Mesh.h:37:1: error: expected class-name before '{' token
  43.  {
  44.  ^
  45. In file included from src/animata.h:46:0,
  46.                  from src/Bone.cpp:30:
  47. src/Skeleton.h:36:1: error: expected class-name before '{' token
  48.  {
  49.  ^
  50. In file included from src/TextureManager.h:29:0,
  51.                  from src/Selection.h:38,
  52.                  from src/animata.h:47,
  53.                  from src/Bone.cpp:30:
  54. src/ImageBox.h:40:17: error: 'PATH_MAX' was not declared in this scope
  55.    char filename[PATH_MAX+1];
  56.                  ^
  57. src/ImageBox.h: In member function 'char* ImageBox::getFilename()':
  58. src/ImageBox.h:52:39: error: 'filename' was not declared in this scope
  59.    inline char *getFilename() { return filename; }
  60.                                        ^
  61. In file included from src/Bone.cpp:30:0:
  62. src/animata.h: At global scope:
  63. src/animata.h:205:17: error: 'PATH_MAX' was not declared in this scope
  64.    char filename[PATH_MAX+1]; ///< filename of scene
  65.                  ^
  66. src/animata.h: In member function 'const char* AnimataWindow::getFilename()':
  67. src/animata.h:214:49: error: 'filename' was not declared in this scope
  68.    inline const char *getFilename(void) { return filename; }
  69.                                                  ^
  70. In file included from src/animataUI.h:35:0,
  71.                  from src/Bone.cpp:31:
  72. src/libs/FLU/Flu_Tree_Browser.h: At global scope:
  73. src/libs/FLU/Flu_Tree_Browser.h:222:15: error: 'void Flu_Tree_Browser::color(unsigned int)' cannot be overloaded
  74.    inline void color( unsigned c )
  75.                ^
  76. src/libs/FLU/Flu_Tree_Browser.h:218:15: error: with 'void Flu_Tree_Browser::color(Fl_Color)'
  77.    inline void color( Fl_Color c )
  78.                ^
  79. src/libs/FLU/Flu_Tree_Browser.h:498:15: error: 'void Flu_Tree_Browser::selection_color(unsigned int)' cannot be overloaded
  80.    inline void selection_color( unsigned c )
  81.                ^
  82. src/libs/FLU/Flu_Tree_Browser.h:494:15: error: with 'void Flu_Tree_Browser::selection_color(Fl_Color)'
  83.    inline void selection_color( Fl_Color c )
  84.                ^
  85. src/libs/FLU/Flu_Tree_Browser.h: In member function 'unsigned int Flu_Tree_Browser::Node::remove(const char*)':
  86. src/libs/FLU/Flu_Tree_Browser.h:1081:64: error: cast from 'Flu_Tree_Browser::Node*' to 'unsigned int' loses precision [-fpermissive]
  87.   { return( (unsigned int)modify( fullpath, REMOVE, tree->rdata ) ); }
  88.                                                                 ^
  89. scons: *** [build/Bone.o] Error 1
  90. scons: building terminated because of errors.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement