Advertisement
Guest User

Untitled

a guest
Jul 13th, 2016
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. ## ON DEBIAN DEV ENV
  2.  
  3. cd /home/user/
  4. git clone git://git.alsa-project.org/alsa-lib.git
  5.  
  6. cd /home/user/alsa-lib/
  7. libtoolize --force --copy --automake
  8. aclocal
  9. autoheader
  10. automake --foreign --copy --add-missing
  11. autoconf
  12. ./configure --host=arm-unknown-linux-gnueabihf --enable-static=no --enable-shared=yes
  13. make
  14. cd ..
  15. scp -r alsa-lib pi@raspberrypi:/home/pi/src/alsa-lib
  16.  
  17.  
  18.  
  19. ## ON RASPBERRY PI
  20. cd /home/pi/src/alsa-lib/
  21. ./configure --host=arm-unknown-linux-gnueabihf --enable-static=no --enable-shared=yes
  22. sudo make install
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement