1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 12:40:36 +00:00

Turn off optimization for now

We'll turn this on later when we have it better sorted out.
This commit is contained in:
Matthew Kilgore 2022-05-14 12:15:32 -04:00
parent 7a5ca0c49c
commit 73c1c7245d

View file

@ -12511,9 +12511,7 @@ CxxFlagsExtra$ = ""
CxxLibsExtra$ = ""
IF Include_GDB_Debugging_Info THEN
CxxFlagsExtra$ = "-Og"
ELSE
CxxFlagsExtra$ = "-O2"
CxxFlagsExtra$ = "-g"
END IF
CxxLibsExtra$ = mylib$ + " " + mylibopt$