~ubuntu-branches/debian/experimental/linux-tools/experimental

« back to all changes in this revision

Viewing changes to arch/arm64/Makefile

  • Committer: Package Import Robot
  • Author(s): Ben Hutchings
  • Date: 2014-02-02 16:57:49 UTC
  • mfrom: (1.1.10) (0.1.21 sid)
  • Revision ID: package-import@ubuntu.com-20140202165749-tw94o9t1t0a8txk6
Tags: 3.13-1~exp2
Merge changes from sid up to 3.12.6-3

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
KBUILD_DEFCONFIG := defconfig
21
21
 
22
22
KBUILD_CFLAGS   += -mgeneral-regs-only
 
23
ifeq ($(CONFIG_CPU_BIG_ENDIAN), y)
 
24
KBUILD_CPPFLAGS += -mbig-endian
 
25
AS              += -EB
 
26
LD              += -EB
 
27
else
23
28
KBUILD_CPPFLAGS += -mlittle-endian
24
29
AS              += -EL
25
30
LD              += -EL
 
31
endif
26
32
 
27
33
comma = ,
28
34