Changeset ac47b7c2 in mainline for kernel/Makefile


Ignore:
Timestamp:
2009-06-18T08:30:50Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
12956e57
Parents:
553492be
Message:

define endianess externally to be able to exactly specify whether we are using UTF-32LE or UTF-32BE
quit messing with BOM in UTF-32

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/Makefile

    r553492be rac47b7c2  
    4545#
    4646
    47 DEFS = -DKERNEL -DRELEASE=$(RELEASE) "-DNAME=$(NAME)"
     47DEFS = -DKERNEL -DRELEASE=$(RELEASE) "-DNAME=$(NAME)" -D__$(BITS)_BITS__ -D__$(ENDIANESS)__
    4848
    4949GCC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros ../config.h \
    50         -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32 -finput-charset=UTF-8 \
    51         -fno-builtin -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes -Werror \
    52         -nostdlib -nostdinc -pipe
     50        -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \
     51        -finput-charset=UTF-8 -fno-builtin -Wall -Wextra -Wno-unused-parameter \
     52        -Wmissing-prototypes -Werror -nostdlib -nostdinc -pipe
    5353
    5454ICC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros ../config.h \
Note: See TracChangeset for help on using the changeset viewer.