diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2015-01-14 17:50:19 +0100 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2015-01-22 12:15:57 +0100 |
commit | f8b2dcbd9e6d1479b9b5a9e9e78bbaf783bde819 (patch) | |
tree | 0752b6462bcee89772569a8fff515863ecec6521 /arch/s390/Makefile | |
parent | e982506730815f9e3bcd148d06b5b6d778d9c46c (diff) | |
download | linux-f8b2dcbd9e6d1479b9b5a9e9e78bbaf783bde819.tar.gz linux-f8b2dcbd9e6d1479b9b5a9e9e78bbaf783bde819.tar.bz2 linux-f8b2dcbd9e6d1479b9b5a9e9e78bbaf783bde819.zip |
s390: add z13 code generation support
Allow to generate code that only runs on z13 machines.
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/Makefile')
-rw-r--r-- | arch/s390/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/s390/Makefile b/arch/s390/Makefile index 878e67973151..e742ec5de9a7 100644 --- a/arch/s390/Makefile +++ b/arch/s390/Makefile @@ -42,6 +42,7 @@ mflags-$(CONFIG_MARCH_Z9_109) := -march=z9-109 mflags-$(CONFIG_MARCH_Z10) := -march=z10 mflags-$(CONFIG_MARCH_Z196) := -march=z196 mflags-$(CONFIG_MARCH_ZEC12) := -march=zEC12 +mflags-$(CONFIG_MARCH_Z13) := -march=z13 aflags-y += $(mflags-y) cflags-y += $(mflags-y) @@ -53,6 +54,7 @@ cflags-$(CONFIG_MARCH_Z9_109_TUNE) += -mtune=z9-109 cflags-$(CONFIG_MARCH_Z10_TUNE) += -mtune=z10 cflags-$(CONFIG_MARCH_Z196_TUNE) += -mtune=z196 cflags-$(CONFIG_MARCH_ZEC12_TUNE) += -mtune=zEC12 +cflags-$(CONFIG_MARCH_Z13_TUNE) += -mtune=z13 #KBUILD_IMAGE is necessary for make rpm KBUILD_IMAGE :=arch/s390/boot/image |