Advertisement
Krystal_Amaia

fsanitize-output

Jul 13th, 2016
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 64.58 KB | None | 0 0
  1. CLEANING...
  2. rm -f -r build bin/exec
  3. g++ -g -fsanitize=address -I include -c -o build/actor.o src/actor.cpp
  4. g++ -g -fsanitize=address -I include -c -o build/helpers.o src/helpers.cpp
  5. g++ -g -fsanitize=address -I include -c -o build/main.o src/main.cpp
  6. g++ -g -fsanitize=address -I include -c -o build/renderer.o src/renderer.cpp
  7. g++ -g -fsanitize=address -I include -c -o build/tile.o src/tile.cpp
  8. g++ -g -fsanitize=address -I include -c -o build/tileloader.o src/tileloader.cpp
  9. g++ -g -fsanitize=address -I include -c -o build/world.o src/world.cpp
  10. g++ -g -fsanitize=address -I include -c -o build/worldgen.o src/worldgen.cpp
  11. Linking...
  12. g++ build/actor.o build/helpers.o build/main.o build/renderer.o build/tile.o build/tileloader.o build/world.o build/worldgen.o -o bin/exec -lcurses
  13. build/actor.o: In function `_GLOBAL__sub_I_00099_0_actor.cpp':
  14. /media/krystal/Content/Code/C++/Rogue/src/../include/actor.h:14: undefined reference to `__asan_init_v4'
  15. build/helpers.o: In function `_GLOBAL__sub_I_00099_0_helpers.cpp':
  16. /media/krystal/Content/Code/C++/Rogue/src/helpers.cpp:1: undefined reference to `__asan_init_v4'
  17. build/main.o: In function `main':
  18. /media/krystal/Content/Code/C++/Rogue/src/main.cpp:45: undefined reference to `__asan_report_load8'
  19. build/main.o: In function `initialize()':
  20. /media/krystal/Content/Code/C++/Rogue/src/main.cpp:84: undefined reference to `__asan_report_load8'
  21. /media/krystal/Content/Code/C++/Rogue/src/main.cpp:84: undefined reference to `__asan_report_load2'
  22. /media/krystal/Content/Code/C++/Rogue/src/main.cpp:84: undefined reference to `__asan_report_load8'
  23. /media/krystal/Content/Code/C++/Rogue/src/main.cpp:84: undefined reference to `__asan_report_load2'
  24. /media/krystal/Content/Code/C++/Rogue/src/main.cpp:89: undefined reference to `__asan_report_load8'
  25. /media/krystal/Content/Code/C++/Rogue/src/main.cpp:91: undefined reference to `__asan_report_load8'
  26. build/main.o: In function `updateDisplay()':
  27. /media/krystal/Content/Code/C++/Rogue/src/main.cpp:100: undefined reference to `__asan_option_detect_stack_use_after_return'
  28. /media/krystal/Content/Code/C++/Rogue/src/main.cpp:100: undefined reference to `__asan_stack_malloc_1'
  29. build/main.o: In function `drawWorld(std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > >)':
  30. /media/krystal/Content/Code/C++/Rogue/src/main.cpp:124: undefined reference to `__asan_report_load8'
  31. /media/krystal/Content/Code/C++/Rogue/src/main.cpp:124: undefined reference to `__asan_report_load1'
  32. /media/krystal/Content/Code/C++/Rogue/src/main.cpp:124: undefined reference to `__asan_report_load8'
  33. build/main.o: In function `__static_initialization_and_destruction_0(int, int)':
  34. /media/krystal/Content/Code/C++/Rogue/src/main.cpp:131: undefined reference to `__asan_before_dynamic_init'
  35. /media/krystal/Content/Code/C++/Rogue/src/main.cpp:32: undefined reference to `__asan_after_dynamic_init'
  36. build/main.o: In function `_GLOBAL__sub_D_00099_0_running':
  37. /media/krystal/Content/Code/C++/Rogue/src/main.cpp:131: undefined reference to `__asan_unregister_globals'
  38. build/main.o: In function `_GLOBAL__sub_I_00099_1_running':
  39. /media/krystal/Content/Code/C++/Rogue/src/main.cpp:131: undefined reference to `__asan_init_v4'
  40. /media/krystal/Content/Code/C++/Rogue/src/main.cpp:131: undefined reference to `__asan_register_globals'
  41. build/main.o: In function `world::operator=(world const&)':
  42. /media/krystal/Content/Code/C++/Rogue/src/../include/world.h:9: undefined reference to `__asan_report_load4'
  43. /media/krystal/Content/Code/C++/Rogue/src/../include/world.h:9: undefined reference to `__asan_report_store4'
  44. /media/krystal/Content/Code/C++/Rogue/src/../include/world.h:9: undefined reference to `__asan_report_load4'
  45. /media/krystal/Content/Code/C++/Rogue/src/../include/world.h:9: undefined reference to `__asan_report_store4'
  46. build/main.o: In function `worldgen::operator=(worldgen const&)':
  47. /media/krystal/Content/Code/C++/Rogue/src/../include/worldgen.h:9: undefined reference to `__asan_report_load4'
  48. /media/krystal/Content/Code/C++/Rogue/src/../include/worldgen.h:9: undefined reference to `__asan_report_store4'
  49. /media/krystal/Content/Code/C++/Rogue/src/../include/worldgen.h:9: undefined reference to `__asan_report_load4'
  50. /media/krystal/Content/Code/C++/Rogue/src/../include/worldgen.h:9: undefined reference to `__asan_report_store4'
  51. build/main.o: In function `world::world(world const&)':
  52. /media/krystal/Content/Code/C++/Rogue/src/../include/world.h:9: undefined reference to `__asan_report_load4'
  53. /media/krystal/Content/Code/C++/Rogue/src/../include/world.h:9: undefined reference to `__asan_report_store4'
  54. /media/krystal/Content/Code/C++/Rogue/src/../include/world.h:9: undefined reference to `__asan_report_load4'
  55. /media/krystal/Content/Code/C++/Rogue/src/../include/world.h:9: undefined reference to `__asan_report_store4'
  56. build/main.o: In function `std::vector<tile, std::allocator<tile> >::~vector()':
  57. /usr/include/c++/5/bits/stl_vector.h:424: undefined reference to `__asan_report_load8'
  58. /usr/include/c++/5/bits/stl_vector.h:424: undefined reference to `__asan_report_load8'
  59. build/main.o: In function `std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > >::~vector()':
  60. /usr/include/c++/5/bits/stl_vector.h:424: undefined reference to `__asan_report_load8'
  61. /usr/include/c++/5/bits/stl_vector.h:424: undefined reference to `__asan_report_load8'
  62. build/main.o: In function `std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > >::operator=(std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > const&)':
  63. /usr/include/c++/5/bits/vector.tcc:196: undefined reference to `__asan_report_load8'
  64. build/main.o:/usr/include/c++/5/bits/vector.tcc:196: more undefined references to `__asan_report_load8' follow
  65. build/main.o: In function `std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > >::operator=(std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > const&)':
  66. /usr/include/c++/5/bits/vector.tcc:201: undefined reference to `__asan_report_store8'
  67. /usr/include/c++/5/bits/vector.tcc:202: undefined reference to `__asan_report_store8'
  68. /usr/include/c++/5/bits/vector.tcc:211: undefined reference to `__asan_report_load8'
  69. /usr/include/c++/5/bits/vector.tcc:211: undefined reference to `__asan_report_load8'
  70. /usr/include/c++/5/bits/vector.tcc:211: undefined reference to `__asan_report_load8'
  71. /usr/include/c++/5/bits/vector.tcc:213: undefined reference to `__asan_report_load8'
  72. /usr/include/c++/5/bits/vector.tcc:213: undefined reference to `__asan_report_load8'
  73. build/main.o:/usr/include/c++/5/bits/vector.tcc:213: more undefined references to `__asan_report_load8' follow
  74. build/main.o: In function `std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > >::operator=(std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > const&)':
  75. /usr/include/c++/5/bits/vector.tcc:218: undefined reference to `__asan_report_store8'
  76. build/main.o: In function `std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > >::vector(std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > const&)':
  77. /usr/include/c++/5/bits/stl_vector.h:322: undefined reference to `__asan_report_load8'
  78. /usr/include/c++/5/bits/stl_vector.h:321: undefined reference to `__asan_report_store8'
  79. build/main.o: In function `std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > >::~vector()':
  80. /usr/include/c++/5/bits/stl_vector.h:424: undefined reference to `__asan_report_load8'
  81. /usr/include/c++/5/bits/stl_vector.h:424: undefined reference to `__asan_report_load8'
  82. build/main.o: In function `std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > >::vector(std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > const&)':
  83. /usr/include/c++/5/bits/stl_vector.h:322: undefined reference to `__asan_report_load8'
  84. /usr/include/c++/5/bits/stl_vector.h:321: undefined reference to `__asan_report_store8'
  85. build/main.o: In function `std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > >::operator[](unsigned long)':
  86. /usr/include/c++/5/bits/stl_vector.h:780: undefined reference to `__asan_report_load8'
  87. build/main.o: In function `std::vector<char, std::allocator<char> >::operator[](unsigned long)':
  88. /usr/include/c++/5/bits/stl_vector.h:780: undefined reference to `__asan_report_load8'
  89. build/main.o: In function `std::_Vector_base<tile, std::allocator<tile> >::~_Vector_base()':
  90. /usr/include/c++/5/bits/stl_vector.h:161: undefined reference to `__asan_report_load8'
  91. /usr/include/c++/5/bits/stl_vector.h:161: undefined reference to `__asan_report_load8'
  92. build/main.o: In function `std::_Vector_base<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > >::~_Vector_base()':
  93. /usr/include/c++/5/bits/stl_vector.h:161: undefined reference to `__asan_report_load8'
  94. build/main.o:/usr/include/c++/5/bits/stl_vector.h:161: more undefined references to `__asan_report_load8' follow
  95. build/main.o: In function `std::vector<tile, std::allocator<tile> >* std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > >::_M_allocate_and_copy<__gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> > const*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > > >(unsigned long, __gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> > const*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > >, __gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> > const*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > >)':
  96. /usr/include/c++/5/bits/stl_vector.h:1234: undefined reference to `__asan_handle_no_return'
  97. build/main.o: In function `std::_Vector_base<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > >::~_Vector_base()':
  98. /usr/include/c++/5/bits/stl_vector.h:161: undefined reference to `__asan_report_load8'
  99. /usr/include/c++/5/bits/stl_vector.h:161: undefined reference to `__asan_report_load8'
  100. build/main.o: In function `std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > >::size() const':
  101. /usr/include/c++/5/bits/stl_vector.h:655: undefined reference to `__asan_report_load8'
  102. /usr/include/c++/5/bits/stl_vector.h:655: undefined reference to `__asan_report_load8'
  103. build/main.o: In function `std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > >::begin() const':
  104. /usr/include/c++/5/bits/stl_vector.h:557: undefined reference to `__asan_report_load8'
  105. build/main.o:/usr/include/c++/5/bits/stl_vector.h:575: more undefined references to `__asan_report_load8' follow
  106. build/main.o: In function `std::_Vector_base<tile, std::allocator<tile> >::_Vector_impl::_Vector_impl()':
  107. /usr/include/c++/5/bits/stl_vector.h:87: undefined reference to `__asan_report_store8'
  108. /usr/include/c++/5/bits/stl_vector.h:87: undefined reference to `__asan_report_store8'
  109. /usr/include/c++/5/bits/stl_vector.h:87: undefined reference to `__asan_report_store8'
  110. build/main.o: In function `__gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> > const*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > >::__normal_iterator(std::vector<tile, std::allocator<tile> > const* const&)':
  111. /usr/include/c++/5/bits/stl_iterator.h:741: undefined reference to `__asan_report_load8'
  112. /usr/include/c++/5/bits/stl_iterator.h:741: undefined reference to `__asan_report_store8'
  113. build/main.o: In function `__gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> >*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > >::__normal_iterator(std::vector<tile, std::allocator<tile> >* const&)':
  114. /usr/include/c++/5/bits/stl_iterator.h:741: undefined reference to `__asan_report_load8'
  115. /usr/include/c++/5/bits/stl_iterator.h:741: undefined reference to `__asan_report_store8'
  116. build/main.o: In function `std::_Vector_base<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > >::_Vector_impl::_Vector_impl(std::allocator<std::vector<tile, std::allocator<tile> > > const&)':
  117. /usr/include/c++/5/bits/stl_vector.h:91: undefined reference to `__asan_report_store8'
  118. /usr/include/c++/5/bits/stl_vector.h:91: undefined reference to `__asan_report_store8'
  119. /usr/include/c++/5/bits/stl_vector.h:91: undefined reference to `__asan_report_store8'
  120. build/main.o: In function `std::_Vector_base<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > >::_M_create_storage(unsigned long)':
  121. /usr/include/c++/5/bits/stl_vector.h:185: undefined reference to `__asan_report_store8'
  122. build/main.o:/usr/include/c++/5/bits/stl_vector.h:186: more undefined references to `__asan_report_store8' follow
  123. build/main.o: In function `__gnu_cxx::__normal_iterator<std::vector<char, std::allocator<char> > const*, std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > >::__normal_iterator(std::vector<char, std::allocator<char> > const* const&)':
  124. /usr/include/c++/5/bits/stl_iterator.h:741: undefined reference to `__asan_report_load8'
  125. /usr/include/c++/5/bits/stl_iterator.h:741: undefined reference to `__asan_report_store8'
  126. build/main.o: In function `std::vector<tile, std::allocator<tile> >* std::__uninitialized_copy<false>::__uninit_copy<std::vector<tile, std::allocator<tile> >*, std::vector<tile, std::allocator<tile> >*>(std::vector<tile, std::allocator<tile> >*, std::vector<tile, std::allocator<tile> >*, std::vector<tile, std::allocator<tile> >*)':
  127. /usr/include/c++/5/bits/stl_uninitialized.h:81: undefined reference to `__asan_handle_no_return'
  128. build/main.o: In function `std::vector<tile, std::allocator<tile> >* std::__uninitialized_copy<false>::__uninit_copy<__gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> > const*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > >, std::vector<tile, std::allocator<tile> >*>(__gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> > const*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > >, __gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> > const*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > >, std::vector<tile, std::allocator<tile> >*)':
  129. /usr/include/c++/5/bits/stl_uninitialized.h:81: undefined reference to `__asan_handle_no_return'
  130. build/main.o: In function `std::vector<char, std::allocator<char> >* std::__uninitialized_copy<false>::__uninit_copy<__gnu_cxx::__normal_iterator<std::vector<char, std::allocator<char> > const*, std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > >, std::vector<char, std::allocator<char> >*>(__gnu_cxx::__normal_iterator<std::vector<char, std::allocator<char> > const*, std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > >, __gnu_cxx::__normal_iterator<std::vector<char, std::allocator<char> > const*, std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > >, std::vector<char, std::allocator<char> >*)':
  131. /usr/include/c++/5/bits/stl_uninitialized.h:81: undefined reference to `__asan_handle_no_return'
  132. build/main.o: In function `__gnu_cxx::new_allocator<std::vector<tile, std::allocator<tile> > >::allocate(unsigned long, void const*)':
  133. /usr/include/c++/5/ext/new_allocator.h:102: undefined reference to `__asan_handle_no_return'
  134. build/main.o: In function `std::_Iter_base<__gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> > const*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > >, true>::_S_base(__gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> > const*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > >)':
  135. /usr/include/c++/5/bits/stl_iterator_base_types.h:224: undefined reference to `__asan_report_load8'
  136. build/main.o: In function `std::_Iter_base<__gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> >*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > >, true>::_S_base(__gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> >*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > >)':
  137. /usr/include/c++/5/bits/stl_iterator_base_types.h:224: undefined reference to `__asan_report_load8'
  138. build/main.o: In function `bool __gnu_cxx::operator!=<std::vector<tile, std::allocator<tile> >*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > >(__gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> >*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > > const&, __gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> >*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > > const&)':
  139. /usr/include/c++/5/bits/stl_iterator.h:844: undefined reference to `__asan_report_load8'
  140. /usr/include/c++/5/bits/stl_iterator.h:844: undefined reference to `__asan_report_load8'
  141. build/main.o: In function `__gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> >*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > >::operator++()':
  142. /usr/include/c++/5/bits/stl_iterator.h:763: undefined reference to `__asan_report_load8'
  143. build/main.o:/usr/include/c++/5/bits/stl_iterator.h:754: more undefined references to `__asan_report_load8' follow
  144. build/main.o: In function `std::vector<tile, std::allocator<tile> >::operator=(std::vector<tile, std::allocator<tile> > const&)':
  145. /usr/include/c++/5/bits/vector.tcc:201: undefined reference to `__asan_report_store8'
  146. /usr/include/c++/5/bits/vector.tcc:202: undefined reference to `__asan_report_store8'
  147. /usr/include/c++/5/bits/vector.tcc:211: undefined reference to `__asan_report_load8'
  148. /usr/include/c++/5/bits/vector.tcc:211: undefined reference to `__asan_report_load8'
  149. /usr/include/c++/5/bits/vector.tcc:211: undefined reference to `__asan_report_load8'
  150. /usr/include/c++/5/bits/vector.tcc:213: undefined reference to `__asan_report_load8'
  151. /usr/include/c++/5/bits/vector.tcc:213: undefined reference to `__asan_report_load8'
  152. build/main.o:/usr/include/c++/5/bits/vector.tcc:213: more undefined references to `__asan_report_load8' follow
  153. build/main.o: In function `std::vector<tile, std::allocator<tile> >::operator=(std::vector<tile, std::allocator<tile> > const&)':
  154. /usr/include/c++/5/bits/vector.tcc:218: undefined reference to `__asan_report_store8'
  155. build/main.o: In function `std::vector<tile, std::allocator<tile> >::vector(std::vector<tile, std::allocator<tile> > const&)':
  156. /usr/include/c++/5/bits/stl_vector.h:322: undefined reference to `__asan_report_load8'
  157. /usr/include/c++/5/bits/stl_vector.h:321: undefined reference to `__asan_report_store8'
  158. build/main.o: In function `std::vector<char, std::allocator<char> >::~vector()':
  159. /usr/include/c++/5/bits/stl_vector.h:424: undefined reference to `__asan_report_load8'
  160. /usr/include/c++/5/bits/stl_vector.h:424: undefined reference to `__asan_report_load8'
  161. build/main.o: In function `__gnu_cxx::new_allocator<std::vector<char, std::allocator<char> > >::allocate(unsigned long, void const*)':
  162. /usr/include/c++/5/ext/new_allocator.h:102: undefined reference to `__asan_handle_no_return'
  163. build/main.o: In function `std::vector<char, std::allocator<char> >::vector(std::vector<char, std::allocator<char> > const&)':
  164. /usr/include/c++/5/bits/stl_vector.h:322: undefined reference to `__asan_report_load8'
  165. /usr/include/c++/5/bits/stl_vector.h:321: undefined reference to `__asan_report_store8'
  166. build/main.o: In function `std::vector<tile, std::allocator<tile> >::size() const':
  167. /usr/include/c++/5/bits/stl_vector.h:655: undefined reference to `__asan_report_load8'
  168. /usr/include/c++/5/bits/stl_vector.h:655: undefined reference to `__asan_report_load8'
  169. build/main.o: In function `std::vector<tile, std::allocator<tile> >::capacity() const':
  170. /usr/include/c++/5/bits/stl_vector.h:736: undefined reference to `__asan_report_load8'
  171. /usr/include/c++/5/bits/stl_vector.h:736: undefined reference to `__asan_report_load8'
  172. build/main.o: In function `std::vector<tile, std::allocator<tile> >::begin() const':
  173. /usr/include/c++/5/bits/stl_vector.h:557: undefined reference to `__asan_report_load8'
  174. build/main.o:/usr/include/c++/5/bits/stl_vector.h:575: more undefined references to `__asan_report_load8' follow
  175. build/main.o: In function `tile* std::vector<tile, std::allocator<tile> >::_M_allocate_and_copy<__gnu_cxx::__normal_iterator<tile const*, std::vector<tile, std::allocator<tile> > > >(unsigned long, __gnu_cxx::__normal_iterator<tile const*, std::vector<tile, std::allocator<tile> > >, __gnu_cxx::__normal_iterator<tile const*, std::vector<tile, std::allocator<tile> > >)':
  176. /usr/include/c++/5/bits/stl_vector.h:1234: undefined reference to `__asan_handle_no_return'
  177. build/main.o: In function `std::_Vector_base<char, std::allocator<char> >::~_Vector_base()':
  178. /usr/include/c++/5/bits/stl_vector.h:161: undefined reference to `__asan_report_load8'
  179. /usr/include/c++/5/bits/stl_vector.h:161: undefined reference to `__asan_report_load8'
  180. build/main.o: In function `std::vector<char, std::allocator<char> >::size() const':
  181. /usr/include/c++/5/bits/stl_vector.h:655: undefined reference to `__asan_report_load8'
  182. /usr/include/c++/5/bits/stl_vector.h:655: undefined reference to `__asan_report_load8'
  183. build/main.o: In function `std::vector<char, std::allocator<char> >::begin() const':
  184. /usr/include/c++/5/bits/stl_vector.h:557: undefined reference to `__asan_report_load8'
  185. build/main.o:/usr/include/c++/5/bits/stl_vector.h:575: more undefined references to `__asan_report_load8' follow
  186. build/main.o: In function `__gnu_cxx::__normal_iterator<tile const*, std::vector<tile, std::allocator<tile> > >::__normal_iterator(tile const* const&)':
  187. /usr/include/c++/5/bits/stl_iterator.h:741: undefined reference to `__asan_report_store8'
  188. build/main.o: In function `__gnu_cxx::__normal_iterator<tile*, std::vector<tile, std::allocator<tile> > >::__normal_iterator(tile* const&)':
  189. /usr/include/c++/5/bits/stl_iterator.h:741: undefined reference to `__asan_report_load8'
  190. /usr/include/c++/5/bits/stl_iterator.h:741: undefined reference to `__asan_report_store8'
  191. build/main.o: In function `std::_Vector_base<tile, std::allocator<tile> >::_Vector_impl::_Vector_impl(std::allocator<tile> const&)':
  192. /usr/include/c++/5/bits/stl_vector.h:91: undefined reference to `__asan_report_store8'
  193. /usr/include/c++/5/bits/stl_vector.h:91: undefined reference to `__asan_report_store8'
  194. /usr/include/c++/5/bits/stl_vector.h:91: undefined reference to `__asan_report_store8'
  195. build/main.o: In function `std::_Vector_base<tile, std::allocator<tile> >::_M_create_storage(unsigned long)':
  196. /usr/include/c++/5/bits/stl_vector.h:185: undefined reference to `__asan_report_store8'
  197. build/main.o:/usr/include/c++/5/bits/stl_vector.h:186: more undefined references to `__asan_report_store8' follow
  198. build/main.o: In function `__gnu_cxx::__normal_iterator<char const*, std::vector<char, std::allocator<char> > >::__normal_iterator(char const* const&)':
  199. /usr/include/c++/5/bits/stl_iterator.h:741: undefined reference to `__asan_report_load8'
  200. /usr/include/c++/5/bits/stl_iterator.h:741: undefined reference to `__asan_report_store8'
  201. build/main.o: In function `tile* std::__uninitialized_copy<false>::__uninit_copy<__gnu_cxx::__normal_iterator<tile const*, std::vector<tile, std::allocator<tile> > >, tile*>(__gnu_cxx::__normal_iterator<tile const*, std::vector<tile, std::allocator<tile> > >, __gnu_cxx::__normal_iterator<tile const*, std::vector<tile, std::allocator<tile> > >, tile*)':
  202. /usr/include/c++/5/bits/stl_uninitialized.h:81: undefined reference to `__asan_handle_no_return'
  203. build/main.o: In function `__gnu_cxx::new_allocator<tile>::allocate(unsigned long, void const*)':
  204. /usr/include/c++/5/ext/new_allocator.h:102: undefined reference to `__asan_handle_no_return'
  205. build/main.o: In function `std::_Iter_base<__gnu_cxx::__normal_iterator<tile const*, std::vector<tile, std::allocator<tile> > >, true>::_S_base(__gnu_cxx::__normal_iterator<tile const*, std::vector<tile, std::allocator<tile> > >)':
  206. /usr/include/c++/5/bits/stl_iterator_base_types.h:224: undefined reference to `__asan_report_load8'
  207. build/main.o: In function `std::_Iter_base<__gnu_cxx::__normal_iterator<tile*, std::vector<tile, std::allocator<tile> > >, true>::_S_base(__gnu_cxx::__normal_iterator<tile*, std::vector<tile, std::allocator<tile> > >)':
  208. /usr/include/c++/5/bits/stl_iterator_base_types.h:224: undefined reference to `__asan_report_load8'
  209. build/main.o: In function `tile* std::__copy_move<false, false, std::random_access_iterator_tag>::__copy_m<tile const*, tile*>(tile const*, tile const*, tile*)':
  210. /usr/include/c++/5/bits/stl_algobase.h:340: undefined reference to `__asan_report_store1'
  211. /usr/include/c++/5/bits/stl_algobase.h:340: undefined reference to `__asan_report_load1'
  212. build/main.o: In function `tile* std::__copy_move<false, false, std::random_access_iterator_tag>::__copy_m<tile*, tile*>(tile*, tile*, tile*)':
  213. /usr/include/c++/5/bits/stl_algobase.h:340: undefined reference to `__asan_report_store1'
  214. /usr/include/c++/5/bits/stl_algobase.h:340: undefined reference to `__asan_report_load1'
  215. build/main.o: In function `void std::_Construct<tile, tile>(tile*, tile const&)':
  216. /usr/include/c++/5/bits/stl_construct.h:83: undefined reference to `__asan_report_store1'
  217. /usr/include/c++/5/bits/stl_construct.h:83: undefined reference to `__asan_report_load1'
  218. build/main.o: In function `bool __gnu_cxx::operator!=<tile const*, std::vector<tile, std::allocator<tile> > >(__gnu_cxx::__normal_iterator<tile const*, std::vector<tile, std::allocator<tile> > > const&, __gnu_cxx::__normal_iterator<tile const*, std::vector<tile, std::allocator<tile> > > const&)':
  219. /usr/include/c++/5/bits/stl_iterator.h:844: undefined reference to `__asan_report_load8'
  220. /usr/include/c++/5/bits/stl_iterator.h:844: undefined reference to `__asan_report_load8'
  221. build/main.o: In function `__gnu_cxx::__normal_iterator<tile const*, std::vector<tile, std::allocator<tile> > >::operator++()':
  222. /usr/include/c++/5/bits/stl_iterator.h:763: undefined reference to `__asan_report_load8'
  223. build/main.o: In function `__gnu_cxx::__normal_iterator<tile const*, std::vector<tile, std::allocator<tile> > >::operator*() const':
  224. /usr/include/c++/5/bits/stl_iterator.h:754: undefined reference to `__asan_report_load8'
  225. build/main.o: In function `__gnu_cxx::new_allocator<char>::allocate(unsigned long, void const*)':
  226. /usr/include/c++/5/ext/new_allocator.h:102: undefined reference to `__asan_handle_no_return'
  227. build/main.o: In function `std::_Iter_base<__gnu_cxx::__normal_iterator<char const*, std::vector<char, std::allocator<char> > >, true>::_S_base(__gnu_cxx::__normal_iterator<char const*, std::vector<char, std::allocator<char> > >)':
  228. /usr/include/c++/5/bits/stl_iterator_base_types.h:224: undefined reference to `__asan_report_load8'
  229. build/renderer.o: In function `renderer::init(int, int, world)':
  230. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:12: undefined reference to `__asan_report_store4'
  231. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:13: undefined reference to `__asan_report_store4'
  232. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:14: undefined reference to `__asan_report_store4'
  233. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:15: undefined reference to `__asan_report_store4'
  234. build/renderer.o: In function `renderer::renderFrame(world)':
  235. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:20: undefined reference to `__asan_option_detect_stack_use_after_return'
  236. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:20: undefined reference to `__asan_stack_malloc_3'
  237. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:32: undefined reference to `__asan_report_load4'
  238. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:32: undefined reference to `__asan_report_load4'
  239. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:33: undefined reference to `__asan_report_load4'
  240. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:33: undefined reference to `__asan_report_load4'
  241. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:39: undefined reference to `__asan_report_load4'
  242. build/renderer.o:/media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:40: more undefined references to `__asan_report_load4' follow
  243. build/renderer.o: In function `renderer::renderFrame(world)':
  244. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:47: undefined reference to `__asan_report_store1'
  245. build/renderer.o: In function `renderer::initializeFrame(std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > >&)':
  246. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:54: undefined reference to `__asan_report_load4'
  247. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:55: undefined reference to `__asan_report_load4'
  248. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:56: undefined reference to `__asan_report_load4'
  249. build/renderer.o: In function `renderer::setRenderCenter()':
  250. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:61: undefined reference to `__asan_report_load4'
  251. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:61: undefined reference to `__asan_report_store4'
  252. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:62: undefined reference to `__asan_report_load4'
  253. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:62: undefined reference to `__asan_report_store4'
  254. build/renderer.o: In function `renderer::setWorldCenter()':
  255. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:66: undefined reference to `__asan_report_load4'
  256. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:66: undefined reference to `__asan_report_store4'
  257. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:67: undefined reference to `__asan_report_load4'
  258. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:67: undefined reference to `__asan_report_store4'
  259. build/renderer.o: In function `renderer::checkFirsts(int&, int&)':
  260. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:73: undefined reference to `__asan_report_load4'
  261. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:74: undefined reference to `__asan_report_load4'
  262. build/renderer.o: In function `renderer::checkLasts(int&, int&)':
  263. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:78: undefined reference to `__asan_report_load4'
  264. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:78: undefined reference to `__asan_report_load4'
  265. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:78: undefined reference to `__asan_report_load4'
  266. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:78: undefined reference to `__asan_report_store4'
  267. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:79: undefined reference to `__asan_report_load4'
  268. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:79: undefined reference to `__asan_report_load4'
  269. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:79: undefined reference to `__asan_report_load4'
  270. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:79: undefined reference to `__asan_report_store4'
  271. build/renderer.o: In function `renderer::calculateOffSets()':
  272. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:85: undefined reference to `__asan_report_load4'
  273. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:85: undefined reference to `__asan_report_load4'
  274. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:85: undefined reference to `__asan_report_store4'
  275. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:86: undefined reference to `__asan_report_load4'
  276. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:86: undefined reference to `__asan_report_load4'
  277. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:86: undefined reference to `__asan_report_store4'
  278. build/renderer.o: In function `renderer::moveCenterUp()':
  279. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:92: undefined reference to `__asan_report_load4'
  280. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:92: undefined reference to `__asan_report_load4'
  281. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:92: undefined reference to `__asan_report_load4'
  282. build/renderer.o: In function `renderer::moveCenterDown()':
  283. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:95: undefined reference to `__asan_report_load4'
  284. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:95: undefined reference to `__asan_report_load4'
  285. build/renderer.o:/media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:99: more undefined references to `__asan_report_load4' follow
  286. build/renderer.o: In function `renderer::moveCenterLeft()':
  287. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:102: undefined reference to `__asan_report_store4'
  288. build/renderer.o: In function `renderer::getOffSetX()':
  289. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:107: undefined reference to `__asan_report_load4'
  290. build/renderer.o: In function `renderer::getOffSetY()':
  291. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:110: undefined reference to `__asan_report_load4'
  292. build/renderer.o: In function `renderer::getCenterRenderX()':
  293. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:114: undefined reference to `__asan_report_load4'
  294. build/renderer.o: In function `renderer::getCenterRenderY()':
  295. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:118: undefined reference to `__asan_report_load4'
  296. build/renderer.o: In function `_GLOBAL__sub_D_00099_0__ZN8renderer4initEii5world':
  297. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:119: undefined reference to `__asan_unregister_globals'
  298. build/renderer.o: In function `_GLOBAL__sub_I_00099_1__ZN8renderer4initEii5world':
  299. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:119: undefined reference to `__asan_init_v4'
  300. /media/krystal/Content/Code/C++/Rogue/src/renderer.cpp:119: undefined reference to `__asan_register_globals'
  301. build/renderer.o: In function `std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > >::resize(unsigned long, std::vector<char, std::allocator<char> >)':
  302. /usr/include/c++/5/bits/stl_vector.h:718: undefined reference to `__asan_report_load8'
  303. build/renderer.o: In function `std::vector<char, std::allocator<char> >::resize(unsigned long, char)':
  304. /usr/include/c++/5/bits/stl_vector.h:718: undefined reference to `__asan_report_load8'
  305. build/renderer.o: In function `std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > >::_M_erase_at_end(std::vector<char, std::allocator<char> >*)':
  306. /usr/include/c++/5/bits/stl_vector.h:1438: undefined reference to `__asan_report_load8'
  307. /usr/include/c++/5/bits/stl_vector.h:1439: undefined reference to `__asan_report_store8'
  308. build/renderer.o: In function `std::vector<char, std::allocator<char> >::_M_erase_at_end(char*)':
  309. /usr/include/c++/5/bits/stl_vector.h:1438: undefined reference to `__asan_report_load8'
  310. /usr/include/c++/5/bits/stl_vector.h:1439: undefined reference to `__asan_report_store8'
  311. build/renderer.o: In function `std::_Vector_base<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > >::_Vector_impl::_Vector_impl()':
  312. /usr/include/c++/5/bits/stl_vector.h:87: undefined reference to `__asan_report_store8'
  313. /usr/include/c++/5/bits/stl_vector.h:87: undefined reference to `__asan_report_store8'
  314. /usr/include/c++/5/bits/stl_vector.h:87: undefined reference to `__asan_report_store8'
  315. build/renderer.o: In function `std::_Vector_base<char, std::allocator<char> >::_Vector_impl::_Vector_impl()':
  316. /usr/include/c++/5/bits/stl_vector.h:87: undefined reference to `__asan_report_store8'
  317. build/renderer.o:/usr/include/c++/5/bits/stl_vector.h:87: more undefined references to `__asan_report_store8' follow
  318. build/renderer.o: In function `__gnu_cxx::__normal_iterator<std::vector<char, std::allocator<char> >*, std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > >::__normal_iterator(std::vector<char, std::allocator<char> >* const&)':
  319. /usr/include/c++/5/bits/stl_iterator.h:741: undefined reference to `__asan_report_load8'
  320. /usr/include/c++/5/bits/stl_iterator.h:741: undefined reference to `__asan_report_store8'
  321. build/renderer.o: In function `std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > >::_M_fill_insert(__gnu_cxx::__normal_iterator<std::vector<char, std::allocator<char> >*, std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > >, unsigned long, std::vector<char, std::allocator<char> > const&)':
  322. /usr/include/c++/5/bits/vector.tcc:449: undefined reference to `__asan_option_detect_stack_use_after_return'
  323. /usr/include/c++/5/bits/vector.tcc:449: undefined reference to `__asan_stack_malloc_1'
  324. /usr/include/c++/5/bits/vector.tcc:455: undefined reference to `__asan_report_load8'
  325. /usr/include/c++/5/bits/vector.tcc:455: undefined reference to `__asan_report_load8'
  326. /usr/include/c++/5/bits/vector.tcc:459: undefined reference to `__asan_report_load8'
  327. /usr/include/c++/5/bits/vector.tcc:462: undefined reference to `__asan_report_load8'
  328. /usr/include/c++/5/bits/vector.tcc:466: undefined reference to `__asan_report_load8'
  329. build/renderer.o:/usr/include/c++/5/bits/vector.tcc:467: more undefined references to `__asan_report_load8' follow
  330. build/renderer.o: In function `std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > >::_M_fill_insert(__gnu_cxx::__normal_iterator<std::vector<char, std::allocator<char> >*, std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > >, unsigned long, std::vector<char, std::allocator<char> > const&)':
  331. /usr/include/c++/5/bits/vector.tcc:474: undefined reference to `__asan_report_store8'
  332. /usr/include/c++/5/bits/vector.tcc:479: undefined reference to `__asan_report_load8'
  333. /usr/include/c++/5/bits/vector.tcc:479: undefined reference to `__asan_report_load8'
  334. /usr/include/c++/5/bits/vector.tcc:482: undefined reference to `__asan_report_load8'
  335. /usr/include/c++/5/bits/vector.tcc:483: undefined reference to `__asan_report_load8'
  336. /usr/include/c++/5/bits/vector.tcc:503: undefined reference to `__asan_report_load8'
  337. build/renderer.o:/usr/include/c++/5/bits/vector.tcc:503: more undefined references to `__asan_report_load8' follow
  338. build/renderer.o: In function `std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > >::_M_fill_insert(__gnu_cxx::__normal_iterator<std::vector<char, std::allocator<char> >*, std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > >, unsigned long, std::vector<char, std::allocator<char> > const&)':
  339. /usr/include/c++/5/bits/vector.tcc:530: undefined reference to `__asan_report_store8'
  340. /usr/include/c++/5/bits/vector.tcc:531: undefined reference to `__asan_report_store8'
  341. /usr/include/c++/5/bits/vector.tcc:532: undefined reference to `__asan_report_store8'
  342. /usr/include/c++/5/bits/vector.tcc:523: undefined reference to `__asan_handle_no_return'
  343. build/renderer.o: In function `__gnu_cxx::__normal_iterator<char*, std::vector<char, std::allocator<char> > >::__normal_iterator(char* const&)':
  344. /usr/include/c++/5/bits/stl_iterator.h:741: undefined reference to `__asan_report_load8'
  345. /usr/include/c++/5/bits/stl_iterator.h:741: undefined reference to `__asan_report_store8'
  346. build/renderer.o: In function `std::vector<char, std::allocator<char> >::_M_fill_insert(__gnu_cxx::__normal_iterator<char*, std::vector<char, std::allocator<char> > >, unsigned long, char const&)':
  347. /usr/include/c++/5/bits/vector.tcc:449: undefined reference to `__asan_option_detect_stack_use_after_return'
  348. /usr/include/c++/5/bits/vector.tcc:449: undefined reference to `__asan_stack_malloc_1'
  349. /usr/include/c++/5/bits/vector.tcc:455: undefined reference to `__asan_report_load8'
  350. /usr/include/c++/5/bits/vector.tcc:455: undefined reference to `__asan_report_load8'
  351. /usr/include/c++/5/bits/vector.tcc:457: undefined reference to `__asan_report_load1'
  352. /usr/include/c++/5/bits/vector.tcc:459: undefined reference to `__asan_report_load8'
  353. /usr/include/c++/5/bits/vector.tcc:462: undefined reference to `__asan_report_load8'
  354. /usr/include/c++/5/bits/vector.tcc:466: undefined reference to `__asan_report_load8'
  355. /usr/include/c++/5/bits/vector.tcc:467: undefined reference to `__asan_report_load8'
  356. /usr/include/c++/5/bits/vector.tcc:469: undefined reference to `__asan_report_load8'
  357. build/renderer.o:/usr/include/c++/5/bits/vector.tcc:469: more undefined references to `__asan_report_load8' follow
  358. build/renderer.o: In function `std::vector<char, std::allocator<char> >::_M_fill_insert(__gnu_cxx::__normal_iterator<char*, std::vector<char, std::allocator<char> > >, unsigned long, char const&)':
  359. /usr/include/c++/5/bits/vector.tcc:474: undefined reference to `__asan_report_store8'
  360. /usr/include/c++/5/bits/vector.tcc:479: undefined reference to `__asan_report_load8'
  361. /usr/include/c++/5/bits/vector.tcc:479: undefined reference to `__asan_report_load8'
  362. /usr/include/c++/5/bits/vector.tcc:482: undefined reference to `__asan_report_load8'
  363. /usr/include/c++/5/bits/vector.tcc:483: undefined reference to `__asan_report_load8'
  364. /usr/include/c++/5/bits/vector.tcc:503: undefined reference to `__asan_report_load8'
  365. build/renderer.o:/usr/include/c++/5/bits/vector.tcc:503: more undefined references to `__asan_report_load8' follow
  366. build/renderer.o: In function `std::vector<char, std::allocator<char> >::_M_fill_insert(__gnu_cxx::__normal_iterator<char*, std::vector<char, std::allocator<char> > >, unsigned long, char const&)':
  367. /usr/include/c++/5/bits/vector.tcc:530: undefined reference to `__asan_report_store8'
  368. /usr/include/c++/5/bits/vector.tcc:531: undefined reference to `__asan_report_store8'
  369. /usr/include/c++/5/bits/vector.tcc:532: undefined reference to `__asan_report_store8'
  370. /usr/include/c++/5/bits/vector.tcc:523: undefined reference to `__asan_handle_no_return'
  371. build/renderer.o: In function `__gnu_cxx::__normal_iterator<std::vector<char, std::allocator<char> >*, std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > >::difference_type __gnu_cxx::operator-<std::vector<char, std::allocator<char> >*, std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > >(__gnu_cxx::__normal_iterator<std::vector<char, std::allocator<char> >*, std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > > const&, __gnu_cxx::__normal_iterator<std::vector<char, std::allocator<char> >*, std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > > > const&)':
  372. /usr/include/c++/5/bits/stl_iterator.h:926: undefined reference to `__asan_report_load8'
  373. /usr/include/c++/5/bits/stl_iterator.h:926: undefined reference to `__asan_report_load8'
  374. build/renderer.o: In function `std::vector<std::vector<char, std::allocator<char> >, std::allocator<std::vector<char, std::allocator<char> > > >::_M_check_len(unsigned long, char const*) const':
  375. /usr/include/c++/5/bits/stl_vector.h:1425: undefined reference to `__asan_handle_no_return'
  376. /usr/include/c++/5/bits/stl_vector.h:1427: undefined reference to `__asan_report_load8'
  377. build/renderer.o: In function `__gnu_cxx::__normal_iterator<char*, std::vector<char, std::allocator<char> > >::difference_type __gnu_cxx::operator-<char*, std::vector<char, std::allocator<char> > >(__gnu_cxx::__normal_iterator<char*, std::vector<char, std::allocator<char> > > const&, __gnu_cxx::__normal_iterator<char*, std::vector<char, std::allocator<char> > > const&)':
  378. /usr/include/c++/5/bits/stl_iterator.h:926: undefined reference to `__asan_report_load8'
  379. /usr/include/c++/5/bits/stl_iterator.h:926: undefined reference to `__asan_report_load8'
  380. build/renderer.o: In function `std::vector<char, std::allocator<char> >::_M_check_len(unsigned long, char const*) const':
  381. /usr/include/c++/5/bits/stl_vector.h:1425: undefined reference to `__asan_handle_no_return'
  382. /usr/include/c++/5/bits/stl_vector.h:1427: undefined reference to `__asan_report_load8'
  383. build/renderer.o: In function `unsigned long const& std::max<unsigned long>(unsigned long const&, unsigned long const&)':
  384. /usr/include/c++/5/bits/stl_algobase.h:224: undefined reference to `__asan_report_load8'
  385. /usr/include/c++/5/bits/stl_algobase.h:224: undefined reference to `__asan_report_load8'
  386. build/renderer.o: In function `__gnu_cxx::__enable_if<std::__is_byte<char>::__value, void>::__type std::__fill_a<char>(char*, char*, char const&)':
  387. /usr/include/c++/5/bits/stl_algobase.h:717: undefined reference to `__asan_report_load1'
  388. build/renderer.o: In function `std::vector<char, std::allocator<char> >::operator=(std::vector<char, std::allocator<char> > const&)':
  389. /usr/include/c++/5/bits/vector.tcc:196: undefined reference to `__asan_report_load8'
  390. /usr/include/c++/5/bits/vector.tcc:196: undefined reference to `__asan_report_load8'
  391. /usr/include/c++/5/bits/vector.tcc:200: undefined reference to `__asan_report_load8'
  392. /usr/include/c++/5/bits/vector.tcc:200: undefined reference to `__asan_report_load8'
  393. /usr/include/c++/5/bits/vector.tcc:201: undefined reference to `__asan_report_store8'
  394. /usr/include/c++/5/bits/vector.tcc:202: undefined reference to `__asan_report_store8'
  395. /usr/include/c++/5/bits/vector.tcc:211: undefined reference to `__asan_report_load8'
  396. /usr/include/c++/5/bits/vector.tcc:211: undefined reference to `__asan_report_load8'
  397. /usr/include/c++/5/bits/vector.tcc:211: undefined reference to `__asan_report_load8'
  398. /usr/include/c++/5/bits/vector.tcc:213: undefined reference to `__asan_report_load8'
  399. /usr/include/c++/5/bits/vector.tcc:213: undefined reference to `__asan_report_load8'
  400. build/renderer.o:/usr/include/c++/5/bits/vector.tcc:213: more undefined references to `__asan_report_load8' follow
  401. build/renderer.o: In function `std::vector<char, std::allocator<char> >::operator=(std::vector<char, std::allocator<char> > const&)':
  402. /usr/include/c++/5/bits/vector.tcc:218: undefined reference to `__asan_report_store8'
  403. build/renderer.o: In function `std::vector<char, std::allocator<char> >* std::__uninitialized_fill_n<false>::__uninit_fill_n<std::vector<char, std::allocator<char> >*, unsigned long, std::vector<char, std::allocator<char> > >(std::vector<char, std::allocator<char> >*, unsigned long, std::vector<char, std::allocator<char> > const&)':
  404. /usr/include/c++/5/bits/stl_uninitialized.h:208: undefined reference to `__asan_handle_no_return'
  405. build/renderer.o: In function `std::vector<char, std::allocator<char> >* std::__uninitialized_copy<false>::__uninit_copy<std::vector<char, std::allocator<char> >*, std::vector<char, std::allocator<char> >*>(std::vector<char, std::allocator<char> >*, std::vector<char, std::allocator<char> >*, std::vector<char, std::allocator<char> >*)':
  406. /usr/include/c++/5/bits/stl_uninitialized.h:81: undefined reference to `__asan_handle_no_return'
  407. build/renderer.o: In function `std::vector<char, std::allocator<char> >::capacity() const':
  408. /usr/include/c++/5/bits/stl_vector.h:736: undefined reference to `__asan_report_load8'
  409. /usr/include/c++/5/bits/stl_vector.h:736: undefined reference to `__asan_report_load8'
  410. build/renderer.o: In function `char* std::vector<char, std::allocator<char> >::_M_allocate_and_copy<__gnu_cxx::__normal_iterator<char const*, std::vector<char, std::allocator<char> > > >(unsigned long, __gnu_cxx::__normal_iterator<char const*, std::vector<char, std::allocator<char> > >, __gnu_cxx::__normal_iterator<char const*, std::vector<char, std::allocator<char> > >)':
  411. /usr/include/c++/5/bits/stl_vector.h:1234: undefined reference to `__asan_handle_no_return'
  412. build/renderer.o: In function `std::_Iter_base<__gnu_cxx::__normal_iterator<char*, std::vector<char, std::allocator<char> > >, true>::_S_base(__gnu_cxx::__normal_iterator<char*, std::vector<char, std::allocator<char> > >)':
  413. /usr/include/c++/5/bits/stl_iterator_base_types.h:224: undefined reference to `__asan_report_load8'
  414. build/tile.o: In function `tile::tile()':
  415. /media/krystal/Content/Code/C++/Rogue/src/tile.cpp:4: undefined reference to `__asan_report_store1'
  416. build/tile.o: In function `tile::tile(char)':
  417. /media/krystal/Content/Code/C++/Rogue/src/tile.cpp:8: undefined reference to `__asan_report_store1'
  418. build/tile.o: In function `tile::getChar()':
  419. /media/krystal/Content/Code/C++/Rogue/src/tile.cpp:12: undefined reference to `__asan_report_load1'
  420. build/tile.o: In function `tile::setChar(char)':
  421. /media/krystal/Content/Code/C++/Rogue/src/tile.cpp:16: undefined reference to `__asan_report_store1'
  422. build/tile.o: In function `_GLOBAL__sub_I_00099_0__ZN4tileC2Ev':
  423. /media/krystal/Content/Code/C++/Rogue/src/tile.cpp:17: undefined reference to `__asan_init_v4'
  424. build/tileloader.o: In function `__static_initialization_and_destruction_0(int, int)':
  425. /media/krystal/Content/Code/C++/Rogue/src/tileloader.cpp:19: undefined reference to `__asan_before_dynamic_init'
  426. build/tileloader.o: In function `__static_initialization_and_destruction_0(int, int)':
  427. /usr/include/c++/5/iostream:74: undefined reference to `__asan_after_dynamic_init'
  428. build/tileloader.o: In function `_GLOBAL__sub_D_00099_0__ZN10tileLoader8openFileEPKc':
  429. /media/krystal/Content/Code/C++/Rogue/src/tileloader.cpp:19: undefined reference to `__asan_unregister_globals'
  430. build/tileloader.o: In function `_GLOBAL__sub_I_00099_1__ZN10tileLoader8openFileEPKc':
  431. /media/krystal/Content/Code/C++/Rogue/src/tileloader.cpp:19: undefined reference to `__asan_init_v4'
  432. /media/krystal/Content/Code/C++/Rogue/src/tileloader.cpp:19: undefined reference to `__asan_register_globals'
  433. build/world.o: In function `world::world()':
  434. /media/krystal/Content/Code/C++/Rogue/src/world.cpp:11: undefined reference to `__asan_report_store4'
  435. /media/krystal/Content/Code/C++/Rogue/src/world.cpp:12: undefined reference to `__asan_report_store4'
  436. build/world.o: In function `world::world(int, int)':
  437. /media/krystal/Content/Code/C++/Rogue/src/world.cpp:16: undefined reference to `__asan_report_store4'
  438. /media/krystal/Content/Code/C++/Rogue/src/world.cpp:17: undefined reference to `__asan_report_store4'
  439. build/world.o: In function `world::initTiles()':
  440. /media/krystal/Content/Code/C++/Rogue/src/world.cpp:22: undefined reference to `__asan_report_load4'
  441. /media/krystal/Content/Code/C++/Rogue/src/world.cpp:23: undefined reference to `__asan_report_load4'
  442. /media/krystal/Content/Code/C++/Rogue/src/world.cpp:24: undefined reference to `__asan_report_load4'
  443. build/world.o: In function `world::setTile(int, int, tile)':
  444. /media/krystal/Content/Code/C++/Rogue/src/world.cpp:37: undefined reference to `__asan_report_store1'
  445. build/world.o: In function `world::getTile(int, int)':
  446. /media/krystal/Content/Code/C++/Rogue/src/world.cpp:40: undefined reference to `__asan_report_load1'
  447. build/world.o: In function `world::getWidth()':
  448. /media/krystal/Content/Code/C++/Rogue/src/world.cpp:44: undefined reference to `__asan_report_load4'
  449. build/world.o: In function `world::getHeight()':
  450. /media/krystal/Content/Code/C++/Rogue/src/world.cpp:48: undefined reference to `__asan_report_load4'
  451. build/world.o: In function `_GLOBAL__sub_D_00099_0__ZN5worldC2Ev':
  452. /media/krystal/Content/Code/C++/Rogue/src/world.cpp:49: undefined reference to `__asan_unregister_globals'
  453. build/world.o: In function `_GLOBAL__sub_I_00099_1__ZN5worldC2Ev':
  454. /media/krystal/Content/Code/C++/Rogue/src/world.cpp:49: undefined reference to `__asan_init_v4'
  455. /media/krystal/Content/Code/C++/Rogue/src/world.cpp:49: undefined reference to `__asan_register_globals'
  456. build/world.o: In function `std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > >::resize(unsigned long, std::vector<tile, std::allocator<tile> >)':
  457. /usr/include/c++/5/bits/stl_vector.h:718: undefined reference to `__asan_report_load8'
  458. build/world.o: In function `std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > >::operator[](unsigned long)':
  459. /usr/include/c++/5/bits/stl_vector.h:780: undefined reference to `__asan_report_load8'
  460. build/world.o: In function `std::vector<tile, std::allocator<tile> >::resize(unsigned long, tile)':
  461. /usr/include/c++/5/bits/stl_vector.h:718: undefined reference to `__asan_report_load8'
  462. build/world.o: In function `std::vector<tile, std::allocator<tile> >::operator[](unsigned long)':
  463. /usr/include/c++/5/bits/stl_vector.h:780: undefined reference to `__asan_report_load8'
  464. build/world.o: In function `std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > >::_M_erase_at_end(std::vector<tile, std::allocator<tile> >*)':
  465. /usr/include/c++/5/bits/stl_vector.h:1438: undefined reference to `__asan_report_load8'
  466. /usr/include/c++/5/bits/stl_vector.h:1439: undefined reference to `__asan_report_store8'
  467. build/world.o: In function `std::vector<tile, std::allocator<tile> >::_M_erase_at_end(tile*)':
  468. /usr/include/c++/5/bits/stl_vector.h:1438: undefined reference to `__asan_report_load8'
  469. /usr/include/c++/5/bits/stl_vector.h:1439: undefined reference to `__asan_report_store8'
  470. build/world.o: In function `std::_Vector_base<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > >::_Vector_impl::_Vector_impl()':
  471. /usr/include/c++/5/bits/stl_vector.h:87: undefined reference to `__asan_report_store8'
  472. /usr/include/c++/5/bits/stl_vector.h:87: undefined reference to `__asan_report_store8'
  473. /usr/include/c++/5/bits/stl_vector.h:87: undefined reference to `__asan_report_store8'
  474. build/world.o: In function `std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > >::_M_fill_insert(__gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> >*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > >, unsigned long, std::vector<tile, std::allocator<tile> > const&)':
  475. /usr/include/c++/5/bits/vector.tcc:449: undefined reference to `__asan_option_detect_stack_use_after_return'
  476. /usr/include/c++/5/bits/vector.tcc:449: undefined reference to `__asan_stack_malloc_1'
  477. /usr/include/c++/5/bits/vector.tcc:455: undefined reference to `__asan_report_load8'
  478. /usr/include/c++/5/bits/vector.tcc:455: undefined reference to `__asan_report_load8'
  479. /usr/include/c++/5/bits/vector.tcc:459: undefined reference to `__asan_report_load8'
  480. /usr/include/c++/5/bits/vector.tcc:462: undefined reference to `__asan_report_load8'
  481. /usr/include/c++/5/bits/vector.tcc:466: undefined reference to `__asan_report_load8'
  482. build/world.o:/usr/include/c++/5/bits/vector.tcc:467: more undefined references to `__asan_report_load8' follow
  483. build/world.o: In function `std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > >::_M_fill_insert(__gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> >*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > >, unsigned long, std::vector<tile, std::allocator<tile> > const&)':
  484. /usr/include/c++/5/bits/vector.tcc:474: undefined reference to `__asan_report_store8'
  485. /usr/include/c++/5/bits/vector.tcc:479: undefined reference to `__asan_report_load8'
  486. /usr/include/c++/5/bits/vector.tcc:479: undefined reference to `__asan_report_load8'
  487. /usr/include/c++/5/bits/vector.tcc:482: undefined reference to `__asan_report_load8'
  488. /usr/include/c++/5/bits/vector.tcc:483: undefined reference to `__asan_report_load8'
  489. /usr/include/c++/5/bits/vector.tcc:503: undefined reference to `__asan_report_load8'
  490. build/world.o:/usr/include/c++/5/bits/vector.tcc:503: more undefined references to `__asan_report_load8' follow
  491. build/world.o: In function `std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > >::_M_fill_insert(__gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> >*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > >, unsigned long, std::vector<tile, std::allocator<tile> > const&)':
  492. /usr/include/c++/5/bits/vector.tcc:530: undefined reference to `__asan_report_store8'
  493. /usr/include/c++/5/bits/vector.tcc:531: undefined reference to `__asan_report_store8'
  494. /usr/include/c++/5/bits/vector.tcc:532: undefined reference to `__asan_report_store8'
  495. /usr/include/c++/5/bits/vector.tcc:523: undefined reference to `__asan_handle_no_return'
  496. build/world.o: In function `std::vector<tile, std::allocator<tile> >::_M_fill_insert(__gnu_cxx::__normal_iterator<tile*, std::vector<tile, std::allocator<tile> > >, unsigned long, tile const&)':
  497. /usr/include/c++/5/bits/vector.tcc:449: undefined reference to `__asan_option_detect_stack_use_after_return'
  498. /usr/include/c++/5/bits/vector.tcc:449: undefined reference to `__asan_stack_malloc_1'
  499. /usr/include/c++/5/bits/vector.tcc:455: undefined reference to `__asan_report_load8'
  500. /usr/include/c++/5/bits/vector.tcc:455: undefined reference to `__asan_report_load8'
  501. /usr/include/c++/5/bits/vector.tcc:457: undefined reference to `__asan_report_load1'
  502. /usr/include/c++/5/bits/vector.tcc:459: undefined reference to `__asan_report_load8'
  503. /usr/include/c++/5/bits/vector.tcc:462: undefined reference to `__asan_report_load8'
  504. /usr/include/c++/5/bits/vector.tcc:466: undefined reference to `__asan_report_load8'
  505. /usr/include/c++/5/bits/vector.tcc:467: undefined reference to `__asan_report_load8'
  506. /usr/include/c++/5/bits/vector.tcc:469: undefined reference to `__asan_report_load8'
  507. build/world.o:/usr/include/c++/5/bits/vector.tcc:469: more undefined references to `__asan_report_load8' follow
  508. build/world.o: In function `std::vector<tile, std::allocator<tile> >::_M_fill_insert(__gnu_cxx::__normal_iterator<tile*, std::vector<tile, std::allocator<tile> > >, unsigned long, tile const&)':
  509. /usr/include/c++/5/bits/vector.tcc:474: undefined reference to `__asan_report_store8'
  510. /usr/include/c++/5/bits/vector.tcc:479: undefined reference to `__asan_report_load8'
  511. /usr/include/c++/5/bits/vector.tcc:479: undefined reference to `__asan_report_load8'
  512. /usr/include/c++/5/bits/vector.tcc:482: undefined reference to `__asan_report_load8'
  513. /usr/include/c++/5/bits/vector.tcc:483: undefined reference to `__asan_report_load8'
  514. /usr/include/c++/5/bits/vector.tcc:503: undefined reference to `__asan_report_load8'
  515. build/world.o:/usr/include/c++/5/bits/vector.tcc:503: more undefined references to `__asan_report_load8' follow
  516. build/world.o: In function `std::vector<tile, std::allocator<tile> >::_M_fill_insert(__gnu_cxx::__normal_iterator<tile*, std::vector<tile, std::allocator<tile> > >, unsigned long, tile const&)':
  517. /usr/include/c++/5/bits/vector.tcc:530: undefined reference to `__asan_report_store8'
  518. /usr/include/c++/5/bits/vector.tcc:531: undefined reference to `__asan_report_store8'
  519. /usr/include/c++/5/bits/vector.tcc:532: undefined reference to `__asan_report_store8'
  520. /usr/include/c++/5/bits/vector.tcc:523: undefined reference to `__asan_handle_no_return'
  521. build/world.o: In function `__gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> >*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > >::difference_type __gnu_cxx::operator-<std::vector<tile, std::allocator<tile> >*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > >(__gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> >*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > > const&, __gnu_cxx::__normal_iterator<std::vector<tile, std::allocator<tile> >*, std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > > > const&)':
  522. /usr/include/c++/5/bits/stl_iterator.h:926: undefined reference to `__asan_report_load8'
  523. /usr/include/c++/5/bits/stl_iterator.h:926: undefined reference to `__asan_report_load8'
  524. build/world.o: In function `std::vector<std::vector<tile, std::allocator<tile> >, std::allocator<std::vector<tile, std::allocator<tile> > > >::_M_check_len(unsigned long, char const*) const':
  525. /usr/include/c++/5/bits/stl_vector.h:1425: undefined reference to `__asan_handle_no_return'
  526. /usr/include/c++/5/bits/stl_vector.h:1427: undefined reference to `__asan_report_load8'
  527. build/world.o: In function `__gnu_cxx::__normal_iterator<tile*, std::vector<tile, std::allocator<tile> > >::difference_type __gnu_cxx::operator-<tile*, std::vector<tile, std::allocator<tile> > >(__gnu_cxx::__normal_iterator<tile*, std::vector<tile, std::allocator<tile> > > const&, __gnu_cxx::__normal_iterator<tile*, std::vector<tile, std::allocator<tile> > > const&)':
  528. /usr/include/c++/5/bits/stl_iterator.h:926: undefined reference to `__asan_report_load8'
  529. /usr/include/c++/5/bits/stl_iterator.h:926: undefined reference to `__asan_report_load8'
  530. build/world.o: In function `std::vector<tile, std::allocator<tile> >::_M_check_len(unsigned long, char const*) const':
  531. /usr/include/c++/5/bits/stl_vector.h:1425: undefined reference to `__asan_handle_no_return'
  532. /usr/include/c++/5/bits/stl_vector.h:1427: undefined reference to `__asan_report_load8'
  533. build/world.o: In function `__gnu_cxx::__enable_if<!std::__is_scalar<tile>::__value, void>::__type std::__fill_a<tile*, tile>(tile*, tile*, tile const&)':
  534. /usr/include/c++/5/bits/stl_algobase.h:697: undefined reference to `__asan_report_store1'
  535. /usr/include/c++/5/bits/stl_algobase.h:697: undefined reference to `__asan_report_load1'
  536. build/world.o: In function `std::vector<tile, std::allocator<tile> >* std::__uninitialized_fill_n<false>::__uninit_fill_n<std::vector<tile, std::allocator<tile> >*, unsigned long, std::vector<tile, std::allocator<tile> > >(std::vector<tile, std::allocator<tile> >*, unsigned long, std::vector<tile, std::allocator<tile> > const&)':
  537. /usr/include/c++/5/bits/stl_uninitialized.h:208: undefined reference to `__asan_handle_no_return'
  538. build/world.o: In function `tile* std::__copy_move_backward<false, false, std::random_access_iterator_tag>::__copy_move_b<tile*, tile*>(tile*, tile*, tile*)':
  539. /usr/include/c++/5/bits/stl_algobase.h:547: undefined reference to `__asan_report_store1'
  540. /usr/include/c++/5/bits/stl_algobase.h:547: undefined reference to `__asan_report_load1'
  541. build/worldgen.o: In function `worldgen::worldgen()':
  542. /media/krystal/Content/Code/C++/Rogue/src/worldgen.cpp:8: undefined reference to `__asan_report_store4'
  543. /media/krystal/Content/Code/C++/Rogue/src/worldgen.cpp:9: undefined reference to `__asan_report_store4'
  544. build/worldgen.o: In function `worldgen::worldgen(int, int)':
  545. /media/krystal/Content/Code/C++/Rogue/src/worldgen.cpp:15: undefined reference to `__asan_report_store4'
  546. /media/krystal/Content/Code/C++/Rogue/src/worldgen.cpp:16: undefined reference to `__asan_report_store4'
  547. build/worldgen.o: In function `worldgen::generateworld()':
  548. /media/krystal/Content/Code/C++/Rogue/src/worldgen.cpp:22: undefined reference to `__asan_report_load4'
  549. /media/krystal/Content/Code/C++/Rogue/src/worldgen.cpp:23: undefined reference to `__asan_report_load4'
  550. /media/krystal/Content/Code/C++/Rogue/src/worldgen.cpp:37: undefined reference to `__asan_report_load4'
  551. /media/krystal/Content/Code/C++/Rogue/src/worldgen.cpp:37: undefined reference to `__asan_report_load4'
  552. /media/krystal/Content/Code/C++/Rogue/src/worldgen.cpp:40: undefined reference to `__asan_report_load4'
  553. build/worldgen.o:/media/krystal/Content/Code/C++/Rogue/src/worldgen.cpp:40: more undefined references to `__asan_report_load4' follow
  554. build/worldgen.o: In function `_GLOBAL__sub_I_00099_0__ZN8worldgenC2Ev':
  555. /media/krystal/Content/Code/C++/Rogue/src/worldgen.cpp:66: undefined reference to `__asan_init_v4'
  556. collect2: error: ld returned 1 exit status
  557. Makefile:21: recipe for target 'bin/exec' failed
  558. make: *** [bin/exec] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement