1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:28:11 +00:00

little: Remove "-Os" compile flag

This flag made gcc generate location info of type "location_list" for
'my_struct', which we do not yet support in LibDebug.
This commit is contained in:
Itamar 2021-01-08 12:15:24 +02:00 committed by Andreas Kling
parent 94db04fc12
commit e318a3d3d4

View file

@ -1,6 +1,6 @@
PROGRAM = little
OBJS = main.o other.o
CXXFLAGS = -g -Os -std=c++2a
CXXFLAGS = -g -std=c++2a
all: $(PROGRAM)