Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.07 KB | None | 0 0
  1. oberstet@thinkpad-t430s:~/scm/oberstet/scratchbox/cpp/capnproto/test1$ export CPPYYHOME=${HOME}/pypy-5.6-linux_x86_64-portable/site-packages/cppyy_backend
  2. oberstet@thinkpad-t430s:~/scm/oberstet/scratchbox/cpp/capnproto/test1$ export LD_LIBRARY_PATH=${CPPYYHOME}/lib:${LD_LIBRARY_PATH}
  3. oberstet@thinkpad-t430s:~/scm/oberstet/scratchbox/cpp/capnproto/test1$ export PATH=${CPPYYHOME}/bin:${PATH}
  4. oberstet@thinkpad-t430s:~/scm/oberstet/scratchbox/cpp/capnproto/test1$ which genreflex
  5. /home/oberstet/pypy-5.6-linux_x86_64-portable/site-packages/cppyy_backend/bin/genreflex
  6. oberstet@thinkpad-t430s:~/scm/oberstet/scratchbox/cpp/capnproto/test1$ genreflex MyClass.h
  7. oberstet@thinkpad-t430s:~/scm/oberstet/scratchbox/cpp/capnproto/test1$ clang++ -std=c++11 -fPIC -rdynamic -O2 -shared -I$CPPYYHOME/include MyClass_rflx.cpp -o libMyClassDict.so -L$CPPYYHOME/lib -lCling
  8. oberstet@thinkpad-t430s:~/scm/oberstet/scratchbox/cpp/capnproto/test1$ ldd libMyClassDict.so
  9. linux-vdso.so.1 => (0x00007ffeb78e0000)
  10. libCling.so => /home/oberstet/pypy-5.6-linux_x86_64-portable/site-packages/cppyy_backend/lib/libCling.so (0x00007f6657596000)
  11. libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f66571f8000)
  12. libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f6656eef000)
  13. libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f6656cd9000)
  14. libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f665690f000)
  15. libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f665670b000)
  16. libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f66564ee000)
  17. libRIO.so => /home/oberstet/pypy-5.6-linux_x86_64-portable/site-packages/cppyy_backend/lib/libRIO.so (0x00007f6655ffd000)
  18. librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007f6655df5000)
  19. libtinfo.so.5 => /lib/x86_64-linux-gnu/libtinfo.so.5 (0x00007f6655bcc000)
  20. libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007f66559b1000)
  21. libThread.so => /home/oberstet/pypy-5.6-linux_x86_64-portable/site-packages/cppyy_backend/lib/libThread.so (0x00007f665578a000)
  22. libCore.so => /home/oberstet/pypy-5.6-linux_x86_64-portable/site-packages/cppyy_backend/lib/libCore.so (0x00007f6655190000)
  23. /lib64/ld-linux-x86-64.so.2 (0x000055961b031000)
  24. oberstet@thinkpad-t430s:~/scm/oberstet/scratchbox/cpp/capnproto/test1$ nm libMyClassDict.so | grep " U "
  25. U __cxa_atexit@@GLIBC_2.2.5
  26. U __cxa_guard_abort@@CXXABI_1.3
  27. U __cxa_guard_acquire@@CXXABI_1.3
  28. U __cxa_guard_release@@CXXABI_1.3
  29. U __gxx_personality_v0@@CXXABI_1.3
  30. U _Unwind_Resume@@GCC_3.0
  31. U _ZdaPv@@GLIBCXX_3.4
  32. U _ZdlPv@@GLIBCXX_3.4
  33. U _ZN13TVersionCheckC1Ei
  34. U _ZN4ROOT17TGenericClassInfo11SetNewArrayEPFPvlS1_E
  35. U _ZN4ROOT17TGenericClassInfo13SetDestructorEPFvPvE
  36. U _ZN4ROOT17TGenericClassInfo14SetDeleteArrayEPFvPvE
  37. U _ZN4ROOT17TGenericClassInfo6SetNewEPFPvS1_E
  38. U _ZN4ROOT17TGenericClassInfo8GetClassEv
  39. U _ZN4ROOT17TGenericClassInfo9SetDeleteEPFvPvE
  40. U _ZN4ROOT17TGenericClassInfoC1EPKcS2_iRKSt9type_infoPKNS_8Internal13TInitBehaviorEPFP6TClassvEP16TVirtualIsAProxyii
  41. U _ZN4ROOT17TGenericClassInfoD1Ev
  42. U _ZN4ROOT8Internal14DefineBehaviorEPvS1_
  43. U _ZN5TROOT14RegisterModuleEPKcPS1_S2_S1_S1_PFvvERKSt6vectorISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiESaISD_EES2_
  44. U _ZN9TIsAProxyC1ERKSt9type_info
  45. U _Znam@@GLIBCXX_3.4
  46. U _Znwm@@GLIBCXX_3.4
  47. U _ZTVN10__cxxabiv117__class_type_infoE@@CXXABI_1.3
  48. oberstet@thinkpad-t430s:~/scm/oberstet/scratchbox/cpp/capnproto/test1$ export LD_LIBRARY_PATH=${PWD}:${LD_LIBRARY_PATH}
  49. oberstet@thinkpad-t430s:~/scm/oberstet/scratchbox/cpp/capnproto/test1$ export PATH=${HOME}/pypy-5.6-linux_x86_64-portable/bin:${PATH}
  50. oberstet@thinkpad-t430s:~/scm/oberstet/scratchbox/cpp/capnproto/test1$ pypy MyClass.py
  51. unknown type code: P
  52. 1
  53. unknown type code: �
  54. -178968160
  55. 77
  56. oberstet@thinkpad-t430s:~/scm/oberstet/scratchbox/cpp/capnproto/test1$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement