Advertisement
Guest User

manually

a guest
Sep 11th, 2014
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. http://www.yoctoproject.org/docs/1.6.1/adt-manual/adt-manual.html
  2. 5.1.1. Creating and Running a Project Based on GNU Autotools
  3.  
  4. bitbake libsdl2-image -c devshell
  5. aclocal -Iaclocal-copy
  6. touch NEWS README AUTHORS ChangeLog
  7. automake -a
  8. ./configure --host=arm-poky-linux-gnueabi
  9. make
  10. make install DESTDIR=$(pwd)/tmp
  11. tree tmp
  12. tmp
  13. `-- usr
  14. `-- local
  15. |-- include
  16. | `-- SDL2
  17. | `-- SDL_image.h
  18. `-- lib
  19. |-- libSDL2_image-2.0.so.0 -> libSDL2_image-2.0.so.0.0.0
  20. |-- libSDL2_image-2.0.so.0.0.0
  21. |-- libSDL2_image.a
  22. |-- libSDL2_image.la
  23. |-- libSDL2_image.so -> libSDL2_image-2.0.so.0.0.0
  24. `-- pkgconfig
  25. `-- SDL2_image.pc
  26.  
  27. file tmp/usr/local/lib/libSDL2_image-2.0.so.0.0.0
  28. tmp/usr/local/lib/libSDL2_image-2.0.so.0.0.0: ELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, BuildID[sha1]=c524a801232da836d0d14325817fa215d5bd8a95, not stripped
  29. => OK
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement