mirror of
https://github.com/Xpl0itU/WiiUDownloader.git
synced 2025-05-12 22:26:15 -04:00
Fix compilation on linux and maybe windows too
This commit is contained in:
parent
f874812950
commit
aa4bcae0fe
1 changed files with 6 additions and 3 deletions
|
@ -26,6 +26,9 @@ os.system("gcc -c -Wall -fpic -Igtitles -o gtitles/gtitles.o gtitles/gtitles.c")
|
|||
os.system("ar rcs libgtitles.a gtitles/gtitles.o")
|
||||
os.system("gcc -shared -o gtitles/libgtitles.so gtitles/gtitles.o")
|
||||
|
||||
os.system("gcc -c -Wall -fpic -Icdecrypt cdecrypt/*.c")
|
||||
os.system("ar rcs libcdecrypt.a *.o")
|
||||
os.system("gcc -shared -o cdecrypt/libcdecrypt.so *.o")
|
||||
os.system("gcc -c -Wall -fpic -O2 -UNDEBUG -DAES_ROM_TABLES -D_GNU_SOURCE -Icdecrypt -o cdecrypt/aes.o cdecrypt/aes.c")
|
||||
os.system("gcc -c -Wall -fpic -O2 -UNDEBUG -DAES_ROM_TABLES -D_GNU_SOURCE -Icdecrypt -o cdecrypt/cdecrypt.o cdecrypt/cdecrypt.c")
|
||||
os.system("gcc -c -Wall -fpic -O2 -UNDEBUG -DAES_ROM_TABLES -D_GNU_SOURCE -Icdecrypt -o cdecrypt/sha1.o cdecrypt/sha1.c")
|
||||
os.system("gcc -c -Wall -fpic -O2 -UNDEBUG -DAES_ROM_TABLES -D_GNU_SOURCE -Icdecrypt -o cdecrypt/util.o cdecrypt/util.c")
|
||||
os.system("ar rcs libcdecrypt.a cdecrypt/*.o")
|
||||
os.system("gcc -shared -o cdecrypt/libcdecrypt.so cdecrypt/*.o")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue