Skip to content

Commit 4bc0236

Browse files
committed
Fix macOS build
1 parent d30588c commit 4bc0236

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

grabTitles.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ def checkAndDeleteFile(file):
2222

2323
checkAndDeleteFile("gtitles/gtitles.c")
2424
urllib.request.urlretrieve("https://napi.nbg01.v10lator.de/db", "gtitles/gtitles.c")
25-
os.system("gcc -c -Wall -fpic -Ofast -flto=auto -pipe -Igtitles -o gtitles/gtitles.o gtitles/gtitles.c")
25+
os.system("gcc -c -Wall -fpic -Ofast -pipe -Igtitles -o gtitles/gtitles.o gtitles/gtitles.c")
2626
os.system("ar rcs libgtitles.a gtitles/gtitles.o")
2727
os.system("gcc -shared -o gtitles/libgtitles.so gtitles/gtitles.o")
2828

29-
os.system("gcc -c -Wall -fpic -Ofast -flto=auto -pipe -UNDEBUG -DAES_ROM_TABLES -D_GNU_SOURCE -Icdecrypt -o cdecrypt/aes.o cdecrypt/aes.c")
30-
os.system("gcc -c -Wall -fpic -Ofast -flto=auto -pipe -UNDEBUG -DAES_ROM_TABLES -D_GNU_SOURCE -Icdecrypt -o cdecrypt/cdecrypt.o cdecrypt/cdecrypt.c")
31-
os.system("gcc -c -Wall -fpic -Ofast -flto=auto -pipe -UNDEBUG -DAES_ROM_TABLES -D_GNU_SOURCE -Icdecrypt -o cdecrypt/sha1.o cdecrypt/sha1.c")
32-
os.system("gcc -c -Wall -fpic -Ofast -flto=auto -pipe -UNDEBUG -DAES_ROM_TABLES -D_GNU_SOURCE -Icdecrypt -o cdecrypt/util.o cdecrypt/util.c")
29+
os.system("gcc -c -Wall -fpic -Ofast -pipe -UNDEBUG -DAES_ROM_TABLES -D_GNU_SOURCE -Icdecrypt -o cdecrypt/aes.o cdecrypt/aes.c")
30+
os.system("gcc -c -Wall -fpic -Ofast -pipe -UNDEBUG -DAES_ROM_TABLES -D_GNU_SOURCE -Icdecrypt -o cdecrypt/cdecrypt.o cdecrypt/cdecrypt.c")
31+
os.system("gcc -c -Wall -fpic -Ofast -pipe -UNDEBUG -DAES_ROM_TABLES -D_GNU_SOURCE -Icdecrypt -o cdecrypt/sha1.o cdecrypt/sha1.c")
32+
os.system("gcc -c -Wall -fpic -Ofast -pipe -UNDEBUG -DAES_ROM_TABLES -D_GNU_SOURCE -Icdecrypt -o cdecrypt/util.o cdecrypt/util.c")
3333
os.system("ar rcs libcdecrypt.a cdecrypt/*.o")
3434
os.system("gcc -shared -o cdecrypt/libcdecrypt.so cdecrypt/*.o")

0 commit comments

Comments
 (0)