blob: f1dfbb64a442655bbeb27a64f0b3565f98a6e97d (
plain)
1
2
3
4
5
6
7
8
|
#
# Disable var tracking assignments for Linux with this test
#
ifneq ($(linux_id),)
$(test)_cppflags += $(if $(filter yes,$(OPTIMIZE)),-fno-var-tracking-assignments)
endif
tests += $(test)
|