Created
April 6, 2010 16:25
-
-
Save abuiles/357777 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nasm -f elf matrix.asm -g | |
gcc -shared matrix.o -o libmatrix.so | |
sudo rm /usr/local/lib/libmatrix.so | |
sudo rm /usr/lib/libmatrix.so | |
sudo rm /usr/include/matrix.h | |
sudo rm /usr/local/include/matrix.h | |
sudo cp libmatrix.so /usr/local/lib/ | |
sudo cp libmatrix.so /usr/lib/ | |
sudo cp matrix.h /usr/include/ | |
sudo cp matrix.h /usr/local/include/ | |
gcc operaciones.c -lmatrix -std=c99 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment