Changeset fe171357 in mainline


Ignore:
Timestamp:
2017-11-12T11:32:46Z (6 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e6ae77a
Parents:
493f1be
Message:

Make assembler warnings fatal again for all architectures

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile.build

    r493f1be rfe171357  
    3636DEFS = -DBOOT -DRELEASE=$(RELEASE) "-DCOPYRIGHT=$(COPYRIGHT)" "-DNAME=$(NAME)" -D__$(BITS)_BITS__ -D__$(ENDIANESS)__
    3737
    38 AFLAGS =
     38AFLAGS = --fatal-warnings
    3939LFLAGS = --fatal-warnings --warn-common
    40 
    41 # FIXME: This condition is a workaround for issue #693.
    42 ifneq ($(BARCH),mips32)
    43         AFLAGS += --fatal-warnings
    44 endif
    4540
    4641COMMON_CFLAGS = $(INCLUDES) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \
  • kernel/Makefile

    r493f1be rfe171357  
    119119# AFLAGS and LFLAGS must be initialized before the inclusion.
    120120#
    121 AFLAGS =
     121AFLAGS = --fatal-warnings
    122122LFLAGS = -n -T $(LINK) -M --fatal-warnings --warn-common
    123 
    124 # FIXME: This condition is a workaround for issues #693 and #694.
    125 ifneq ($(KARCH),sparc64)
    126 ifneq ($(KARCH),mips32)
    127         AFLAGS += --fatal-warnings
    128 endif
    129 endif
    130123
    131124ifeq ($(CONFIG_STRIP_BINARIES),y)
  • uspace/Makefile.common

    r493f1be rfe171357  
    111111LIBDLTEST_PREFIX = $(LIB_PREFIX)/dltest
    112112
    113 AFLAGS =
     113AFLAGS = --fatal-warnings
    114114LFLAGS = --fatal-warnings --warn-common
    115 
    116 # FIXME: This condition is a workaround for issues #692 and #693.
    117 ifneq ($(KARCH),ia64)
    118 ifneq ($(KARCH),mips32)
    119         AFLAGS += --fatal-warnings
    120 endif
    121 endif
    122115
    123116ifeq ($(STATIC_NEEDED),y)
Note: See TracChangeset for help on using the changeset viewer.