Guest User

Untitled

a guest
Dec 11th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.82 KB | None | 0 0
  1. petrie:~/dev-src/libmowgli-2/src/libmowgli$ make
  2. Entering directory core.
  3. Successfully compiled init.c (lib).
  4. Successfully compiled alloc.c (lib).
  5. Successfully compiled allocation_policy.c (lib).
  6. Successfully compiled allocator.c (lib).
  7. Successfully compiled heap.c (lib).
  8. Successfully compiled logger.c (lib).
  9. Successfully compiled mowgli_string.c (lib).
  10. Successfully linked mowgli.core.a.
  11. Leaving directory core.
  12. Entering directory base.
  13. Successfully compiled argstack.c (lib).
  14. Successfully compiled bitvector.c (lib).
  15. Successfully compiled formatter.c (lib).
  16. Successfully compiled hash.c (lib).
  17. Successfully compiled hook.c (lib).
  18. Successfully compiled mempool.c (lib).
  19. Successfully compiled random.c (lib).
  20. Successfully linked mowgli.base.a.
  21. Leaving directory base.
  22. Entering directory atomic.
  23. spinlock.c: In function 'mowgli_spinlock_lock':
  24. spinlock.c:38:3: warning: 'mowgli_spinlock_wait' is deprecated (declared at ../atomic/spinlock.h:41) [-Wdeprecated-declarations]
  25. spinlock.c:41:3: warning: 'mowgli_spinlock_wait' is deprecated (declared at ../atomic/spinlock.h:41) [-Wdeprecated-declarations]
  26. Successfully compiled spinlock.c (lib).
  27. Successfully linked mowgli.atomic.a.
  28. Leaving directory atomic.
  29. Entering directory container.
  30. Successfully compiled list.c (lib).
  31. Successfully compiled queue.c (lib).
  32. Successfully compiled index.c (lib).
  33. Successfully compiled patricia.c (lib).
  34. Successfully linked mowgli.container.a.
  35. Leaving directory container.
  36. Entering directory ext.
  37. Successfully compiled error_backtrace.c (lib).
  38. global_storage.c: In function 'mowgli_global_storage_init':
  39. global_storage.c:38:2: warning: 'mowgli_spinlock_create' is deprecated (declared at ../atomic/spinlock.h:38) [-Wdeprecated-declarations]
  40. global_storage.c: In function 'mowgli_global_storage_get':
  41. global_storage.c:47:2: warning: 'mowgli_spinlock_lock' is deprecated (declared at ../atomic/spinlock.h:39) [-Wdeprecated-declarations]
  42. global_storage.c:49:2: warning: 'mowgli_spinlock_unlock' is deprecated (declared at ../atomic/spinlock.h:40) [-Wdeprecated-declarations]
  43. global_storage.c: In function 'mowgli_global_storage_put':
  44. global_storage.c:57:2: warning: 'mowgli_spinlock_lock' is deprecated (declared at ../atomic/spinlock.h:39) [-Wdeprecated-declarations]
  45. global_storage.c:59:2: warning: 'mowgli_spinlock_unlock' is deprecated (declared at ../atomic/spinlock.h:40) [-Wdeprecated-declarations]
  46. global_storage.c: In function 'mowgli_global_storage_free':
  47. global_storage.c:65:2: warning: 'mowgli_spinlock_lock' is deprecated (declared at ../atomic/spinlock.h:39) [-Wdeprecated-declarations]
  48. global_storage.c:67:2: warning: 'mowgli_spinlock_unlock' is deprecated (declared at ../atomic/spinlock.h:40) [-Wdeprecated-declarations]
  49. Successfully compiled global_storage.c (lib).
  50. Successfully linked mowgli.ext.a.
  51. Leaving directory ext.
  52. Entering directory platform.
  53. Entering directory win32.
  54. Successfully compiled gettimeofday.c (lib).
  55. Successfully linked mowgli.platform.win32.a.
  56. Leaving directory win32.
  57. Leaving directory platform.
  58. Entering directory module.
  59. Successfully compiled loader_posix.c (lib).
  60. Successfully linked mowgli.module.a.
  61. Leaving directory module.
  62. Entering directory object.
  63. Successfully compiled object.c (lib).
  64. Successfully compiled class.c (lib).
  65. Successfully compiled message.c (lib).
  66. Successfully compiled metadata.c (lib).
  67. Successfully linked mowgli.object.a.
  68. Leaving directory object.
  69. Successfully linked libmowgli-2.so.
  70. petrie:~/dev-src/libmowgli-2/src/libmowgli$ nm libmowgli-2.so
  71. 0000000000200430 a _DYNAMIC
  72. 00000000002005d0 a _GLOBAL_OFFSET_TABLE_
  73. w _Jv_RegisterClasses
  74. 0000000000200410 d __CTOR_END__
  75. 0000000000200408 d __CTOR_LIST__
  76. 0000000000200420 d __DTOR_END__
  77. 0000000000200418 d __DTOR_LIST__
  78. 0000000000000404 r __FRAME_END__
  79. 0000000000200428 d __JCR_END__
  80. 0000000000200428 d __JCR_LIST__
  81. 00000000002005f8 A __bss_start
  82. w __cxa_finalize
  83. 00000000000003d0 t __do_global_ctors_aux
  84. 000000000000033c t __do_global_dtors_aux
  85. 00000000002005f0 d __dso_handle
  86. 00000000002005f8 A _edata
  87. 0000000000200608 A _end
  88. 00000000000003f4 T _fini
  89. 0000000000000308 T _init
  90. 00000000002005f8 b completed.5736
  91. 0000000000200600 b dtor_idx.5738
  92. 00000000000003a7 t frame_dummy
  93. petrie:~/dev-src/libmowgli-2/src/libmowgli$ cat Makefile
  94. include ../../extra.mk
  95.  
  96. SHARED_LIB = ${LIB_PREFIX}mowgli-2${LIB_SUFFIX}
  97. LIB_MAJOR = 0
  98. LIB_MINOR = 0
  99.  
  100. SUBDIRS = core base atomic container ext platform module object
  101.  
  102. INCLUDES = mowgli.h
  103.  
  104. include ../../buildsys.mk
  105.  
  106. CPPFLAGS += ${LIB_CPPFLAGS} -I. -I.. -DMOWGLI_CORE
  107. CFLAGS += ${LIB_CFLAGS}
  108.  
  109. LIBS += core/mowgli.core.a \
  110. base/mowgli.base.a \
  111. platform/win32/mowgli.platform.win32.a \
  112. module/mowgli.module.a \
  113. object/mowgli.object.a \
  114. container/mowgli.container.a \
  115. ext/mowgli.ext.a \
  116. atomic/mowgli.atomic.a
Add Comment
Please, Sign In to add comment