浏览代码

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.
Itamar 4 年之前
父节点
当前提交
e318a3d3d4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Base/home/anon/Source/little/Makefile

+ 1 - 1
Base/home/anon/Source/little/Makefile

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