Codebase list crossguid / 4f6eebe0-0dd3-4873-a65e-1da986a6263f/main linux.sh
4f6eebe0-0dd3-4873-a65e-1da986a6263f/main

Tree @4f6eebe0-0dd3-4873-a65e-1da986a6263f/main (Download .tar.gz)

linux.sh @4f6eebe0-0dd3-4873-a65e-1da986a6263f/main

476519d
 
 
 
 
 
 
 
 
 
#!/usr/bin/env bash

./clean.sh

g++ -c guid.cpp -o guid.o -Wall -std=c++11 -DGUID_LIBUUID
g++ -c test.cpp -o test.o -Wall -std=c++11
g++ -c testmain.cpp -o testmain.o -Wall
g++ test.o guid.o testmain.o -o test -luuid
chmod +x test
./test