We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f3b12b commit 41df9cbCopy full SHA for 41df9cb
mk/platform.mk
@@ -9,8 +9,14 @@ endef
9
$(foreach t,$(CFG_TARGET_TRIPLES),$(eval $(call DEF_HOST_VAR,$(t))))
10
$(foreach t,$(CFG_TARGET_TRIPLES),$(info cfg: host for $(t) is $(HOST_$(t))))
11
12
+# FIXME: This appears to do nothing
13
CFG_GCCISH_FLAGS += -fno-strict-aliasing
14
15
+# FIXME: no-omit-frame-pointer is just so that task_start_wrapper
16
+# has a frame pointer and the stack walker can understand it. Turning off
17
+# frame pointers everywhere is overkill
18
+CFG_GCCISH_CFLAGS += -fno-omit-frame-pointer
19
+
20
# On Darwin, we need to run dsymutil so the debugging information ends
21
# up in the right place. On other platforms, it automatically gets
22
# embedded into the executable, so use a no-op command.
0 commit comments