Advertisement
DaVince

TurboSphere 014 compile fail 2

Nov 6th, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.72 KB | None | 0 0
  1. vincent@vincent-K93SV:~/src/ts014$ make
  2. test -d bin/Release || mkdir -p bin/Release
  3. test -d obj/Release || mkdir -p obj/Release
  4. g++ -Wall -O3 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -O2 -c scriptfs.cpp -o obj/Release/scriptfs.o
  5. g++ -Wall -O3 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -O2 -c openscript.cpp -o obj/Release/openscript.o
  6. g++ -Wall -O3 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -O2 -c opengame.cpp -o obj/Release/opengame.o
  7. g++ -Wall -O3 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -O2 -c mouse.cpp -o obj/Release/mouse.o
  8. g++ -Wall -O3 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -O2 -c mapengine.cpp -o obj/Release/mapengine.o
  9. mapengine.cpp: In function ‘TS_Map LoadMap(std::string)’:
  10. mapengine.cpp:272:73: warning: narrowing conversion of ‘(((int)tilewidth[0]) * t)’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  11. mapengine.cpp:272:73: warning: narrowing conversion of ‘tilesetSB.std::vector<_Tp, _Alloc>::operator[]<SDL_Surface*, std::allocator<SDL_Surface*> >(((std::vector<SDL_Surface*>::size_type)t))->SDL_Surface::w’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  12. mapengine.cpp:272:73: warning: narrowing conversion of ‘tilesetSB.std::vector<_Tp, _Alloc>::operator[]<SDL_Surface*, std::allocator<SDL_Surface*> >(((std::vector<SDL_Surface*>::size_type)t))->SDL_Surface::h’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  13. mapengine.cpp:273:74: warning: narrowing conversion of ‘(((int)tilewidth[0]) * t)’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  14. mapengine.cpp:273:74: warning: narrowing conversion of ‘tilesetSB.std::vector<_Tp, _Alloc>::operator[]<SDL_Surface*, std::allocator<SDL_Surface*> >(((std::vector<SDL_Surface*>::size_type)t))->SDL_Surface::w’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  15. mapengine.cpp:273:74: warning: narrowing conversion of ‘tilesetSB.std::vector<_Tp, _Alloc>::operator[]<SDL_Surface*, std::allocator<SDL_Surface*> >(((std::vector<SDL_Surface*>::size_type)t))->SDL_Surface::h’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  16. mapengine.cpp:79:6: warning: variable ‘blocksread’ set but not used [-Wunused-but-set-variable]
  17. mapengine.cpp: In function ‘v8::Handle<v8::Value> MapEngine(const v8::Arguments&)’:
  18. mapengine.cpp:379:127: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  19. mapengine.cpp:380:126: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  20. mapengine.cpp:342:14: warning: unused variable ‘currentTileSet’ [-Wunused-variable]
  21. g++ -Wall -O3 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -O2 -c SDL_V8.cpp -o obj/Release/SDL_V8.o
  22. SDL_V8.cpp:36:57: warning: narrowing conversion of ‘SCREENWIDTH’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  23. SDL_V8.cpp:36:57: warning: narrowing conversion of ‘SCREENHEIGHT’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  24. g++ -Wall -O3 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -O2 -c key.cpp -o obj/Release/key.o
  25. key.cpp: In function ‘v8::Handle<v8::Value> IsAnyKeyPressed(const v8::Arguments&)’:
  26. key.cpp:46:7: warning: unused variable ‘found’ [-Wunused-variable]
  27. g++ -Wall -O3 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -O2 -c graphic.cpp -o obj/Release/graphic.o
  28. graphic.cpp: In function ‘v8::Handle<v8::Value> TS_Point(const v8::Arguments&)’:
  29. graphic.cpp:133:32: warning: narrowing conversion of ‘x’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  30. graphic.cpp:133:32: warning: narrowing conversion of ‘y’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  31. graphic.cpp: In function ‘void TS_Rectangle(int, int, int, int, Uint8, Uint8, Uint8, Uint8)’:
  32. graphic.cpp:142:25: warning: narrowing conversion of ‘x’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  33. graphic.cpp:142:25: warning: narrowing conversion of ‘y’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  34. graphic.cpp:142:25: warning: narrowing conversion of ‘w’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  35. graphic.cpp:142:25: warning: narrowing conversion of ‘h’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  36. graphic.cpp:143:28: warning: narrowing conversion of ‘w’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  37. graphic.cpp:143:28: warning: narrowing conversion of ‘h’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  38. graphic.cpp: In function ‘void TS_FilledCircle(int, int, int, Uint8, Uint8, Uint8, Uint8)’:
  39. graphic.cpp:157:41: warning: narrowing conversion of ‘(x - rad)’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  40. graphic.cpp:157:41: warning: narrowing conversion of ‘(y - rad)’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  41. graphic.cpp:157:41: warning: narrowing conversion of ‘(rad * 2)’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  42. graphic.cpp:157:41: warning: narrowing conversion of ‘(rad * 2)’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  43. graphic.cpp:164:50: warning: narrowing conversion of ‘i’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  44. graphic.cpp:164:50: warning: narrowing conversion of ‘(((rad * 2) - e) + -1)’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  45. graphic.cpp:164:50: warning: narrowing conversion of ‘((rad - i) * 2)’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  46. graphic.cpp:165:40: warning: narrowing conversion of ‘i’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  47. graphic.cpp:165:40: warning: narrowing conversion of ‘e’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  48. graphic.cpp:165:40: warning: narrowing conversion of ‘((rad - i) * 2)’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  49. graphic.cpp: In function ‘void TS_OutlinedCircle(int, int, int, Uint8, Uint8, Uint8, Uint8)’:
  50. graphic.cpp:178:41: warning: narrowing conversion of ‘(x - rad)’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  51. graphic.cpp:178:41: warning: narrowing conversion of ‘(y - rad)’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  52. graphic.cpp:178:41: warning: narrowing conversion of ‘(rad * 2)’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  53. graphic.cpp:178:41: warning: narrowing conversion of ‘(rad * 2)’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  54. graphic.cpp:186:30: warning: narrowing conversion of ‘i’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  55. graphic.cpp:186:30: warning: narrowing conversion of ‘e’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  56. graphic.cpp:187:39: warning: narrowing conversion of ‘i’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  57. graphic.cpp:187:39: warning: narrowing conversion of ‘(((rad * 2) - e) + -1)’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  58. graphic.cpp:188:40: warning: narrowing conversion of ‘(((rad - i) * 2) + i)’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  59. graphic.cpp:188:40: warning: narrowing conversion of ‘e’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  60. graphic.cpp:189:49: warning: narrowing conversion of ‘(((rad - i) * 2) + i)’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  61. graphic.cpp:189:49: warning: narrowing conversion of ‘(((rad * 2) - e) + -1)’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  62. graphic.cpp:203:30: warning: narrowing conversion of ‘i’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  63. graphic.cpp:203:30: warning: narrowing conversion of ‘e’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  64. graphic.cpp:204:39: warning: narrowing conversion of ‘i’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  65. graphic.cpp:204:39: warning: narrowing conversion of ‘(((rad * 2) - e) + -1)’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  66. graphic.cpp:205:40: warning: narrowing conversion of ‘(((rad - i) * 2) + i)’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  67. graphic.cpp:205:40: warning: narrowing conversion of ‘e’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  68. graphic.cpp:206:49: warning: narrowing conversion of ‘(((rad - i) * 2) + i)’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  69. graphic.cpp:206:49: warning: narrowing conversion of ‘(((rad * 2) - e) + -1)’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  70. graphic.cpp: In function ‘void TS_ShowSurface(SDL_Surface*, int, int)’:
  71. graphic.cpp:231:43: warning: narrowing conversion of ‘x’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  72. graphic.cpp:231:43: warning: narrowing conversion of ‘y’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  73. graphic.cpp:231:43: warning: narrowing conversion of ‘image->SDL_Surface::w’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  74. graphic.cpp:231:43: warning: narrowing conversion of ‘image->SDL_Surface::h’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  75. graphic.cpp: In function ‘void TS_ShowSurface_Clear(SDL_Surface*, int, int)’:
  76. graphic.cpp:238:43: warning: narrowing conversion of ‘x’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  77. graphic.cpp:238:43: warning: narrowing conversion of ‘y’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  78. graphic.cpp:238:43: warning: narrowing conversion of ‘image->SDL_Surface::w’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  79. graphic.cpp:238:43: warning: narrowing conversion of ‘image->SDL_Surface::h’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  80. graphic.cpp: In function ‘v8::Handle<v8::Value> TS_surfaceZoomBlit(const v8::Arguments&)’:
  81. graphic.cpp:259:51: warning: narrowing conversion of ‘(& args)->v8::Arguments::operator[](0).v8::Local<v8::Value>::<anonymous>.v8::Handle<T>::operator-><v8::Value>()->v8::Value::NumberValue()’ from ‘double’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  82. graphic.cpp:259:86: warning: narrowing conversion of ‘(& args)->v8::Arguments::operator[](1).v8::Local<v8::Value>::<anonymous>.v8::Handle<T>::operator-><v8::Value>()->v8::Value::NumberValue()’ from ‘double’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  83. graphic.cpp:259:125: warning: narrowing conversion of ‘(surface->SDL_Surface::w * factor)’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  84. graphic.cpp:259:125: warning: narrowing conversion of ‘(surface->SDL_Surface::h * factor)’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  85. graphic.cpp: In function ‘v8::Handle<v8::Value> TS_surfaceStretchBlit(const v8::Arguments&)’:
  86. graphic.cpp:282:51: warning: narrowing conversion of ‘(& args)->v8::Arguments::operator[](0).v8::Local<v8::Value>::<anonymous>.v8::Handle<T>::operator-><v8::Value>()->v8::Value::NumberValue()’ from ‘double’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  87. graphic.cpp:282:86: warning: narrowing conversion of ‘(& args)->v8::Arguments::operator[](1).v8::Local<v8::Value>::<anonymous>.v8::Handle<T>::operator-><v8::Value>()->v8::Value::NumberValue()’ from ‘double’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  88. graphic.cpp:282:105: warning: narrowing conversion of ‘xfactor’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  89. graphic.cpp:282:105: warning: narrowing conversion of ‘yfactor’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  90. graphic.cpp: In function ‘v8::Handle<v8::Value> TS_surfaceZoomBlitSurface(const v8::Arguments&)’:
  91. graphic.cpp:303:51: warning: narrowing conversion of ‘(& args)->v8::Arguments::operator[](0).v8::Local<v8::Value>::<anonymous>.v8::Handle<T>::operator-><v8::Value>()->v8::Value::NumberValue()’ from ‘double’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  92. graphic.cpp:303:86: warning: narrowing conversion of ‘(& args)->v8::Arguments::operator[](1).v8::Local<v8::Value>::<anonymous>.v8::Handle<T>::operator-><v8::Value>()->v8::Value::NumberValue()’ from ‘double’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  93. graphic.cpp:303:125: warning: narrowing conversion of ‘(surface->SDL_Surface::w * factor)’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  94. graphic.cpp:303:125: warning: narrowing conversion of ‘(surface->SDL_Surface::h * factor)’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  95. graphic.cpp: In function ‘v8::Handle<v8::Value> TS_surfaceBlitSurface(const v8::Arguments&)’:
  96. graphic.cpp:348:32: warning: narrowing conversion of ‘w’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  97. graphic.cpp:348:32: warning: narrowing conversion of ‘h’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  98. graphic.cpp:349:32: warning: narrowing conversion of ‘x’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  99. graphic.cpp:349:32: warning: narrowing conversion of ‘y’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  100. graphic.cpp:349:32: warning: narrowing conversion of ‘w’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  101. graphic.cpp:349:32: warning: narrowing conversion of ‘h’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  102. graphic.cpp: In function ‘v8::Handle<v8::Value> TS_surfaceSetPixel(const v8::Arguments&)’:
  103. graphic.cpp:375:29: warning: narrowing conversion of ‘x’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  104. graphic.cpp:375:29: warning: narrowing conversion of ‘y’ from ‘int’ to ‘Sint16 {aka short int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  105. graphic.cpp: In function ‘v8::Handle<v8::Value> TS_CreateSurface(const v8::Arguments&)’:
  106. graphic.cpp:454:29: warning: narrowing conversion of ‘w’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  107. graphic.cpp:454:29: warning: narrowing conversion of ‘h’ from ‘int’ to ‘Uint16 {aka short unsigned int}’ inside { } is ill-formed in C++11 [-Wnarrowing]
  108. In file included from SDL_V8.h:16:0,
  109. from graphic.h:3,
  110. from graphic.cpp:1:
  111. v8.h: In function ‘v8::Handle<v8::Value> TS_LoadSurface(const v8::Arguments&)’:
  112. v8.h:4253:24: warning: ‘surface’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  113. graphic.cpp:393:18: note: ‘surface’ was declared here
  114. In file included from SDL_V8.h:16:0,
  115. from graphic.h:3,
  116. from graphic.cpp:1:
  117. v8.h: In function ‘v8::Handle<v8::Value> TS_CreateSurface(const v8::Arguments&)’:
  118. v8.h:4253:24: warning: ‘surface’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  119. graphic.cpp:433:15: note: ‘surface’ was declared here
  120. g++ -Wall -O3 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -O2 -c font.cpp -o obj/Release/font.o
  121. font.cpp: In constructor ‘TS_TTFFont::TS_TTFFont(const char*)’:
  122. font.cpp:81:13: warning: format not a string literal and no format arguments [-Wformat-security]
  123. In file included from SDL_V8.h:16:0,
  124. from graphic.h:3,
  125. from font.cpp:6:
  126. v8.h: In function ‘v8::Handle<v8::Value> LoadTTFFont(const v8::Arguments&)’:
  127. v8.h:4253:24: warning: ‘font’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  128. font.cpp:96:17: note: ‘font’ was declared here
  129. g++ -Wall -O3 -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -O2 -c engine.cpp -o obj/Release/engine.o
  130. engine.cpp: In function ‘int main(int, char**)’:
  131. engine.cpp:545:22: warning: format not a string literal and no format arguments [-Wformat-security]
  132. g++ -L/usr/lib/i386-linux-gnu -lSDL -ldl -lSDL -lSDL_ttf -lSDL_image -lfreetype -lpthread -s obj/Release/scriptfs.o obj/Release/openscript.o obj/Release/opengame.o obj/Release/mouse.o obj/Release/mapengine.o obj/Release/SDL_V8.o obj/Release/key.o obj/Release/graphic.o obj/Release/font.o obj/Release/engine.o -L/usr/lib/i386-linux-gnu -lSDL -ldl -lSDL -lSDL_ttf -lSDL_image -lfreetype -lpthread /home/vincent/src/ts014/libv8_base.a /home/vincent/src/ts014/libv8_snapshot.a /home/vincent/src/ts014/libpreparser_lib.a /home/vincent/src/ts014/libv8_base.a /home/vincent/src/ts014/libv8_snapshot.a /home/vincent/src/ts014/libpreparser_lib.a -o bin/Release/TurboSphere
  133. obj/Release/scriptfs.o: In function `TS_FileRead(v8::Arguments const&)':
  134. scriptfs.cpp:(.text+0x51d): undefined reference to `v8::Object::CheckedGetInternalField(int)'
  135. obj/Release/font.o: In function `TS_TTFdrawText(v8::Arguments const&)':
  136. font.cpp:(.text+0x34b): undefined reference to `v8::Object::CheckedGetInternalField(int)'
  137. obj/Release/font.o: In function `TS_TTFdrawZoomedText(v8::Arguments const&)':
  138. font.cpp:(.text+0x6a9): undefined reference to `v8::Object::CheckedGetInternalField(int)'
  139. obj/Release/font.o: In function `TS_TTFgetStringWidth(v8::Arguments const&)':
  140. font.cpp:(.text+0x857): undefined reference to `v8::Object::CheckedGetInternalField(int)'
  141. obj/Release/font.o: In function `GetFontname(v8::Local<v8::String>, v8::AccessorInfo const&)':
  142. font.cpp:(.text+0xff2): undefined reference to `v8::Object::CheckedGetInternalField(int)'
  143. obj/Release/font.o:font.cpp:(.text+0x1092): more undefined references to `v8::Object::CheckedGetInternalField(int)' follow
  144. obj/Release/graphic.o: In function `TS_Point(v8::Arguments const&)':
  145. graphic.cpp:(.text+0x18a0): undefined reference to `v8::Object::SlowGetPointerFromInternalField(int)'
  146. obj/Release/graphic.o: In function `TS_surfaceBlit(v8::Arguments const&)':
  147. graphic.cpp:(.text+0x21a1): undefined reference to `v8::Object::CheckedGetInternalField(int)'
  148. obj/Release/graphic.o: In function `TS_surfaceZoomBlitSurface(v8::Arguments const&)':
  149. graphic.cpp:(.text+0x2441): undefined reference to `v8::Object::CheckedGetInternalField(int)'
  150. obj/Release/graphic.o: In function `TS_CreateSurface(v8::Arguments const&)':
  151. graphic.cpp:(.text+0x2cb4): undefined reference to `v8::Object::SlowGetPointerFromInternalField(int)'
  152. obj/Release/graphic.o: In function `GetWidth(v8::Local<v8::String>, v8::AccessorInfo const&)':
  153. graphic.cpp:(.text+0x2de2): undefined reference to `v8::Object::CheckedGetInternalField(int)'
  154. obj/Release/graphic.o: In function `SetWidth(v8::Local<v8::String>, v8::Local<v8::Value>, v8::AccessorInfo const&)':
  155. graphic.cpp:(.text+0x2e6d): undefined reference to `v8::Object::CheckedGetInternalField(int)'
  156. obj/Release/graphic.o: In function `GetHeight(v8::Local<v8::String>, v8::AccessorInfo const&)':
  157. graphic.cpp:(.text+0x2ee2): undefined reference to `v8::Object::CheckedGetInternalField(int)'
  158. obj/Release/graphic.o: In function `SetHeight(v8::Local<v8::String>, v8::Local<v8::Value>, v8::AccessorInfo const&)':
  159. graphic.cpp:(.text+0x2f6d): undefined reference to `v8::Object::CheckedGetInternalField(int)'
  160. obj/Release/graphic.o: In function `GetRed(v8::Local<v8::String>, v8::AccessorInfo const&)':
  161. graphic.cpp:(.text+0x2fe2): undefined reference to `v8::Object::CheckedGetInternalField(int)'
  162. obj/Release/graphic.o:graphic.cpp:(.text+0x306d): more undefined references to `v8::Object::CheckedGetInternalField(int)' follow
  163. collect2: error: ld returned 1 exit status
  164. make: *** [out_release] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement