From 34c93fbb8126ad2fa736d0199e7511baaaa56214081ac62d51a19478aac8cdbb Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Mon, 18 May 2015 15:13:16 +0000 Subject: [PATCH 01/13] Accepting request 307494 from home:sumski:branches:devel:gcc - Added binutils-fix--dynamic-list.patch: Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and https://sourceware.org/bugzilla/show_bug.cgi?id=16992 - Added binutils-fix--dynamic-list.patch: Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and https://sourceware.org/bugzilla/show_bug.cgi?id=16992 - Added binutils-fix--dynamic-list.patch: Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and https://sourceware.org/bugzilla/show_bug.cgi?id=16992 - Added binutils-fix--dynamic-list.patch: Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and https://sourceware.org/bugzilla/show_bug.cgi?id=16992 - Added binutils-fix--dynamic-list.patch: Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and https://sourceware.org/bugzilla/show_bug.cgi?id=16992 - Added binutils-fix--dynamic-list.patch: Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and https://sourceware.org/bugzilla/show_bug.cgi?id=16992 - Added binutils-fix--dynamic-list.patch: Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and https://sourceware.org/bugzilla/show_bug.cgi?id=16992 - Added binutils-fix--dynamic-list.patch: Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and OBS-URL: https://build.opensuse.org/request/show/307494 OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=181 --- binutils-fix--dynamic-list.patch | 127 +++++++++++++++++++++++++++++++ binutils.changes | 7 ++ binutils.spec | 2 + cross-aarch64-binutils.changes | 7 ++ cross-aarch64-binutils.spec | 2 + cross-arm-binutils.changes | 7 ++ cross-arm-binutils.spec | 2 + cross-avr-binutils.changes | 7 ++ cross-avr-binutils.spec | 2 + cross-epiphany-binutils.changes | 7 ++ cross-epiphany-binutils.spec | 2 + cross-hppa-binutils.changes | 7 ++ cross-hppa-binutils.spec | 2 + cross-hppa64-binutils.changes | 7 ++ cross-hppa64-binutils.spec | 2 + cross-i386-binutils.changes | 7 ++ cross-i386-binutils.spec | 2 + cross-ia64-binutils.changes | 7 ++ cross-ia64-binutils.spec | 2 + cross-m68k-binutils.changes | 7 ++ cross-m68k-binutils.spec | 2 + cross-mips-binutils.changes | 7 ++ cross-mips-binutils.spec | 2 + cross-ppc-binutils.changes | 7 ++ cross-ppc-binutils.spec | 2 + cross-ppc64-binutils.changes | 7 ++ cross-ppc64-binutils.spec | 2 + cross-ppc64le-binutils.changes | 7 ++ cross-ppc64le-binutils.spec | 2 + cross-s390-binutils.changes | 7 ++ cross-s390-binutils.spec | 2 + cross-s390x-binutils.changes | 7 ++ cross-s390x-binutils.spec | 2 + cross-sparc-binutils.changes | 7 ++ cross-sparc-binutils.spec | 2 + cross-sparc64-binutils.changes | 7 ++ cross-sparc64-binutils.spec | 2 + cross-spu-binutils.changes | 7 ++ cross-spu-binutils.spec | 2 + cross-x86_64-binutils.changes | 7 ++ cross-x86_64-binutils.spec | 2 + 41 files changed, 307 insertions(+) create mode 100644 binutils-fix--dynamic-list.patch diff --git a/binutils-fix--dynamic-list.patch b/binutils-fix--dynamic-list.patch new file mode 100644 index 0000000..e69f0eb --- /dev/null +++ b/binutils-fix--dynamic-list.patch @@ -0,0 +1,127 @@ +From e9c1bdad269c0c3352eebcc9481ed65144001b0b Mon Sep 17 00:00:00 2001 +From: Cary Coutant +Date: Mon, 16 Feb 2015 22:15:12 -0800 +Subject: [PATCH] Fix --dynamic-list so that symbols not in the list are still + exported. + +In PR 13577, the complaint was that -Bsymbolic was overriding the binding +behavior for symbols listed in the --dynamic-list by setting the DT_SYMBOLIC +tag in the dynamic table. In reading the Gnu ld manual, I decided that +--dynamic-list should be mutually exclusive of -Bsymbolic, and modified +gold so that --dynamic-list would treat symbols listed as preemptible, +and all other symbols as internally bound. I was wrong. + +PR 16992 shows that with --dynamic-list (and not -Bsymbolic), a symbol +not listed in the dynamic list is being internally bound within the +shared library, but because it's still in the dynamic symbol table, we +expose it to a COPY relocation, and things go really bad from there. + +(I can reproduce the same failure, simply by turning on -Bsymbolic-functions +with the Gnu linker. Even though the symbol is bound internally, it's +still exported to the dynamic symbol table, and is exposed to a COPY +relocation.) + +I've backed out part of the fix for PR 13577, and -Bsymbolic (or +-Bsymbolic-functions) can now be used with --dynamic-list, but if the +two are used together, we do not set DT_SYMBOLIC or DF_SYMBOLIC +(this matches Gnu ld behavior). We now treat symbols listed in the +dynamic list as premptible, but we do not automatically treat symbols +not listed there as non-premptible. + +gold/ + PR gold/13577 + PR gold/16992 + * layout.cc (Layout::finish_dynamic_section): Don't set DT_SYMBOLIC or + DF_SYMBOLIC if --dynamic-list option is used. + * options.cc (General_options::finalize): --dynamic-list is not + mutually exclusive with -Bsymbolic. + * symtab.h (Symbol::is_preemptible): Don't exclude dynamic symbols not + listed in --dynamic-list. + * testsuite/Makefile.am (dynamic_list_lib2.so): Add + -Bsymbolic-functions. + * testsuite/Makefile.in: Regenerate. +--- + gold/layout.cc | 3 ++- + gold/options.cc | 7 ------- + gold/symtab.h | 6 ++---- + gold/testsuite/Makefile.am | 2 +- + gold/testsuite/Makefile.in | 2 +- + 5 files changed, 6 insertions(+), 14 deletions(-) + +diff --git a/gold/layout.cc b/gold/layout.cc +index bcdaac8..7836640 100644 +--- a/gold/layout.cc ++++ b/gold/layout.cc +@@ -4873,7 +4873,8 @@ Layout::finish_dynamic_section(const Input_objects* input_objects, + flags |= elfcpp::DF_STATIC_TLS; + if (parameters->options().origin()) + flags |= elfcpp::DF_ORIGIN; +- if (parameters->options().Bsymbolic()) ++ if (parameters->options().Bsymbolic() ++ && !parameters->options().have_dynamic_list()) + { + flags |= elfcpp::DF_SYMBOLIC; + // Add DT_SYMBOLIC for compatibility with older loaders. +diff --git a/gold/options.cc b/gold/options.cc +index 7eb8f27..7f1f69e 100644 +--- a/gold/options.cc ++++ b/gold/options.cc +@@ -1200,13 +1200,6 @@ General_options::finalize() + // in the path, as appropriate. + this->add_sysroot(); + +- // --dynamic-list overrides -Bsymbolic and -Bsymbolic-functions. +- if (this->have_dynamic_list()) +- { +- this->set_Bsymbolic(false); +- this->set_Bsymbolic_functions(false); +- } +- + // Now that we've normalized the options, check for contradictory ones. + if (this->shared() && this->is_static()) + gold_fatal(_("-shared and -static are incompatible")); +diff --git a/gold/symtab.h b/gold/symtab.h +index aa0cb68..9413360 100644 +--- a/gold/symtab.h ++++ b/gold/symtab.h +@@ -604,10 +604,8 @@ class Symbol + if (parameters->options().in_dynamic_list(this->name())) + return true; + +- // If the user used -Bsymbolic or provided a --dynamic-list script, +- // then nothing (else) is preemptible. +- if (parameters->options().Bsymbolic() +- || parameters->options().have_dynamic_list()) ++ // If the user used -Bsymbolic, then nothing (else) is preemptible. ++ if (parameters->options().Bsymbolic()) + return false; + + // If the user used -Bsymbolic-functions, then functions are not +diff --git a/gold/testsuite/Makefile.am b/gold/testsuite/Makefile.am +index f767c21..7b73f9d 100644 +--- a/gold/testsuite/Makefile.am ++++ b/gold/testsuite/Makefile.am +@@ -1518,7 +1518,7 @@ dynamic_list_lib1.o: dynamic_list_lib1.cc + $(CXXCOMPILE) -c -fpic -o $@ $< + + dynamic_list_lib2.so: gcctestdir/ld dynamic_list_lib2.o $(srcdir)/dynamic_list_2.t +- $(CXXLINK) -Bgcctestdir/ -shared -Wl,--dynamic-list,$(srcdir)/dynamic_list_2.t dynamic_list_lib2.o ++ $(CXXLINK) -Bgcctestdir/ -shared -Wl,-Bsymbolic-functions -Wl,--dynamic-list,$(srcdir)/dynamic_list_2.t dynamic_list_lib2.o + dynamic_list_lib2.o: dynamic_list_lib2.cc + $(CXXCOMPILE) -c -fpic -o $@ $< + +diff --git a/gold/testsuite/Makefile.in b/gold/testsuite/Makefile.in +index 217e472..b4ae3fd 100644 +--- a/gold/testsuite/Makefile.in ++++ b/gold/testsuite/Makefile.in +@@ -5319,7 +5319,7 @@ uninstall-am: + @GCC_TRUE@@NATIVE_LINKER_TRUE@ $(CXXCOMPILE) -c -fpic -o $@ $< + + @GCC_TRUE@@NATIVE_LINKER_TRUE@dynamic_list_lib2.so: gcctestdir/ld dynamic_list_lib2.o $(srcdir)/dynamic_list_2.t +-@GCC_TRUE@@NATIVE_LINKER_TRUE@ $(CXXLINK) -Bgcctestdir/ -shared -Wl,--dynamic-list,$(srcdir)/dynamic_list_2.t dynamic_list_lib2.o ++@GCC_TRUE@@NATIVE_LINKER_TRUE@ $(CXXLINK) -Bgcctestdir/ -shared -Wl,-Bsymbolic-functions -Wl,--dynamic-list,$(srcdir)/dynamic_list_2.t dynamic_list_lib2.o + @GCC_TRUE@@NATIVE_LINKER_TRUE@dynamic_list_lib2.o: dynamic_list_lib2.cc + @GCC_TRUE@@NATIVE_LINKER_TRUE@ $(CXXCOMPILE) -c -fpic -o $@ $< + +-- +1.9.4 diff --git a/binutils.changes b/binutils.changes index 06b80ad..214b333 100644 --- a/binutils.changes +++ b/binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/binutils.spec b/binutils.spec index 812e973..c72bbf4 100644 --- a/binutils.spec +++ b/binutils.spec @@ -98,6 +98,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -171,6 +172,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index 06b80ad..214b333 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index 4f7d4e2..dd63ac0 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -101,6 +101,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -174,6 +175,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index 06b80ad..214b333 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index d0454e1..64bec47 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -101,6 +101,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -174,6 +175,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index 06b80ad..214b333 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index 172a409..36148df 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -101,6 +101,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -174,6 +175,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-epiphany-binutils.changes b/cross-epiphany-binutils.changes index 06b80ad..214b333 100644 --- a/cross-epiphany-binutils.changes +++ b/cross-epiphany-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index def26b3..7576877 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -101,6 +101,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -174,6 +175,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index 06b80ad..214b333 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index 4fd6bcb..26814c9 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -101,6 +101,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -174,6 +175,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index 06b80ad..214b333 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index 3295f89..a9ea4e8 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -101,6 +101,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -174,6 +175,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index 06b80ad..214b333 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index a4e37ec..2a7fe16 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -101,6 +101,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -174,6 +175,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index 06b80ad..214b333 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index aee6c0c..c13d4d8 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -101,6 +101,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -174,6 +175,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-m68k-binutils.changes b/cross-m68k-binutils.changes index 06b80ad..214b333 100644 --- a/cross-m68k-binutils.changes +++ b/cross-m68k-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index 5e7fc77..1bb91e9 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -101,6 +101,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -174,6 +175,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index 06b80ad..214b333 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index fb8b61e..a17346c 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -101,6 +101,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -174,6 +175,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index 06b80ad..214b333 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index c971027..3e6adbc 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -101,6 +101,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -174,6 +175,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index 06b80ad..214b333 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index ac8a51e..b079a5f 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -101,6 +101,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -174,6 +175,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-ppc64le-binutils.changes b/cross-ppc64le-binutils.changes index 06b80ad..214b333 100644 --- a/cross-ppc64le-binutils.changes +++ b/cross-ppc64le-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index 9a4c24d..b5eb606 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -101,6 +101,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -174,6 +175,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index 06b80ad..214b333 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index aa830c6..35b6d42 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -101,6 +101,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -174,6 +175,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index 06b80ad..214b333 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index 390e677..2290e00 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -101,6 +101,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -174,6 +175,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index 06b80ad..214b333 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index 3f6afe5..c3d37a5 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -101,6 +101,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -174,6 +175,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index 06b80ad..214b333 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index ef172ec..a5f121a 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -101,6 +101,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -174,6 +175,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index 06b80ad..214b333 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index 578104d..e052de1 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -101,6 +101,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -174,6 +175,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index 06b80ad..214b333 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + ------------------------------------------------------------------- Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index 023d8a4..a3ef4ae 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -101,6 +101,7 @@ Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch24: eh-frame-hdr-on-shared-lib-bfd.patch Patch25: gold-opd-visibility.patch +Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -174,6 +175,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch23 %patch24 -p1 %patch25 -p1 +%patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 From ea50f6e67ed88cb4cd43edaa2bf0c7424cbecbe71c7d3edda1a7fbc1257d9fc1 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Mon, 18 May 2015 15:14:41 +0000 Subject: [PATCH 02/13] Accepting request 307690 from home:msmeissn:branches:devel:gcc - move info deinstall to preun section - move info deinstall to preun section - move info deinstall to preun section - move info deinstall to preun section - move info deinstall to preun section - move info deinstall to preun section - move info deinstall to preun section - move info deinstall to preun section - move info deinstall to preun section - move info deinstall to preun section - move info deinstall to preun section - move info deinstall to preun section - move info deinstall to preun section - move info deinstall to preun section - move info deinstall to preun section OBS-URL: https://build.opensuse.org/request/show/307690 OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=182 --- binutils.changes | 5 +++++ binutils.spec | 4 +--- cross-aarch64-binutils.changes | 5 +++++ cross-aarch64-binutils.spec | 4 +--- cross-arm-binutils.changes | 5 +++++ cross-arm-binutils.spec | 4 +--- cross-avr-binutils.changes | 5 +++++ cross-avr-binutils.spec | 4 +--- cross-epiphany-binutils.changes | 5 +++++ cross-epiphany-binutils.spec | 4 +--- cross-hppa-binutils.changes | 5 +++++ cross-hppa-binutils.spec | 4 +--- cross-hppa64-binutils.changes | 5 +++++ cross-hppa64-binutils.spec | 4 +--- cross-i386-binutils.changes | 5 +++++ cross-i386-binutils.spec | 4 +--- cross-ia64-binutils.changes | 5 +++++ cross-ia64-binutils.spec | 4 +--- cross-m68k-binutils.changes | 5 +++++ cross-m68k-binutils.spec | 4 +--- cross-mips-binutils.changes | 5 +++++ cross-mips-binutils.spec | 4 +--- cross-ppc-binutils.changes | 5 +++++ cross-ppc-binutils.spec | 4 +--- cross-ppc64-binutils.changes | 5 +++++ cross-ppc64-binutils.spec | 4 +--- cross-ppc64le-binutils.changes | 5 +++++ cross-ppc64le-binutils.spec | 4 +--- cross-s390-binutils.changes | 5 +++++ cross-s390-binutils.spec | 4 +--- cross-s390x-binutils.changes | 5 +++++ cross-s390x-binutils.spec | 4 +--- cross-sparc-binutils.changes | 5 +++++ cross-sparc-binutils.spec | 4 +--- cross-sparc64-binutils.changes | 5 +++++ cross-sparc64-binutils.spec | 4 +--- cross-spu-binutils.changes | 5 +++++ cross-spu-binutils.spec | 4 +--- cross-x86_64-binutils.changes | 5 +++++ cross-x86_64-binutils.spec | 4 +--- 40 files changed, 120 insertions(+), 60 deletions(-) diff --git a/binutils.changes b/binutils.changes index 214b333..83820bf 100644 --- a/binutils.changes +++ b/binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/binutils.spec b/binutils.spec index c72bbf4..e979065 100644 --- a/binutils.spec +++ b/binutils.spec @@ -413,14 +413,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index 214b333..83820bf 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index dd63ac0..2d28653 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -416,14 +416,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index 214b333..83820bf 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index 64bec47..227aeb1 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -416,14 +416,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index 214b333..83820bf 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index 36148df..bd914fb 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -416,14 +416,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; diff --git a/cross-epiphany-binutils.changes b/cross-epiphany-binutils.changes index 214b333..83820bf 100644 --- a/cross-epiphany-binutils.changes +++ b/cross-epiphany-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index 7576877..fbc3000 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -416,14 +416,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index 214b333..83820bf 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index 26814c9..a8b2bac 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -416,14 +416,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index 214b333..83820bf 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index a9ea4e8..7292e56 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -416,14 +416,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index 214b333..83820bf 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index 2a7fe16..34765a2 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -416,14 +416,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index 214b333..83820bf 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index c13d4d8..a460c07 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -416,14 +416,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; diff --git a/cross-m68k-binutils.changes b/cross-m68k-binutils.changes index 214b333..83820bf 100644 --- a/cross-m68k-binutils.changes +++ b/cross-m68k-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index 1bb91e9..d005359 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -416,14 +416,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index 214b333..83820bf 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index a17346c..7177981 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -416,14 +416,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index 214b333..83820bf 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index 3e6adbc..5a013e9 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -416,14 +416,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index 214b333..83820bf 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index b079a5f..a9f7fbd 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -416,14 +416,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; diff --git a/cross-ppc64le-binutils.changes b/cross-ppc64le-binutils.changes index 214b333..83820bf 100644 --- a/cross-ppc64le-binutils.changes +++ b/cross-ppc64le-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index b5eb606..a21921e 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -416,14 +416,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index 214b333..83820bf 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index 35b6d42..75cd36c 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -416,14 +416,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index 214b333..83820bf 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index 2290e00..296b6e9 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -416,14 +416,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index 214b333..83820bf 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index c3d37a5..040ef7e 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -416,14 +416,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index 214b333..83820bf 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index a5f121a..ca416d3 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -416,14 +416,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index 214b333..83820bf 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index e052de1..4274562 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -416,14 +416,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index 214b333..83820bf 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + ------------------------------------------------------------------- Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index a3ef4ae..b4112e9 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -416,14 +416,12 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt "%_sbindir/update-alternatives" --install \ "%_bindir/ld" ld "%_bindir/ld.gold" 1 -%postun +%preun %install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz %install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz - -%preun if [ "$1" = 0 ]; then "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; fi; From 179d732b22b29ef64617394091427385d665b75755fa84800968fca79a8bbda4 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Mon, 18 May 2015 15:27:56 +0000 Subject: [PATCH 03/13] - Move sed call from %prep to %build to not disturb quilt. OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=183 --- binutils.changes | 5 +++++ binutils.spec | 4 ++-- cross-aarch64-binutils.changes | 5 +++++ cross-aarch64-binutils.spec | 4 ++-- cross-arm-binutils.changes | 5 +++++ cross-arm-binutils.spec | 4 ++-- cross-avr-binutils.changes | 5 +++++ cross-avr-binutils.spec | 4 ++-- cross-epiphany-binutils.changes | 5 +++++ cross-epiphany-binutils.spec | 4 ++-- cross-hppa-binutils.changes | 5 +++++ cross-hppa-binutils.spec | 4 ++-- cross-hppa64-binutils.changes | 5 +++++ cross-hppa64-binutils.spec | 4 ++-- cross-i386-binutils.changes | 5 +++++ cross-i386-binutils.spec | 4 ++-- cross-ia64-binutils.changes | 5 +++++ cross-ia64-binutils.spec | 4 ++-- cross-m68k-binutils.changes | 5 +++++ cross-m68k-binutils.spec | 4 ++-- cross-mips-binutils.changes | 5 +++++ cross-mips-binutils.spec | 4 ++-- cross-ppc-binutils.changes | 5 +++++ cross-ppc-binutils.spec | 4 ++-- cross-ppc64-binutils.changes | 5 +++++ cross-ppc64-binutils.spec | 4 ++-- cross-ppc64le-binutils.changes | 5 +++++ cross-ppc64le-binutils.spec | 4 ++-- cross-s390-binutils.changes | 5 +++++ cross-s390-binutils.spec | 4 ++-- cross-s390x-binutils.changes | 5 +++++ cross-s390x-binutils.spec | 4 ++-- cross-sparc-binutils.changes | 5 +++++ cross-sparc-binutils.spec | 4 ++-- cross-sparc64-binutils.changes | 5 +++++ cross-sparc64-binutils.spec | 4 ++-- cross-spu-binutils.changes | 5 +++++ cross-spu-binutils.spec | 4 ++-- cross-x86_64-binutils.changes | 5 +++++ cross-x86_64-binutils.spec | 4 ++-- 40 files changed, 140 insertions(+), 40 deletions(-) diff --git a/binutils.changes b/binutils.changes index 83820bf..10b3ddf 100644 --- a/binutils.changes +++ b/binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/binutils.spec b/binutils.spec index e979065..8107e4c 100644 --- a/binutils.spec +++ b/binutils.spec @@ -1,7 +1,7 @@ # # spec file for package binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -182,9 +182,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index 83820bf..10b3ddf 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index 2d28653..de8a365 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-aarch64-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -185,9 +185,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index 83820bf..10b3ddf 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index 227aeb1..ceea04f 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-arm-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -185,9 +185,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index 83820bf..10b3ddf 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index bd914fb..3840818 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-avr-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -185,9 +185,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils diff --git a/cross-epiphany-binutils.changes b/cross-epiphany-binutils.changes index 83820bf..10b3ddf 100644 --- a/cross-epiphany-binutils.changes +++ b/cross-epiphany-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index fbc3000..4f82872 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-epiphany-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -185,9 +185,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index 83820bf..10b3ddf 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index a8b2bac..5067db3 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-hppa-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -185,9 +185,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index 83820bf..10b3ddf 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index 7292e56..0ee0505 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-hppa64-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -185,9 +185,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index 83820bf..10b3ddf 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index 34765a2..989c2b8 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-i386-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -185,9 +185,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index 83820bf..10b3ddf 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index a460c07..750129f 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-ia64-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -185,9 +185,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils diff --git a/cross-m68k-binutils.changes b/cross-m68k-binutils.changes index 83820bf..10b3ddf 100644 --- a/cross-m68k-binutils.changes +++ b/cross-m68k-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index d005359..1c9ee5d 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-m68k-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -185,9 +185,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index 83820bf..10b3ddf 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index 7177981..0fd8e33 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-mips-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -185,9 +185,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index 83820bf..10b3ddf 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index 5a013e9..0774e03 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-ppc-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -185,9 +185,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index 83820bf..10b3ddf 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index a9f7fbd..6b4f6eb 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-ppc64-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -185,9 +185,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils diff --git a/cross-ppc64le-binutils.changes b/cross-ppc64le-binutils.changes index 83820bf..10b3ddf 100644 --- a/cross-ppc64le-binutils.changes +++ b/cross-ppc64le-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index a21921e..dd62323 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-ppc64le-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -185,9 +185,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index 83820bf..10b3ddf 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index 75cd36c..8aba977 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-s390-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -185,9 +185,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index 83820bf..10b3ddf 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index 296b6e9..7b3c2ee 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-s390x-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -185,9 +185,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index 83820bf..10b3ddf 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index 040ef7e..5833000 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-sparc-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -185,9 +185,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index 83820bf..10b3ddf 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index ca416d3..4bfe5cb 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-sparc64-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -185,9 +185,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index 83820bf..10b3ddf 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index 4274562..8d0c3aa 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-spu-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -185,9 +185,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index 83820bf..10b3ddf 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. + ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index b4112e9..d839ec1 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-x86_64-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -185,9 +185,9 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif -sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h %build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" %if 0%{!?cross:1} # Building native binutils From 166469e33c6dc603187d714ea6710bd9b56accb3915240fb255678493b2dd500 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Mon, 18 May 2015 15:45:47 +0000 Subject: [PATCH 04/13] - Add binutils-2.25-branch.diff.gz: Update to 2.25 branch at 8fe8994c, fixing many bugs: PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, 17954, 18010, ld/18167, ld/18222, ld/18270. - Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. - Remove gold-opd-visibility.patch: Included already. OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=184 --- binutils-2.25-branch.diff.gz | 3 +++ binutils.changes | 7 +++++++ binutils.spec | 7 ++----- cross-aarch64-binutils.changes | 7 +++++++ cross-aarch64-binutils.spec | 7 ++----- cross-arm-binutils.changes | 7 +++++++ cross-arm-binutils.spec | 7 ++----- cross-avr-binutils.changes | 7 +++++++ cross-avr-binutils.spec | 7 ++----- cross-epiphany-binutils.changes | 7 +++++++ cross-epiphany-binutils.spec | 7 ++----- cross-hppa-binutils.changes | 7 +++++++ cross-hppa-binutils.spec | 7 ++----- cross-hppa64-binutils.changes | 7 +++++++ cross-hppa64-binutils.spec | 7 ++----- cross-i386-binutils.changes | 7 +++++++ cross-i386-binutils.spec | 7 ++----- cross-ia64-binutils.changes | 7 +++++++ cross-ia64-binutils.spec | 7 ++----- cross-m68k-binutils.changes | 7 +++++++ cross-m68k-binutils.spec | 7 ++----- cross-mips-binutils.changes | 7 +++++++ cross-mips-binutils.spec | 7 ++----- cross-ppc-binutils.changes | 7 +++++++ cross-ppc-binutils.spec | 7 ++----- cross-ppc64-binutils.changes | 7 +++++++ cross-ppc64-binutils.spec | 7 ++----- cross-ppc64le-binutils.changes | 7 +++++++ cross-ppc64le-binutils.spec | 7 ++----- cross-s390-binutils.changes | 7 +++++++ cross-s390-binutils.spec | 7 ++----- cross-s390x-binutils.changes | 7 +++++++ cross-s390x-binutils.spec | 7 ++----- cross-sparc-binutils.changes | 7 +++++++ cross-sparc-binutils.spec | 7 ++----- cross-sparc64-binutils.changes | 7 +++++++ cross-sparc64-binutils.spec | 7 ++----- cross-spu-binutils.changes | 7 +++++++ cross-spu-binutils.spec | 7 ++----- cross-x86_64-binutils.changes | 7 +++++++ cross-x86_64-binutils.spec | 7 ++----- eh-frame-hdr-on-shared-lib-bfd.patch | 29 ---------------------------- gold-opd-visibility.patch | 18 ----------------- 43 files changed, 183 insertions(+), 147 deletions(-) create mode 100644 binutils-2.25-branch.diff.gz delete mode 100644 eh-frame-hdr-on-shared-lib-bfd.patch delete mode 100644 gold-opd-visibility.patch diff --git a/binutils-2.25-branch.diff.gz b/binutils-2.25-branch.diff.gz new file mode 100644 index 0000000..c7b537f --- /dev/null +++ b/binutils-2.25-branch.diff.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd5dedb7ab690e9a32f0df391862e85f63a2a7c7a66c9b54a46168c7f93a7fa0 +size 196654 diff --git a/binutils.changes b/binutils.changes index 10b3ddf..a7b85a1 100644 --- a/binutils.changes +++ b/binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/binutils.spec b/binutils.spec index 8107e4c..4870db0 100644 --- a/binutils.spec +++ b/binutils.spec @@ -82,6 +82,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -96,8 +97,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -154,7 +153,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -170,8 +169,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index 10b3ddf..a7b85a1 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index de8a365..79f9aa1 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -85,6 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -99,8 +100,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -157,7 +156,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -173,8 +172,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index 10b3ddf..a7b85a1 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index ceea04f..3be2787 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -85,6 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -99,8 +100,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -157,7 +156,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -173,8 +172,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index 10b3ddf..a7b85a1 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index 3840818..a39662e 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -85,6 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -99,8 +100,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -157,7 +156,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -173,8 +172,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/cross-epiphany-binutils.changes b/cross-epiphany-binutils.changes index 10b3ddf..a7b85a1 100644 --- a/cross-epiphany-binutils.changes +++ b/cross-epiphany-binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index 4f82872..9fd3f0e 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -85,6 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -99,8 +100,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -157,7 +156,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -173,8 +172,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index 10b3ddf..a7b85a1 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index 5067db3..c195703 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -85,6 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -99,8 +100,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -157,7 +156,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -173,8 +172,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index 10b3ddf..a7b85a1 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index 0ee0505..69ead6c 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -85,6 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -99,8 +100,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -157,7 +156,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -173,8 +172,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index 10b3ddf..a7b85a1 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index 989c2b8..a0d6b7d 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -85,6 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -99,8 +100,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -157,7 +156,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -173,8 +172,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index 10b3ddf..a7b85a1 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index 750129f..bbccac1 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -85,6 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -99,8 +100,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -157,7 +156,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -173,8 +172,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/cross-m68k-binutils.changes b/cross-m68k-binutils.changes index 10b3ddf..a7b85a1 100644 --- a/cross-m68k-binutils.changes +++ b/cross-m68k-binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index 1c9ee5d..1cb148e 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -85,6 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -99,8 +100,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -157,7 +156,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -173,8 +172,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index 10b3ddf..a7b85a1 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index 0fd8e33..2ada9c9 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -85,6 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -99,8 +100,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -157,7 +156,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -173,8 +172,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index 10b3ddf..a7b85a1 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index 0774e03..908c84f 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -85,6 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -99,8 +100,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -157,7 +156,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -173,8 +172,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index 10b3ddf..a7b85a1 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index 6b4f6eb..9119215 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -85,6 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -99,8 +100,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -157,7 +156,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -173,8 +172,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/cross-ppc64le-binutils.changes b/cross-ppc64le-binutils.changes index 10b3ddf..a7b85a1 100644 --- a/cross-ppc64le-binutils.changes +++ b/cross-ppc64le-binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index dd62323..3c6d41e 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -85,6 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -99,8 +100,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -157,7 +156,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -173,8 +172,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index 10b3ddf..a7b85a1 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index 8aba977..1f684fb 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -85,6 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -99,8 +100,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -157,7 +156,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -173,8 +172,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index 10b3ddf..a7b85a1 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index 7b3c2ee..91271eb 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -85,6 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -99,8 +100,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -157,7 +156,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -173,8 +172,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index 10b3ddf..a7b85a1 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index 5833000..5fff9ac 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -85,6 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -99,8 +100,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -157,7 +156,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -173,8 +172,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index 10b3ddf..a7b85a1 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index 4bfe5cb..10cfd34 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -85,6 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -99,8 +100,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -157,7 +156,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -173,8 +172,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index 10b3ddf..a7b85a1 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index 8d0c3aa..37c8687 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -85,6 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -99,8 +100,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -157,7 +156,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -173,8 +172,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index 10b3ddf..a7b85a1 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -2,6 +2,13 @@ Mon May 18 15:26:32 UTC 2015 - matz@suse.de - Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. ------------------------------------------------------------------- Mon May 18 06:38:32 UTC 2015 - meissner@suse.com diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index d839ec1..e77c52c 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -85,6 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2 Source1: pre_checkin.sh Source2: README.First-for.SuSE.packagers Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz Patch3: binutils-skip-rpaths.patch Patch4: s390-biarch.diff Patch5: x86-64-biarch.patch @@ -99,8 +100,6 @@ Patch14: binutils-build-as-needed.diff Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff -Patch24: eh-frame-hdr-on-shared-lib-bfd.patch -Patch25: gold-opd-visibility.patch Patch26: binutils-fix--dynamic-list.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -157,7 +156,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %setup -q -n binutils-%{binutils_version} # Patch1 is outside test_vanilla because it's supposed to be the # patch bringing the tarball to the newest upstream version -#%patch1 -p1 +%patch1 -p1 %if !%{test_vanilla} %patch3 %patch4 @@ -173,8 +172,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch18 %patch22 %patch23 -%patch24 -p1 -%patch25 -p1 %patch26 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h diff --git a/eh-frame-hdr-on-shared-lib-bfd.patch b/eh-frame-hdr-on-shared-lib-bfd.patch deleted file mode 100644 index d63c92e..0000000 --- a/eh-frame-hdr-on-shared-lib-bfd.patch +++ /dev/null @@ -1,29 +0,0 @@ -2014-12-24 Alan Modra - - * emultempl/elf32.em (gld${EMULATION_NAME}_after_open): Exclude - shared libraries in loop looking for .eh_frame sections. - Similarly for build-id loop. - -Index: binutils-2.25.0/ld/emultempl/elf32.em -=================================================================== ---- binutils-2.25.0.orig/ld/emultempl/elf32.em -+++ binutils-2.25.0/ld/emultempl/elf32.em -@@ -1015,7 +1015,8 @@ gld${EMULATION_NAME}_after_open (void) - /* Find an ELF input. */ - for (abfd = link_info.input_bfds; - abfd != (bfd *) NULL; abfd = abfd->link.next) -- if (bfd_get_flavour (abfd) == bfd_target_elf_flavour) -+ if (bfd_get_flavour (abfd) == bfd_target_elf_flavour -+ && bfd_count_sections (abfd) != 0) - break; - - /* PR 10555: If there are no ELF input files do not try to -@@ -1053,6 +1054,8 @@ gld${EMULATION_NAME}_after_open (void) - - for (abfd = link_info.input_bfds; abfd; abfd = abfd->link.next) - { -+ if (bfd_count_sections (abfd) == 0) -+ continue; - if (bfd_get_flavour (abfd) == bfd_target_elf_flavour) - elfbfd = abfd; - if (!warn_eh_frame) diff --git a/gold-opd-visibility.patch b/gold-opd-visibility.patch deleted file mode 100644 index de71186..0000000 --- a/gold-opd-visibility.patch +++ /dev/null @@ -1,18 +0,0 @@ -2015-02-18 Alan Modra - - PR 17954 - * powerpc.cc (Global_symbol_visitor_opd::operator()): Set default - visibility. - -Index: binutils-2.25.0/gold/powerpc.cc -=================================================================== ---- binutils-2.25.0.orig/gold/powerpc.cc -+++ binutils-2.25.0/gold/powerpc.cc -@@ -6466,6 +6466,7 @@ class Global_symbol_visitor_opd - && symobj->get_opd_discard(sym->value())) - { - sym->set_undefined(); -+ sym->set_visibility(elfcpp::STV_DEFAULT); - sym->set_is_defined_in_discarded_section(); - sym->set_symtab_index(-1U); - } From 606ad0bb42d11f3157082f76707f2c10602323a342734ebbfff6a37218761547 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Fri, 12 Jun 2015 11:22:39 +0000 Subject: [PATCH 05/13] Accepting request 311727 from devel:ARM:Factory - enable gold for aarch64 OBS-URL: https://build.opensuse.org/request/show/311727 OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=185 --- binutils.changes | 5 +++++ binutils.spec | 4 ++-- cross-aarch64-binutils.spec | 2 +- cross-arm-binutils.spec | 2 +- cross-avr-binutils.spec | 2 +- cross-epiphany-binutils.spec | 2 +- cross-hppa-binutils.spec | 2 +- cross-hppa64-binutils.spec | 2 +- cross-i386-binutils.spec | 2 +- cross-ia64-binutils.spec | 2 +- cross-m68k-binutils.spec | 2 +- cross-mips-binutils.spec | 2 +- cross-ppc-binutils.spec | 2 +- cross-ppc64-binutils.spec | 2 +- cross-ppc64le-binutils.spec | 2 +- cross-s390-binutils.spec | 2 +- cross-s390x-binutils.spec | 2 +- cross-sparc-binutils.spec | 2 +- cross-sparc64-binutils.spec | 2 +- cross-spu-binutils.spec | 2 +- cross-x86_64-binutils.spec | 2 +- 21 files changed, 26 insertions(+), 21 deletions(-) diff --git a/binutils.changes b/binutils.changes index a7b85a1..306d8b1 100644 --- a/binutils.changes +++ b/binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/binutils.spec b/binutils.spec index 4870db0..981806c 100644 --- a/binutils.spec +++ b/binutils.spec @@ -1,7 +1,7 @@ # # spec file for package binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -118,7 +118,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index 79f9aa1..46f9165 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-aarch64-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index 3be2787..5dfbc62 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-arm-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index a39662e..6a94a80 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-avr-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index 9fd3f0e..a5a3d5f 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-epiphany-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index c195703..f3ef784 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-hppa-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index 69ead6c..46509ee 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-hppa64-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index a0d6b7d..613deb7 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-i386-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index bbccac1..5b9f534 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-ia64-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index 1cb148e..139f794 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-m68k-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index 2ada9c9..006be2b 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-mips-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index 908c84f..9342676 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-ppc-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index 9119215..6d4992b 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-ppc64-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index 3c6d41e..4341e85 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-ppc64le-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index 1f684fb..e7155b2 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-s390-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index 91271eb..248b9ae 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-s390x-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index 5fff9ac..233ae4b 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-sparc-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index 10cfd34..7fcc2ac 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-sparc64-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index 37c8687..b217bdb 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-spu-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index e77c52c..3c88d5e 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-x86_64-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed From 55381be6ac25187fcdafdfbe7a058bb5e71d1d0710dd8886f1db79e03c72af5c Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Tue, 7 Jul 2015 13:08:58 +0000 Subject: [PATCH 06/13] Accepting request 315389 from home:a_faerber:branches:devel:gcc Sync .spec and .changes files for aarch64 gold change OBS-URL: https://build.opensuse.org/request/show/315389 OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=186 --- cross-aarch64-binutils.changes | 5 +++++ cross-aarch64-binutils.spec | 2 +- cross-arm-binutils.changes | 5 +++++ cross-arm-binutils.spec | 2 +- cross-avr-binutils.changes | 5 +++++ cross-avr-binutils.spec | 2 +- cross-epiphany-binutils.changes | 5 +++++ cross-epiphany-binutils.spec | 2 +- cross-hppa-binutils.changes | 5 +++++ cross-hppa-binutils.spec | 2 +- cross-hppa64-binutils.changes | 5 +++++ cross-hppa64-binutils.spec | 2 +- cross-i386-binutils.changes | 5 +++++ cross-i386-binutils.spec | 2 +- cross-ia64-binutils.changes | 5 +++++ cross-ia64-binutils.spec | 2 +- cross-m68k-binutils.changes | 5 +++++ cross-m68k-binutils.spec | 2 +- cross-mips-binutils.changes | 5 +++++ cross-mips-binutils.spec | 2 +- cross-ppc-binutils.changes | 5 +++++ cross-ppc-binutils.spec | 2 +- cross-ppc64-binutils.changes | 5 +++++ cross-ppc64-binutils.spec | 2 +- cross-ppc64le-binutils.changes | 5 +++++ cross-ppc64le-binutils.spec | 2 +- cross-s390-binutils.changes | 5 +++++ cross-s390-binutils.spec | 2 +- cross-s390x-binutils.changes | 5 +++++ cross-s390x-binutils.spec | 2 +- cross-sparc-binutils.changes | 5 +++++ cross-sparc-binutils.spec | 2 +- cross-sparc64-binutils.changes | 5 +++++ cross-sparc64-binutils.spec | 2 +- cross-spu-binutils.changes | 5 +++++ cross-spu-binutils.spec | 2 +- cross-x86_64-binutils.changes | 5 +++++ cross-x86_64-binutils.spec | 2 +- 38 files changed, 114 insertions(+), 19 deletions(-) diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index a7b85a1..306d8b1 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index 46f9165..a54f4d5 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -121,7 +121,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index a7b85a1..306d8b1 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index 5dfbc62..5438d1f 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -121,7 +121,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index a7b85a1..306d8b1 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index 6a94a80..cb7a147 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -121,7 +121,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif diff --git a/cross-epiphany-binutils.changes b/cross-epiphany-binutils.changes index a7b85a1..306d8b1 100644 --- a/cross-epiphany-binutils.changes +++ b/cross-epiphany-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index a5a3d5f..f166572 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -121,7 +121,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index a7b85a1..306d8b1 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index f3ef784..f28f6c2 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -121,7 +121,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index a7b85a1..306d8b1 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index 46509ee..0d722cb 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -121,7 +121,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index a7b85a1..306d8b1 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index 613deb7..97aae12 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -121,7 +121,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index a7b85a1..306d8b1 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index 5b9f534..03be30b 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -121,7 +121,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif diff --git a/cross-m68k-binutils.changes b/cross-m68k-binutils.changes index a7b85a1..306d8b1 100644 --- a/cross-m68k-binutils.changes +++ b/cross-m68k-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index 139f794..e36d298 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -121,7 +121,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index a7b85a1..306d8b1 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index 006be2b..877edf1 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -121,7 +121,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index a7b85a1..306d8b1 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index 9342676..63f20a1 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -121,7 +121,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index a7b85a1..306d8b1 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index 6d4992b..a0b2881 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -121,7 +121,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif diff --git a/cross-ppc64le-binutils.changes b/cross-ppc64le-binutils.changes index a7b85a1..306d8b1 100644 --- a/cross-ppc64le-binutils.changes +++ b/cross-ppc64le-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index 4341e85..5e783a2 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -121,7 +121,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index a7b85a1..306d8b1 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index e7155b2..e495685 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -121,7 +121,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index a7b85a1..306d8b1 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index 248b9ae..b854f3e 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -121,7 +121,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index a7b85a1..306d8b1 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index 233ae4b..90654ed 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -121,7 +121,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index a7b85a1..306d8b1 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index 7fcc2ac..2288f05 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -121,7 +121,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index a7b85a1..306d8b1 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index b217bdb..834479f 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -121,7 +121,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index a7b85a1..306d8b1 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + ------------------------------------------------------------------- Mon May 18 15:26:32 UTC 2015 - matz@suse.de diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index 3c88d5e..e004f1a 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -121,7 +121,7 @@ Requires: binutils = %{version}-%{release} PreReq: update-alternatives %if 0%{suse_version} > 1100 %if 0%{!?cross:1} -%define gold_archs %ix86 %arm x86_64 ppc ppc64 ppc64le %sparc +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc %endif %endif From 3731e51f950597fe0972964a1c262aa9e07ae9db03e585930b64e628f16eb96a Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Tue, 7 Jul 2015 13:41:24 +0000 Subject: [PATCH 07/13] Accepting request 315475 from home:a_faerber:branches:devel:gcc Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS into %TARGET_OS for reuse in install and file sections. This fixes the assumption that $TARGET_OS will match %{TARGET}*. OBS-URL: https://build.opensuse.org/request/show/315475 OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=187 --- binutils.changes | 7 +++++++ binutils.spec | 20 ++++++++++---------- cross-aarch64-binutils.changes | 7 +++++++ cross-aarch64-binutils.spec | 20 ++++++++++---------- cross-arm-binutils.changes | 7 +++++++ cross-arm-binutils.spec | 20 ++++++++++---------- cross-avr-binutils.changes | 7 +++++++ cross-avr-binutils.spec | 20 ++++++++++---------- cross-epiphany-binutils.changes | 7 +++++++ cross-epiphany-binutils.spec | 20 ++++++++++---------- cross-hppa-binutils.changes | 7 +++++++ cross-hppa-binutils.spec | 20 ++++++++++---------- cross-hppa64-binutils.changes | 7 +++++++ cross-hppa64-binutils.spec | 20 ++++++++++---------- cross-i386-binutils.changes | 7 +++++++ cross-i386-binutils.spec | 20 ++++++++++---------- cross-ia64-binutils.changes | 7 +++++++ cross-ia64-binutils.spec | 20 ++++++++++---------- cross-m68k-binutils.changes | 7 +++++++ cross-m68k-binutils.spec | 20 ++++++++++---------- cross-mips-binutils.changes | 7 +++++++ cross-mips-binutils.spec | 20 ++++++++++---------- cross-ppc-binutils.changes | 7 +++++++ cross-ppc-binutils.spec | 20 ++++++++++---------- cross-ppc64-binutils.changes | 7 +++++++ cross-ppc64-binutils.spec | 20 ++++++++++---------- cross-ppc64le-binutils.changes | 7 +++++++ cross-ppc64le-binutils.spec | 20 ++++++++++---------- cross-s390-binutils.changes | 7 +++++++ cross-s390-binutils.spec | 20 ++++++++++---------- cross-s390x-binutils.changes | 7 +++++++ cross-s390x-binutils.spec | 20 ++++++++++---------- cross-sparc-binutils.changes | 7 +++++++ cross-sparc-binutils.spec | 20 ++++++++++---------- cross-sparc64-binutils.changes | 7 +++++++ cross-sparc64-binutils.spec | 20 ++++++++++---------- cross-spu-binutils.changes | 7 +++++++ cross-spu-binutils.spec | 20 ++++++++++---------- cross-x86_64-binutils.changes | 7 +++++++ cross-x86_64-binutils.spec | 20 ++++++++++---------- 40 files changed, 340 insertions(+), 200 deletions(-) diff --git a/binutils.changes b/binutils.changes index 306d8b1..f218ef9 100644 --- a/binutils.changes +++ b/binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/binutils.spec b/binutils.spec index 981806c..e83964c 100644 --- a/binutils.spec +++ b/binutils.spec @@ -276,15 +276,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -293,11 +293,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -380,13 +380,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -444,7 +444,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index 306d8b1..f218ef9 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index a54f4d5..9562a8e 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -279,15 +279,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -296,11 +296,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -383,13 +383,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -447,7 +447,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index 306d8b1..f218ef9 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index 5438d1f..21826f3 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -279,15 +279,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -296,11 +296,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -383,13 +383,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -447,7 +447,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index 306d8b1..f218ef9 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index cb7a147..763cdb1 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -279,15 +279,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -296,11 +296,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -383,13 +383,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -447,7 +447,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif diff --git a/cross-epiphany-binutils.changes b/cross-epiphany-binutils.changes index 306d8b1..f218ef9 100644 --- a/cross-epiphany-binutils.changes +++ b/cross-epiphany-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index f166572..5964372 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -279,15 +279,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -296,11 +296,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -383,13 +383,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -447,7 +447,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index 306d8b1..f218ef9 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index f28f6c2..796aa94 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -279,15 +279,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -296,11 +296,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -383,13 +383,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -447,7 +447,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index 306d8b1..f218ef9 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index 0d722cb..426e5f8 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -279,15 +279,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -296,11 +296,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -383,13 +383,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -447,7 +447,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index 306d8b1..f218ef9 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index 97aae12..a844fab 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -279,15 +279,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -296,11 +296,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -383,13 +383,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -447,7 +447,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index 306d8b1..f218ef9 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index 03be30b..6fa9054 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -279,15 +279,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -296,11 +296,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -383,13 +383,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -447,7 +447,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif diff --git a/cross-m68k-binutils.changes b/cross-m68k-binutils.changes index 306d8b1..f218ef9 100644 --- a/cross-m68k-binutils.changes +++ b/cross-m68k-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index e36d298..09aba72 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -279,15 +279,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -296,11 +296,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -383,13 +383,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -447,7 +447,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index 306d8b1..f218ef9 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index 877edf1..11c74d5 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -279,15 +279,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -296,11 +296,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -383,13 +383,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -447,7 +447,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index 306d8b1..f218ef9 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index 63f20a1..07fea96 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -279,15 +279,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -296,11 +296,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -383,13 +383,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -447,7 +447,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index 306d8b1..f218ef9 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index a0b2881..01dc752 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -279,15 +279,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -296,11 +296,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -383,13 +383,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -447,7 +447,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif diff --git a/cross-ppc64le-binutils.changes b/cross-ppc64le-binutils.changes index 306d8b1..f218ef9 100644 --- a/cross-ppc64le-binutils.changes +++ b/cross-ppc64le-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index 5e783a2..22e7460 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -279,15 +279,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -296,11 +296,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -383,13 +383,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -447,7 +447,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index 306d8b1..f218ef9 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index e495685..dd60a9c 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -279,15 +279,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -296,11 +296,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -383,13 +383,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -447,7 +447,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index 306d8b1..f218ef9 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index b854f3e..81038d2 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -279,15 +279,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -296,11 +296,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -383,13 +383,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -447,7 +447,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index 306d8b1..f218ef9 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index 90654ed..b8148c3 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -279,15 +279,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -296,11 +296,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -383,13 +383,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -447,7 +447,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index 306d8b1..f218ef9 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index 2288f05..ec504cd 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -279,15 +279,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -296,11 +296,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -383,13 +383,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -447,7 +447,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index 306d8b1..f218ef9 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index 834479f..335e4f5 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -279,15 +279,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -296,11 +296,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -383,13 +383,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -447,7 +447,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index 306d8b1..f218ef9 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + ------------------------------------------------------------------- Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index e004f1a..140e8d3 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -279,15 +279,15 @@ EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" -TARGET_OS=%{TARGET} +%define TARGET_OS %{TARGET} %else %if "%{TARGET}" == "epiphany" -TARGET_OS=epiphany-elf +%define TARGET_OS epiphany-elf %else %if "%{TARGET}" == "arm" -TARGET_OS=%{TARGET}-suse-linux-gnueabi +%define TARGET_OS %{TARGET}-suse-linux-gnueabi %else -TARGET_OS=%{TARGET}-suse-linux +%define TARGET_OS %{TARGET}-suse-linux %endif %endif %endif @@ -296,11 +296,11 @@ TARGET_OS=%{TARGET}-suse-linux --with-bugurl=http://bugs.opensuse.org/ \ --with-pkgversion="GNU Binutils; %{DIST}" \ --disable-nls \ - --build=%{HOST} --target=$TARGET_OS \ + --build=%{HOST} --target=%{TARGET_OS} \ %if "%{TARGET}" == "spu" --with-sysroot=/usr/spu \ %else - --with-sysroot=%{_prefix}/$TARGET_OS/sys-root \ + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers @@ -383,13 +383,13 @@ install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld # installing cross-TARGET-binutils and TARGET-binutils make DESTDIR=$RPM_BUILD_ROOT install # Replace hard links by symlinks, so that rpmlint doesn't complain -T=$(basename %buildroot/usr/%{TARGET}*) +T=$(basename %buildroot/usr/%{TARGET_OS}) for f in %buildroot/usr/$T/bin/* ; do ln -sf /usr/bin/$T-$(basename $f) $f done %if "%{TARGET}" == "avr" -install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET}-nesc-as -ln -sf ../../bin/%{TARGET}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET}/bin/nesc-as +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as %endif rm -rf $RPM_BUILD_ROOT%{_mandir} rm -rf $RPM_BUILD_ROOT%{_infodir} @@ -447,7 +447,7 @@ fi; %{_libdir}/lib*-%{version}*.so %doc %{_mandir}/man1/*.1.gz %else -%{_prefix}/%{TARGET}* +%{_prefix}/%{TARGET_OS} %{_prefix}/bin/* %endif From 446fa172be71fd5dba9f450230284d1353ee4d5216cec6d81c1288b7db548b46 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Thu, 9 Jul 2015 14:30:36 +0000 Subject: [PATCH 08/13] - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=188 --- binutils-2.25-branch.diff.gz | 4 ++-- binutils.changes | 6 ++++++ binutils.spec | 2 +- cross-aarch64-binutils.changes | 6 ++++++ cross-aarch64-binutils.spec | 2 +- cross-arm-binutils.changes | 6 ++++++ cross-arm-binutils.spec | 2 +- cross-avr-binutils.changes | 6 ++++++ cross-avr-binutils.spec | 2 +- cross-epiphany-binutils.changes | 6 ++++++ cross-epiphany-binutils.spec | 2 +- cross-hppa-binutils.changes | 6 ++++++ cross-hppa-binutils.spec | 2 +- cross-hppa64-binutils.changes | 6 ++++++ cross-hppa64-binutils.spec | 2 +- cross-i386-binutils.changes | 6 ++++++ cross-i386-binutils.spec | 2 +- cross-ia64-binutils.changes | 6 ++++++ cross-ia64-binutils.spec | 2 +- cross-m68k-binutils.changes | 6 ++++++ cross-m68k-binutils.spec | 2 +- cross-mips-binutils.changes | 6 ++++++ cross-mips-binutils.spec | 2 +- cross-ppc-binutils.changes | 6 ++++++ cross-ppc-binutils.spec | 2 +- cross-ppc64-binutils.changes | 6 ++++++ cross-ppc64-binutils.spec | 2 +- cross-ppc64le-binutils.changes | 6 ++++++ cross-ppc64le-binutils.spec | 2 +- cross-s390-binutils.changes | 6 ++++++ cross-s390-binutils.spec | 2 +- cross-s390x-binutils.changes | 6 ++++++ cross-s390x-binutils.spec | 2 +- cross-sparc-binutils.changes | 6 ++++++ cross-sparc-binutils.spec | 2 +- cross-sparc64-binutils.changes | 6 ++++++ cross-sparc64-binutils.spec | 2 +- cross-spu-binutils.changes | 6 ++++++ cross-spu-binutils.spec | 2 +- cross-x86_64-binutils.changes | 6 ++++++ cross-x86_64-binutils.spec | 2 +- 41 files changed, 142 insertions(+), 22 deletions(-) diff --git a/binutils-2.25-branch.diff.gz b/binutils-2.25-branch.diff.gz index c7b537f..273baf7 100644 --- a/binutils-2.25-branch.diff.gz +++ b/binutils-2.25-branch.diff.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cd5dedb7ab690e9a32f0df391862e85f63a2a7c7a66c9b54a46168c7f93a7fa0 -size 196654 +oid sha256:673b157e24075bd7bcd25f1c010413989808e9ceb689050d64cb63f516af011c +size 204790 diff --git a/binutils.changes b/binutils.changes index f218ef9..a27901d 100644 --- a/binutils.changes +++ b/binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/binutils.spec b/binutils.spec index e83964c..019ca48 100644 --- a/binutils.spec +++ b/binutils.spec @@ -1,7 +1,7 @@ # # spec file for package binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index f218ef9..a27901d 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index 9562a8e..49dc799 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-aarch64-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index f218ef9..a27901d 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index 21826f3..7ba289f 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-arm-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index f218ef9..a27901d 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index 763cdb1..6e08c5c 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-avr-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-epiphany-binutils.changes b/cross-epiphany-binutils.changes index f218ef9..a27901d 100644 --- a/cross-epiphany-binutils.changes +++ b/cross-epiphany-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index 5964372..d8435d7 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-epiphany-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index f218ef9..a27901d 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index 796aa94..71153fd 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-hppa-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index f218ef9..a27901d 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index 426e5f8..a341802 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-hppa64-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index f218ef9..a27901d 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index a844fab..5cc5a74 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-i386-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index f218ef9..a27901d 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index 6fa9054..68f3033 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-ia64-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-m68k-binutils.changes b/cross-m68k-binutils.changes index f218ef9..a27901d 100644 --- a/cross-m68k-binutils.changes +++ b/cross-m68k-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index 09aba72..51f1419 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-m68k-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index f218ef9..a27901d 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index 11c74d5..3688cb7 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-mips-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index f218ef9..a27901d 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index 07fea96..293fa7d 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-ppc-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index f218ef9..a27901d 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index 01dc752..d192ca8 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-ppc64-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-ppc64le-binutils.changes b/cross-ppc64le-binutils.changes index f218ef9..a27901d 100644 --- a/cross-ppc64le-binutils.changes +++ b/cross-ppc64le-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index 22e7460..b7a97e5 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-ppc64le-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index f218ef9..a27901d 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index dd60a9c..9278ccb 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-s390-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index f218ef9..a27901d 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index 81038d2..454ec57 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-s390x-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index f218ef9..a27901d 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index b8148c3..6315c3b 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-sparc-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index f218ef9..a27901d 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index ec504cd..a85594f 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-sparc64-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index f218ef9..a27901d 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index 335e4f5..c38f028 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-spu-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index f218ef9..a27901d 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. + ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index 140e8d3..da1bfab 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-x86_64-binutils # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed From d30ea5816dcf2c7c66fd5a1b1cd53c8fb07d632deae30dbe7e4f4abdd04f00d4 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Thu, 9 Jul 2015 14:43:01 +0000 Subject: [PATCH 09/13] - Add patches for s390 z13 support (backports from to-be 2.26): 0001-S-390-Add-support-for-IBM-z13.patch 0002-S-390-Add-check-for-length-field-operand.patch 0003-S-390-Add-more-IBM-z13-instructions.patch 0004-S-390-Fixes-for-z13-instructions.patch 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=189 --- 0001-S-390-Add-support-for-IBM-z13.patch | 3882 +++++++++++++++++ ...0-Add-check-for-length-field-operand.patch | 34 + ...-S-390-Add-more-IBM-z13-instructions.patch | 365 ++ 0004-S-390-Fixes-for-z13-instructions.patch | 135 + ...GNU-attribute-to-indicate-vector-ABI.patch | 289 ++ binutils.changes | 7 + binutils.spec | 10 + cross-aarch64-binutils.changes | 7 + cross-aarch64-binutils.spec | 10 + cross-arm-binutils.changes | 7 + cross-arm-binutils.spec | 10 + cross-avr-binutils.changes | 7 + cross-avr-binutils.spec | 10 + cross-epiphany-binutils.changes | 7 + cross-epiphany-binutils.spec | 10 + cross-hppa-binutils.changes | 7 + cross-hppa-binutils.spec | 10 + cross-hppa64-binutils.changes | 7 + cross-hppa64-binutils.spec | 10 + cross-i386-binutils.changes | 7 + cross-i386-binutils.spec | 10 + cross-ia64-binutils.changes | 7 + cross-ia64-binutils.spec | 10 + cross-m68k-binutils.changes | 7 + cross-m68k-binutils.spec | 10 + cross-mips-binutils.changes | 7 + cross-mips-binutils.spec | 10 + cross-ppc-binutils.changes | 7 + cross-ppc-binutils.spec | 10 + cross-ppc64-binutils.changes | 7 + cross-ppc64-binutils.spec | 10 + cross-ppc64le-binutils.changes | 7 + cross-ppc64le-binutils.spec | 10 + cross-s390-binutils.changes | 7 + cross-s390-binutils.spec | 10 + cross-s390x-binutils.changes | 7 + cross-s390x-binutils.spec | 10 + cross-sparc-binutils.changes | 7 + cross-sparc-binutils.spec | 10 + cross-sparc64-binutils.changes | 7 + cross-sparc64-binutils.spec | 10 + cross-spu-binutils.changes | 7 + cross-spu-binutils.spec | 10 + cross-x86_64-binutils.changes | 7 + cross-x86_64-binutils.spec | 10 + 45 files changed, 5045 insertions(+) create mode 100644 0001-S-390-Add-support-for-IBM-z13.patch create mode 100644 0002-S-390-Add-check-for-length-field-operand.patch create mode 100644 0003-S-390-Add-more-IBM-z13-instructions.patch create mode 100644 0004-S-390-Fixes-for-z13-instructions.patch create mode 100644 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch diff --git a/0001-S-390-Add-support-for-IBM-z13.patch b/0001-S-390-Add-support-for-IBM-z13.patch new file mode 100644 index 0000000..def19d6 --- /dev/null +++ b/0001-S-390-Add-support-for-IBM-z13.patch @@ -0,0 +1,3882 @@ +From cc5ebfb54ec5d26e0ff2f1c01f833eb8d6b09e69 Mon Sep 17 00:00:00 2001 +From: Andreas Krebbel +Date: Fri, 16 Jan 2015 12:19:21 +0100 +Subject: [PATCH 1/5] S/390: Add support for IBM z13. + +- 32 128 bit vector registers (overlapping with the existing 16 64 bit + floating point registers) +- vector double instructions +- vector integer instructions +- scalar vector instructions (allowing to have more floating point + registers for scalar operations) +- vector string instructions + +gas/ChangeLog: + + * config/tc-s390.c (struct pd_reg): Remove. + (pre_defined_registers): Remove. + (REG_NAME_CNT): Remove. + (reg_name_search): Calculate the register number instead of doing + a lookup. + (register_name, tc_s390_regname_to_dw2regnum): Adopt to the new + reg_name_search signature. + (s390_parse_cpu): Support the new arch string z13. + (s390_insert_operand): Support for vector registers with the extra + field for the fifth bit of each vector register operand. + (md_gather_operand): Adjust to the new handling of optional + parameters. + + * doc/as.texinfo: Document the z13 cpu string. + +gas/testsuite/ChangeLog: + + * gas/s390/esa-g5.d: Add a variant without the optional operand. + * gas/s390/esa-g5.s: Likewise. + * gas/s390/esa-z9-109.d: Likewise. + * gas/s390/esa-z9-109.s: Likewise. + * gas/s390/zarch-z9-109.d: Likewise. + * gas/s390/zarch-z9-109.s: Likewise. + * gas/s390/zarch-z10.d: For variants with a zero optional argument + it is not dumped by objdump anymore. + * gas/s390/zarch-zEC12.d: Likewise. + + * gas/s390/zarch-z13.d: New file. + * gas/s390/zarch-z13.s: New file. + * gas/s390/s390.exp: Run the test for the z13 files. + +include/opcode/ChangeLog: + + * s390.h (s390_opcode_cpu_val): Add S390_OPCODE_Z13. + +ld/testsuite/ChangeLog: + + * ld-s390/tlsbin.dd: The nopr register operand is optional and not + printed if 0 anymore. + +opcodes/ChangeLog: + + * s390-dis.c (s390_extract_operand): Support vector register + operands. + (s390_print_insn_with_opcode): Support new operands types and add + new handling of optional operands. + * s390-mkopc.c (s390_opcode_mode_val, s390_opcode_cpu_val): Remove + and include opcode/s390.h instead. + (struct op_struct): New field `flags'. + (insertOpcode, insertExpandedMnemonic): New parameter `flags'. + (dumpTable): Dump flags. + (main): Parse flags from the s390-opc.txt file. Add z13 as cpu + string. + * s390-opc.c: Add new operands types, instruction formats, and + instruction masks. + (s390_opformats): Add new formats for .insn. + * s390-opc.txt: Add new instructions. + +# Conflicts: +# gas/ChangeLog +# gas/testsuite/ChangeLog +# include/opcode/ChangeLog +# ld/testsuite/ChangeLog +# opcodes/ChangeLog +--- + gas/config/tc-s390.c | 202 +++---- + gas/doc/as.texinfo | 2 +- + gas/doc/c-s390.texi | 8 +- + gas/testsuite/gas/s390/esa-g5.d | 44 +- + gas/testsuite/gas/s390/esa-g5.s | 2 + + gas/testsuite/gas/s390/esa-z9-109.d | 4 + + gas/testsuite/gas/s390/esa-z9-109.s | 4 + + gas/testsuite/gas/s390/s390.exp | 1 + + gas/testsuite/gas/s390/zarch-z10.d | 4 +- + gas/testsuite/gas/s390/zarch-z13.d | 548 +++++++++++++++++++ + gas/testsuite/gas/s390/zarch-z13.s | 542 +++++++++++++++++++ + gas/testsuite/gas/s390/zarch-z9-109.d | 5 + + gas/testsuite/gas/s390/zarch-z9-109.s | 5 + + gas/testsuite/gas/s390/zarch-zEC12.d | 2 +- + include/opcode/s390.h | 23 +- + ld/testsuite/ld-s390/tlsbin.dd | 12 +- + opcodes/s390-dis.c | 50 +- + opcodes/s390-mkopc.c | 151 +++--- + opcodes/s390-opc.c | 965 +++++++++++++++++++--------------- + opcodes/s390-opc.txt | 549 ++++++++++++++++++- + 20 files changed, 2432 insertions(+), 691 deletions(-) + create mode 100644 gas/testsuite/gas/s390/zarch-z13.d + create mode 100644 gas/testsuite/gas/s390/zarch-z13.s + +diff --git a/gas/config/tc-s390.c b/gas/config/tc-s390.c +index 59f6ab6..052baf1 100644 +--- a/gas/config/tc-s390.c ++++ b/gas/config/tc-s390.c +@@ -109,138 +109,35 @@ const pseudo_typeS md_pseudo_table[] = + { NULL, NULL, 0 } + }; + +- +-/* Structure to hold information about predefined registers. */ +-struct pd_reg +- { +- char *name; +- int value; +- }; +- +-/* List of registers that are pre-defined: +- +- Each access register has a predefined name of the form: +- a which has the value . +- +- Each control register has a predefined name of the form: +- c which has the value . +- +- Each general register has a predefined name of the form: +- r which has the value . +- +- Each floating point register a has predefined name of the form: +- f which has the value . +- +- There are individual registers as well: +- sp has the value 15 +- lit has the value 12 +- +- The table is sorted. Suitable for searching by a binary search. */ +- +-static const struct pd_reg pre_defined_registers[] = +-{ +- { "a0", 0 }, /* Access registers */ +- { "a1", 1 }, +- { "a10", 10 }, +- { "a11", 11 }, +- { "a12", 12 }, +- { "a13", 13 }, +- { "a14", 14 }, +- { "a15", 15 }, +- { "a2", 2 }, +- { "a3", 3 }, +- { "a4", 4 }, +- { "a5", 5 }, +- { "a6", 6 }, +- { "a7", 7 }, +- { "a8", 8 }, +- { "a9", 9 }, +- +- { "c0", 0 }, /* Control registers */ +- { "c1", 1 }, +- { "c10", 10 }, +- { "c11", 11 }, +- { "c12", 12 }, +- { "c13", 13 }, +- { "c14", 14 }, +- { "c15", 15 }, +- { "c2", 2 }, +- { "c3", 3 }, +- { "c4", 4 }, +- { "c5", 5 }, +- { "c6", 6 }, +- { "c7", 7 }, +- { "c8", 8 }, +- { "c9", 9 }, +- +- { "f0", 0 }, /* Floating point registers */ +- { "f1", 1 }, +- { "f10", 10 }, +- { "f11", 11 }, +- { "f12", 12 }, +- { "f13", 13 }, +- { "f14", 14 }, +- { "f15", 15 }, +- { "f2", 2 }, +- { "f3", 3 }, +- { "f4", 4 }, +- { "f5", 5 }, +- { "f6", 6 }, +- { "f7", 7 }, +- { "f8", 8 }, +- { "f9", 9 }, +- +- { "lit", 13 }, /* Pointer to literal pool */ +- +- { "r0", 0 }, /* General purpose registers */ +- { "r1", 1 }, +- { "r10", 10 }, +- { "r11", 11 }, +- { "r12", 12 }, +- { "r13", 13 }, +- { "r14", 14 }, +- { "r15", 15 }, +- { "r2", 2 }, +- { "r3", 3 }, +- { "r4", 4 }, +- { "r5", 5 }, +- { "r6", 6 }, +- { "r7", 7 }, +- { "r8", 8 }, +- { "r9", 9 }, +- +- { "sp", 15 }, /* Stack pointer */ +- +-}; +- +-#define REG_NAME_CNT (sizeof (pre_defined_registers) / sizeof (struct pd_reg)) +- + /* Given NAME, find the register number associated with that name, return + the integer value associated with the given name or -1 on failure. */ + + static int +-reg_name_search (const struct pd_reg *regs, int regcount, const char *name) ++reg_name_search (const char *name) + { +- int middle, low, high; +- int cmp; ++ int val = -1; + +- low = 0; +- high = regcount - 1; ++ if (strcasecmp (name, "lit") == 0) ++ return 13; + +- do ++ if (strcasecmp (name, "sp") == 0) ++ return 15; ++ ++ if (name[0] != 'a' && name[0] != 'c' && name[0] != 'f' ++ && name[0] != 'r' && name[0] != 'v') ++ return -1; ++ ++ if (ISDIGIT (name[1])) + { +- middle = (low + high) / 2; +- cmp = strcasecmp (name, regs[middle].name); +- if (cmp < 0) +- high = middle - 1; +- else if (cmp > 0) +- low = middle + 1; +- else +- return regs[middle].value; ++ val = name[1] - '0'; ++ if (ISDIGIT (name[2])) ++ val = val * 10 + name[2] - '0'; + } +- while (low <= high); + +- return -1; ++ if ((name[0] != 'v' && val > 15) || val > 31) ++ val = -1; ++ ++ return val; + } + + +@@ -272,7 +169,7 @@ register_name (expressionS *expressionP) + return FALSE; + + c = get_symbol_end (); +- reg_number = reg_name_search (pre_defined_registers, REG_NAME_CNT, name); ++ reg_number = reg_name_search (name); + + /* Put back the delimiting char. */ + *input_line_pointer = c; +@@ -382,6 +279,8 @@ s390_parse_cpu (char *arg) + return S390_OPCODE_Z196; + else if (strcmp (arg, "zEC12") == 0) + return S390_OPCODE_ZEC12; ++ else if (strcmp (arg, "z13") == 0) ++ return S390_OPCODE_Z13; + else if (strcmp (arg, "all") == 0) + return S390_OPCODE_MAXCPU - 1; + else +@@ -633,6 +532,12 @@ s390_insert_operand (unsigned char *insn, + max = (((addressT) 1 << (operand->bits - 1)) << 1) - 1; + min = (offsetT) 0; + uval = (addressT) val; ++ ++ /* Vector register operands have an additional bit in the RXB ++ field. */ ++ if (operand->flags & S390_OPERAND_VR) ++ max = (max << 1) | 1; ++ + /* Length x in an instructions has real length x+1. */ + if (operand->flags & S390_OPERAND_LENGTH) + uval--; +@@ -652,6 +557,43 @@ s390_insert_operand (unsigned char *insn, + } + } + ++ if (operand->flags & S390_OPERAND_VR) ++ { ++ /* Insert the extra bit into the RXB field. */ ++ switch (operand->shift) ++ { ++ case 8: ++ insn[4] |= (uval & 0x10) >> 1; ++ break; ++ case 12: ++ insn[4] |= (uval & 0x10) >> 2; ++ break; ++ case 16: ++ insn[4] |= (uval & 0x10) >> 3; ++ break; ++ case 32: ++ insn[4] |= (uval & 0x10) >> 4; ++ break; ++ } ++ uval &= 0xf; ++ } ++ ++ if (operand->flags & S390_OPERAND_OR1) ++ uval |= 1; ++ if (operand->flags & S390_OPERAND_OR2) ++ uval |= 2; ++ if (operand->flags & S390_OPERAND_OR8) ++ uval |= 8; ++ ++ /* Duplicate the operand at bit pos 12 to 16. */ ++ if (operand->flags & S390_OPERAND_CP16) ++ { ++ /* Copy VR operand at bit pos 12 to bit pos 16. */ ++ insn[2] |= uval << 4; ++ /* Copy the flag in the RXB field. */ ++ insn[4] |= (insn[4] & 4) >> 1; ++ } ++ + /* Insert fragments of the operand byte for byte. */ + offset = operand->shift + operand->bits; + uval <<= (-offset) & 7; +@@ -1206,6 +1148,14 @@ md_gather_operands (char *str, + + operand = s390_operands + *opindex_ptr; + ++ if ((opcode->flags & S390_INSTR_FLAG_OPTPARM) && *str == '\0') ++ { ++ /* Optional parameters might need to be ORed with a ++ value so calling s390_insert_operand is needed. */ ++ s390_insert_operand (insn, operand, 0, NULL, 0); ++ break; ++ } ++ + if (skip_optional && (operand->flags & S390_OPERAND_INDEX)) + { + /* We do an early skip. For D(X,B) constructions the index +@@ -1477,6 +1427,10 @@ md_gather_operands (char *str, + as_bad (_("syntax error; ')' not allowed here")); + str++; + } ++ ++ if ((opcode->flags & S390_INSTR_FLAG_OPTPARM) && *str == '\0') ++ continue; ++ + /* If there is a next operand it must be separated by a comma. */ + if (opindex_ptr[1] != '\0') + { +@@ -2499,7 +2453,7 @@ tc_s390_regname_to_dw2regnum (char *regname) + + if (regname[0] != 'c' && regname[0] != 'a') + { +- regnum = reg_name_search (pre_defined_registers, REG_NAME_CNT, regname); ++ regnum = reg_name_search (regname); + if (regname[0] == 'f' && regnum != -1) + regnum += 16; + } +diff --git a/gas/doc/as.texinfo b/gas/doc/as.texinfo +index 243851b..2c7d71e 100644 +--- a/gas/doc/as.texinfo ++++ b/gas/doc/as.texinfo +@@ -1589,7 +1589,7 @@ Architecture (esa) or the z/Architecture mode (zarch). + @item -march=@var{processor} + Specify which s390 processor variant is the target, @samp{g6}, @samp{g6}, + @samp{z900}, @samp{z990}, @samp{z9-109}, @samp{z9-ec}, @samp{z10}, +-@samp{z196}, or @samp{zEC12}. ++@samp{z196}, @samp{zEC12}, or @samp{z13}. + @item -mregnames + @itemx -mno-regnames + Allow or disallow symbolic names for registers. +diff --git a/gas/doc/c-s390.texi b/gas/doc/c-s390.texi +index a4fdf4a..a70f21b 100644 +--- a/gas/doc/c-s390.texi ++++ b/gas/doc/c-s390.texi +@@ -16,7 +16,7 @@ + The s390 version of @code{@value{AS}} supports two architectures modes + and seven chip levels. The architecture modes are the Enterprise System + Architecture (ESA) and the newer z/Architecture mode. The chip levels +-are g5, g6, z900, z990, z9-109, z9-ec, z10, z196, and zEC12. ++are g5, g6, z900, z990, z9-109, z9-ec, z10, z196, zEC12, and z13. + + @menu + * s390 Options:: Command-line Options. +@@ -64,8 +64,10 @@ are recognized: + @code{z990}, + @code{z9-109}, + @code{z9-ec}, +-@code{z10} and +-@code{z196}. ++@code{z10}, ++@code{z196}, ++@code{zEC12}, and ++@code{z13}. + Assembling an instruction that is not supported on the target processor + results in an error message. Do not specify @code{g5} or @code{g6} + with @samp{-mzarch}. +diff --git a/gas/testsuite/gas/s390/esa-g5.d b/gas/testsuite/gas/s390/esa-g5.d +index 2896966..2ea72b1 100644 +--- a/gas/testsuite/gas/s390/esa-g5.d ++++ b/gas/testsuite/gas/s390/esa-g5.d +@@ -157,6 +157,7 @@ Disassembly of section .text: + .*: de ff 5f ff af ff [ ]*ed 4095\(256,%r5\),4095\(%r10\) + .*: df ff 5f ff af ff [ ]*edmk 4095\(256,%r5\),4095\(%r10\) + .*: b3 8c 00 69 [ ]*efpc %r6,%r9 ++.*: b3 8c 00 60 [ ]*efpc %r6 + .*: b2 26 00 60 [ ]*epar %r6 + .*: b2 49 00 69 [ ]*ereg %r6,%r9 + .*: b2 27 00 60 [ ]*esar %r6 +@@ -179,27 +180,27 @@ Disassembly of section .text: + .*: b2 21 00 69 [ ]*ipte %r6,%r9 + .*: b2 29 00 69 [ ]*iske %r6,%r9 + .*: b2 23 00 69 [ ]*ivsk %r6,%r9 +-.*: a7 f4 00 00 [ ]*j 274 +-.*: a7 84 00 00 [ ]*je 278 +-.*: a7 24 00 00 [ ]*jh 27c +-.*: a7 a4 00 00 [ ]*jhe 280 +-.*: a7 44 00 00 [ ]*jl 284 +-.*: a7 c4 00 00 [ ]*jle 288 +-.*: a7 64 00 00 [ ]*jlh 28c +-.*: a7 44 00 00 [ ]*jl 290 +-.*: a7 74 00 00 [ ]*jne 294 +-.*: a7 d4 00 00 [ ]*jnh 298 +-.*: a7 54 00 00 [ ]*jnhe 29c +-.*: a7 b4 00 00 [ ]*jnl 2a0 +-.*: a7 34 00 00 [ ]*jnle 2a4 +-.*: a7 94 00 00 [ ]*jnlh 2a8 +-.*: a7 b4 00 00 [ ]*jnl 2ac +-.*: a7 e4 00 00 [ ]*jno 2b0 +-.*: a7 d4 00 00 [ ]*jnh 2b4 +-.*: a7 74 00 00 [ ]*jne 2b8 +-.*: a7 14 00 00 [ ]*jo 2bc +-.*: a7 24 00 00 [ ]*jh 2c0 +-.*: a7 84 00 00 [ ]*je 2c4 ++.*: a7 f4 00 00 [ ]*j 278 ++.*: a7 84 00 00 [ ]*je 27c ++.*: a7 24 00 00 [ ]*jh 280 ++.*: a7 a4 00 00 [ ]*jhe 284 ++.*: a7 44 00 00 [ ]*jl 288 ++.*: a7 c4 00 00 [ ]*jle 28c ++.*: a7 64 00 00 [ ]*jlh 290 ++.*: a7 44 00 00 [ ]*jl 294 ++.*: a7 74 00 00 [ ]*jne 298 ++.*: a7 d4 00 00 [ ]*jnh 29c ++.*: a7 54 00 00 [ ]*jnhe 2a0 ++.*: a7 b4 00 00 [ ]*jnl 2a4 ++.*: a7 34 00 00 [ ]*jnle 2a8 ++.*: a7 94 00 00 [ ]*jnlh 2ac ++.*: a7 b4 00 00 [ ]*jnl 2b0 ++.*: a7 e4 00 00 [ ]*jno 2b4 ++.*: a7 d4 00 00 [ ]*jnh 2b8 ++.*: a7 74 00 00 [ ]*jne 2bc ++.*: a7 14 00 00 [ ]*jo 2c0 ++.*: a7 24 00 00 [ ]*jh 2c4 ++.*: a7 84 00 00 [ ]*je 2c8 + .*: ed 65 af ff 00 18 [ ]*kdb %f6,4095\(%r5,%r10\) + .*: b3 18 00 69 [ ]*kdbr %f6,%f9 + .*: ed 65 af ff 00 08 [ ]*keb %f6,4095\(%r5,%r10\) +@@ -372,6 +373,7 @@ Disassembly of section .text: + .*: b3 0b 00 69 [ ]*sebr %f6,%f9 + .*: 3b 69 [ ]*ser %f6,%f9 + .*: b3 84 00 69 [ ]*sfpc %r6,%r9 ++.*: b3 84 00 60 [ ]*sfpc %r6 + .*: 4b 65 af ff [ ]*sh %r6,4095\(%r5,%r10\) + .*: b2 14 5f ff [ ]*sie 4095\(%r5\) + .*: b2 74 5f ff [ ]*siga 4095\(%r5\) +diff --git a/gas/testsuite/gas/s390/esa-g5.s b/gas/testsuite/gas/s390/esa-g5.s +index d0bfb20..1bdc4da 100644 +--- a/gas/testsuite/gas/s390/esa-g5.s ++++ b/gas/testsuite/gas/s390/esa-g5.s +@@ -151,6 +151,7 @@ foo: + ed 4095(256,%r5),4095(%r10) + edmk 4095(256,%r5),4095(%r10) + efpc %r6,%r9 ++ efpc %r6 + epar %r6 + ereg %r6,%r9 + esar %r6 +@@ -366,6 +367,7 @@ foo: + sebr %f6,%f9 + ser %f6,%f9 + sfpc %r6,%r9 ++ sfpc %r6 + sh %r6,4095(%r5,%r10) + sie 4095(%r5) + siga 4095(%r5) +diff --git a/gas/testsuite/gas/s390/esa-z9-109.d b/gas/testsuite/gas/s390/esa-z9-109.d +index c379c46..d9cfcae 100644 +--- a/gas/testsuite/gas/s390/esa-z9-109.d ++++ b/gas/testsuite/gas/s390/esa-z9-109.d +@@ -7,7 +7,11 @@ Disassembly of section .text: + + .* : + .*: b9 93 f0 68 [ ]*troo %r6,%r8,15 ++.*: b9 93 00 68 [ ]*troo %r6,%r8 + .*: b9 92 f0 68 [ ]*trot %r6,%r8,15 ++.*: b9 92 00 68 [ ]*trot %r6,%r8 + .*: b9 91 f0 68 [ ]*trto %r6,%r8,15 ++.*: b9 91 00 68 [ ]*trto %r6,%r8 + .*: b9 90 f0 68 [ ]*trtt %r6,%r8,15 ++.*: b9 90 00 68 [ ]*trtt %r6,%r8 + .*: b2 2b 00 69 [ ]*sske %r6,%r9 +diff --git a/gas/testsuite/gas/s390/esa-z9-109.s b/gas/testsuite/gas/s390/esa-z9-109.s +index 438f76e..c11fd38 100644 +--- a/gas/testsuite/gas/s390/esa-z9-109.s ++++ b/gas/testsuite/gas/s390/esa-z9-109.s +@@ -1,9 +1,13 @@ + .text + foo: + troo %r6,%r8,15 ++ troo %r6,%r8 + trot %r6,%r8,15 ++ trot %r6,%r8 + trto %r6,%r8,15 ++ trto %r6,%r8 + trtt %r6,%r8,15 ++ trtt %r6,%r8 + # z9-109 z/Architecture mode extended sske with an additional parameter + # make sure the old version still works for esa + sske %r6,%r9 +diff --git a/gas/testsuite/gas/s390/s390.exp b/gas/testsuite/gas/s390/s390.exp +index 8dee249..734e86c 100644 +--- a/gas/testsuite/gas/s390/s390.exp ++++ b/gas/testsuite/gas/s390/s390.exp +@@ -27,6 +27,7 @@ if [expr [istarget "s390-*-*"] || [istarget "s390x-*-*"]] then { + run_dump_test "zarch-z10" "{as -m64} {as -march=z10}" + run_dump_test "zarch-z196" "{as -m64} {as -march=z196}" + run_dump_test "zarch-zEC12" "{as -m64} {as -march=zEC12}" ++ run_dump_test "zarch-z13" "{as -m64} {as -march=z13}" + run_dump_test "zarch-reloc" "{as -m64}" + run_dump_test "zarch-operands" "{as -m64} {as -march=z9-109}" + run_dump_test "zarch-machine" "{as -m64} {as -march=z900}" +diff --git a/gas/testsuite/gas/s390/zarch-z10.d b/gas/testsuite/gas/s390/zarch-z10.d +index 9f94875..50a7138 100644 +--- a/gas/testsuite/gas/s390/zarch-z10.d ++++ b/gas/testsuite/gas/s390/zarch-z10.d +@@ -371,9 +371,9 @@ Disassembly of section .text: + .*: b9 a2 00 60 [ ]*ptf %r6 + .*: b9 af 00 67 [ ]*pfmf %r6,%r7 + .*: b9 bf a0 67 [ ]*trte %r6,%r7,10 +-.*: b9 bf 00 67 [ ]*trte %r6,%r7,0 ++.*: b9 bf 00 67 [ ]*trte %r6,%r7 + .*: b9 bd a0 67 [ ]*trtre %r6,%r7,10 +-.*: b9 bd 00 67 [ ]*trtre %r6,%r7,0 ++.*: b9 bd 00 67 [ ]*trtre %r6,%r7 + .*: b2 ed 00 67 [ ]*ecpga %r6,%r7 + .*: b2 e4 00 67 [ ]*ecctr %r6,%r7 + .*: b2 e5 00 67 [ ]*epctr %r6,%r7 +diff --git a/gas/testsuite/gas/s390/zarch-z13.d b/gas/testsuite/gas/s390/zarch-z13.d +new file mode 100644 +index 0000000..f74b9f8 +--- /dev/null ++++ b/gas/testsuite/gas/s390/zarch-z13.d +@@ -0,0 +1,548 @@ ++#name: s390x opcode ++#objdump: -dr ++ ++.*: +file format .* ++ ++Disassembly of section .text: ++ ++.* : ++.*: e7 69 bf a0 d0 27 [ ]*lcbb %r6,4000\(%r9,%r11\),13 ++.*: e7 f6 9f a0 d0 13 [ ]*vgef %v15,4000\(%v6,%r9\),13 ++.*: e7 f6 9f a0 d0 12 [ ]*vgeg %v15,4000\(%v6,%r9\),13 ++.*: e7 f0 ff fd 00 44 [ ]*vgbm %v15,65533 ++.*: e7 f0 00 00 00 44 [ ]*vzero %v15 ++.*: e7 f0 ff ff 00 44 [ ]*vone %v15 ++.*: e7 f0 fd fc b0 46 [ ]*vgm %v15,253,252,11 ++.*: e7 f0 fd fc 00 46 [ ]*vgmb %v15,253,252 ++.*: e7 f0 fd fc 10 46 [ ]*vgmh %v15,253,252 ++.*: e7 f0 fd fc 20 46 [ ]*vgmf %v15,253,252 ++.*: e7 f0 fd fc 30 46 [ ]*vgmg %v15,253,252 ++.*: e7 f6 9f a0 00 06 [ ]*vl %v15,4000\(%r6,%r9\) ++.*: e7 f1 00 00 04 56 [ ]*vlr %v15,%v17 ++.*: e7 f6 9f a0 d0 05 [ ]*vlrep %v15,4000\(%r6,%r9\),13 ++.*: e7 f6 9f a0 00 05 [ ]*vlrepb %v15,4000\(%r6,%r9\) ++.*: e7 f6 9f a0 10 05 [ ]*vlreph %v15,4000\(%r6,%r9\) ++.*: e7 f6 9f a0 20 05 [ ]*vlrepf %v15,4000\(%r6,%r9\) ++.*: e7 f6 9f a0 30 05 [ ]*vlrepg %v15,4000\(%r6,%r9\) ++.*: e7 f6 9f a0 d0 00 [ ]*vleb %v15,4000\(%r6,%r9\),13 ++.*: e7 f6 9f a0 d0 01 [ ]*vleh %v15,4000\(%r6,%r9\),13 ++.*: e7 f6 9f a0 d0 03 [ ]*vlef %v15,4000\(%r6,%r9\),13 ++.*: e7 f6 9f a0 d0 02 [ ]*vleg %v15,4000\(%r6,%r9\),13 ++.*: e7 f0 80 03 c0 40 [ ]*vleib %v15,-32765,12 ++.*: e7 f0 80 03 c0 41 [ ]*vleih %v15,-32765,12 ++.*: e7 f0 80 03 c0 43 [ ]*vleif %v15,-32765,12 ++.*: e7 f0 80 03 c0 42 [ ]*vleig %v15,-32765,12 ++.*: e7 6f 9f a0 d0 21 [ ]*vlgv %r6,%v15,4000\(%r9\),13 ++.*: e7 6f 9f a0 00 21 [ ]*vlgvb %r6,%v15,4000\(%r9\) ++.*: e7 6f 9f a0 10 21 [ ]*vlgvh %r6,%v15,4000\(%r9\) ++.*: e7 6f 9f a0 20 21 [ ]*vlgvf %r6,%v15,4000\(%r9\) ++.*: e7 6f 9f a0 30 21 [ ]*vlgvg %r6,%v15,4000\(%r9\) ++.*: e7 f6 9f a0 d0 04 [ ]*vllez %v15,4000\(%r6,%r9\),13 ++.*: e7 f6 9f a0 00 04 [ ]*vllezb %v15,4000\(%r6,%r9\) ++.*: e7 f6 9f a0 10 04 [ ]*vllezh %v15,4000\(%r6,%r9\) ++.*: e7 f6 9f a0 20 04 [ ]*vllezf %v15,4000\(%r6,%r9\) ++.*: e7 f6 9f a0 30 04 [ ]*vllezg %v15,4000\(%r6,%r9\) ++.*: e7 f1 6f a0 04 36 [ ]*vlm %v15,%v17,4000\(%r6\) ++.*: e7 f6 9f a0 d0 07 [ ]*vlbb %v15,4000\(%r6,%r9\),13 ++.*: e7 f6 9f a0 d0 22 [ ]*vlvg %v15,%r6,4000\(%r9\),13 ++.*: e7 f6 9f a0 00 22 [ ]*vlvgb %v15,%r6,4000\(%r9\) ++.*: e7 f6 9f a0 10 22 [ ]*vlvgh %v15,%r6,4000\(%r9\) ++.*: e7 f6 9f a0 20 22 [ ]*vlvgf %v15,%r6,4000\(%r9\) ++.*: e7 f6 9f a0 30 22 [ ]*vlvgg %v15,%r6,4000\(%r9\) ++.*: e7 f6 90 00 00 62 [ ]*vlvgp %v15,%r6,%r9 ++.*: e7 f6 9f a0 00 37 [ ]*vll %v15,%r6,4000\(%r9\) ++.*: e7 f1 40 00 d6 61 [ ]*vmrh %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 61 [ ]*vmrhb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 61 [ ]*vmrhh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 61 [ ]*vmrhf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 61 [ ]*vmrhg %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 60 [ ]*vmrl %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 60 [ ]*vmrlb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 60 [ ]*vmrlh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 60 [ ]*vmrlf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 60 [ ]*vmrlg %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 94 [ ]*vpk %v15,%v17,%v20,13 ++.*: e7 f1 40 00 16 94 [ ]*vpkh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 94 [ ]*vpkf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 94 [ ]*vpkg %v15,%v17,%v20 ++.*: e7 f1 40 c0 d6 97 [ ]*vpks %v15,%v17,%v20,13,12 ++.*: e7 f1 40 00 16 97 [ ]*vpksh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 97 [ ]*vpksf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 97 [ ]*vpksg %v15,%v17,%v20 ++.*: e7 f1 40 10 16 97 [ ]*vpkshs %v15,%v17,%v20 ++.*: e7 f1 40 10 26 97 [ ]*vpksfs %v15,%v17,%v20 ++.*: e7 f1 40 10 36 97 [ ]*vpksgs %v15,%v17,%v20 ++.*: e7 f1 40 c0 d6 95 [ ]*vpkls %v15,%v17,%v20,13,12 ++.*: e7 f1 40 00 16 95 [ ]*vpklsh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 95 [ ]*vpklsf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 95 [ ]*vpklsg %v15,%v17,%v20 ++.*: e7 f1 40 10 16 95 [ ]*vpklshs %v15,%v17,%v20 ++.*: e7 f1 40 10 26 95 [ ]*vpklsfs %v15,%v17,%v20 ++.*: e7 f1 40 10 36 95 [ ]*vpklsgs %v15,%v17,%v20 ++.*: e7 f1 40 00 87 8c [ ]*vperm %v15,%v17,%v20,%v24 ++.*: e7 f1 40 00 d6 84 [ ]*vpdi %v15,%v17,%v20,13 ++.*: e7 f1 ff fd c4 4d [ ]*vrep %v15,%v17,65533,12 ++.*: e7 f1 ff fd 04 4d [ ]*vrepb %v15,%v17,65533 ++.*: e7 f1 ff fd 14 4d [ ]*vreph %v15,%v17,65533 ++.*: e7 f1 ff fd 24 4d [ ]*vrepf %v15,%v17,65533 ++.*: e7 f1 ff fd 34 4d [ ]*vrepg %v15,%v17,65533 ++.*: e7 f0 80 03 c0 45 [ ]*vrepi %v15,-32765,12 ++.*: e7 f0 80 03 00 45 [ ]*vrepib %v15,-32765 ++.*: e7 f0 80 03 10 45 [ ]*vrepih %v15,-32765 ++.*: e7 f0 80 03 20 45 [ ]*vrepif %v15,-32765 ++.*: e7 f0 80 03 30 45 [ ]*vrepig %v15,-32765 ++.*: e7 f6 9f a0 d0 1b [ ]*vscef %v15,4000\(%v6,%r9\),13 ++.*: e7 f6 9f a0 d0 1a [ ]*vsceg %v15,4000\(%v6,%r9\),13 ++.*: e7 f1 40 00 87 8d [ ]*vsel %v15,%v17,%v20,%v24 ++.*: e7 f1 00 00 d4 5f [ ]*vseg %v15,%v17,13 ++.*: e7 f1 00 00 04 5f [ ]*vsegb %v15,%v17 ++.*: e7 f1 00 00 14 5f [ ]*vsegh %v15,%v17 ++.*: e7 f1 00 00 24 5f [ ]*vsegf %v15,%v17 ++.*: e7 f6 9f a0 00 0e [ ]*vst %v15,4000\(%r6,%r9\) ++.*: e7 f6 9f a0 d0 08 [ ]*vsteb %v15,4000\(%r6,%r9\),13 ++.*: e7 f6 9f a0 d0 09 [ ]*vsteh %v15,4000\(%r6,%r9\),13 ++.*: e7 f6 9f a0 d0 0b [ ]*vstef %v15,4000\(%r6,%r9\),13 ++.*: e7 f6 9f a0 d0 0a [ ]*vsteg %v15,4000\(%r6,%r9\),13 ++.*: e7 f1 6f a0 04 3e [ ]*vstm %v15,%v17,4000\(%r6\) ++.*: e7 f6 9f a0 00 3f [ ]*vstl %v15,%r6,4000\(%r9\) ++.*: e7 f1 00 00 d4 d7 [ ]*vuph %v15,%v17,13 ++.*: e7 f1 00 00 04 d7 [ ]*vuphb %v15,%v17 ++.*: e7 f1 00 00 14 d7 [ ]*vuphh %v15,%v17 ++.*: e7 f1 00 00 24 d7 [ ]*vuphf %v15,%v17 ++.*: e7 f1 00 00 d4 d5 [ ]*vuplh %v15,%v17,13 ++.*: e7 f1 00 00 04 d5 [ ]*vuplhb %v15,%v17 ++.*: e7 f1 00 00 14 d5 [ ]*vuplhh %v15,%v17 ++.*: e7 f1 00 00 24 d5 [ ]*vuplhf %v15,%v17 ++.*: e7 f1 00 00 d4 d6 [ ]*vupl %v15,%v17,13 ++.*: e7 f1 00 00 04 d6 [ ]*vuplb %v15,%v17 ++.*: e7 f1 00 00 14 d6 [ ]*vuplhw %v15,%v17 ++.*: e7 f1 00 00 24 d6 [ ]*vuplf %v15,%v17 ++.*: e7 f1 00 00 d4 d4 [ ]*vupll %v15,%v17,13 ++.*: e7 f1 00 00 04 d4 [ ]*vupllb %v15,%v17 ++.*: e7 f1 00 00 14 d4 [ ]*vupllh %v15,%v17 ++.*: e7 f1 00 00 24 d4 [ ]*vupllf %v15,%v17 ++.*: e7 f1 40 00 d6 f3 [ ]*va %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 f3 [ ]*vab %v15,%v17,%v20 ++.*: e7 f1 40 00 16 f3 [ ]*vah %v15,%v17,%v20 ++.*: e7 f1 40 00 26 f3 [ ]*vaf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 f3 [ ]*vag %v15,%v17,%v20 ++.*: e7 f1 40 00 46 f3 [ ]*vaq %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 f1 [ ]*vacc %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 f1 [ ]*vaccb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 f1 [ ]*vacch %v15,%v17,%v20 ++.*: e7 f1 40 00 26 f1 [ ]*vaccf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 f1 [ ]*vaccg %v15,%v17,%v20 ++.*: e7 f1 40 00 46 f1 [ ]*vaccq %v15,%v17,%v20 ++.*: e7 f1 4d 00 87 bb [ ]*vac %v15,%v17,%v20,%v24,13 ++.*: e7 f1 44 00 87 bb [ ]*vacq %v15,%v17,%v20,%v24 ++.*: e7 f1 4d 00 87 b9 [ ]*vaccc %v15,%v17,%v20,%v24,13 ++.*: e7 f1 44 00 87 b9 [ ]*vacccq %v15,%v17,%v20,%v24 ++.*: e7 f1 40 00 06 68 [ ]*vn %v15,%v17,%v20 ++.*: e7 f1 40 00 06 69 [ ]*vnc %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 f2 [ ]*vavg %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 f2 [ ]*vavgb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 f2 [ ]*vavgh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 f2 [ ]*vavgf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 f2 [ ]*vavgg %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 f0 [ ]*vavgl %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 f0 [ ]*vavglb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 f0 [ ]*vavglh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 f0 [ ]*vavglf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 f0 [ ]*vavglg %v15,%v17,%v20 ++.*: e7 f1 40 00 06 66 [ ]*vcksm %v15,%v17,%v20 ++.*: e7 f1 00 00 d4 db [ ]*vec %v15,%v17,13 ++.*: e7 f1 00 00 04 db [ ]*vecb %v15,%v17 ++.*: e7 f1 00 00 14 db [ ]*vech %v15,%v17 ++.*: e7 f1 00 00 24 db [ ]*vecf %v15,%v17 ++.*: e7 f1 00 00 34 db [ ]*vecg %v15,%v17 ++.*: e7 f1 00 00 d4 d9 [ ]*vecl %v15,%v17,13 ++.*: e7 f1 00 00 04 d9 [ ]*veclb %v15,%v17 ++.*: e7 f1 00 00 14 d9 [ ]*veclh %v15,%v17 ++.*: e7 f1 00 00 24 d9 [ ]*veclf %v15,%v17 ++.*: e7 f1 00 00 34 d9 [ ]*veclg %v15,%v17 ++.*: e7 f1 40 c0 d6 f8 [ ]*vceq %v15,%v17,%v20,13,12 ++.*: e7 f1 40 00 06 f8 [ ]*vceqb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 f8 [ ]*vceqh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 f8 [ ]*vceqf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 f8 [ ]*vceqg %v15,%v17,%v20 ++.*: e7 f1 40 10 06 f8 [ ]*vceqbs %v15,%v17,%v20 ++.*: e7 f1 40 10 16 f8 [ ]*vceqhs %v15,%v17,%v20 ++.*: e7 f1 40 10 26 f8 [ ]*vceqfs %v15,%v17,%v20 ++.*: e7 f1 40 10 36 f8 [ ]*vceqgs %v15,%v17,%v20 ++.*: e7 f1 40 c0 d6 fb [ ]*vch %v15,%v17,%v20,13,12 ++.*: e7 f1 40 00 06 fb [ ]*vchb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 fb [ ]*vchh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 fb [ ]*vchf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 fb [ ]*vchg %v15,%v17,%v20 ++.*: e7 f1 40 10 06 fb [ ]*vchbs %v15,%v17,%v20 ++.*: e7 f1 40 10 16 fb [ ]*vchhs %v15,%v17,%v20 ++.*: e7 f1 40 10 26 fb [ ]*vchfs %v15,%v17,%v20 ++.*: e7 f1 40 10 36 fb [ ]*vchgs %v15,%v17,%v20 ++.*: e7 f1 40 c0 d6 f9 [ ]*vchl %v15,%v17,%v20,13,12 ++.*: e7 f1 40 00 06 f9 [ ]*vchlb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 f9 [ ]*vchlh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 f9 [ ]*vchlf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 f9 [ ]*vchlg %v15,%v17,%v20 ++.*: e7 f1 40 10 06 f9 [ ]*vchlbs %v15,%v17,%v20 ++.*: e7 f1 40 10 16 f9 [ ]*vchlhs %v15,%v17,%v20 ++.*: e7 f1 40 10 26 f9 [ ]*vchlfs %v15,%v17,%v20 ++.*: e7 f1 40 10 36 f9 [ ]*vchlgs %v15,%v17,%v20 ++.*: e7 f1 00 00 d4 53 [ ]*vclz %v15,%v17,13 ++.*: e7 f1 00 00 04 53 [ ]*vclzb %v15,%v17 ++.*: e7 f1 00 00 14 53 [ ]*vclzh %v15,%v17 ++.*: e7 f1 00 00 24 53 [ ]*vclzf %v15,%v17 ++.*: e7 f1 00 00 34 53 [ ]*vclzg %v15,%v17 ++.*: e7 f1 00 00 d4 52 [ ]*vctz %v15,%v17,13 ++.*: e7 f1 00 00 04 52 [ ]*vctzb %v15,%v17 ++.*: e7 f1 00 00 14 52 [ ]*vctzh %v15,%v17 ++.*: e7 f1 00 00 24 52 [ ]*vctzf %v15,%v17 ++.*: e7 f1 00 00 34 52 [ ]*vctzg %v15,%v17 ++.*: e7 f1 40 00 06 6d [ ]*vx %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 b4 [ ]*vgfm %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 b4 [ ]*vgfmb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 b4 [ ]*vgfmh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 b4 [ ]*vgfmf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 b4 [ ]*vgfmg %v15,%v17,%v20 ++.*: e7 f1 4d 00 87 bc [ ]*vgfma %v15,%v17,%v20,%v24,13 ++.*: e7 f1 40 00 87 bc [ ]*vgfmab %v15,%v17,%v20,%v24 ++.*: e7 f1 41 00 87 bc [ ]*vgfmah %v15,%v17,%v20,%v24 ++.*: e7 f1 42 00 87 bc [ ]*vgfmaf %v15,%v17,%v20,%v24 ++.*: e7 f1 43 00 87 bc [ ]*vgfmag %v15,%v17,%v20,%v24 ++.*: e7 f1 00 00 d4 de [ ]*vlc %v15,%v17,13 ++.*: e7 f1 00 00 04 de [ ]*vlcb %v15,%v17 ++.*: e7 f1 00 00 14 de [ ]*vlch %v15,%v17 ++.*: e7 f1 00 00 24 de [ ]*vlcf %v15,%v17 ++.*: e7 f1 00 00 34 de [ ]*vlcg %v15,%v17 ++.*: e7 f1 00 00 d4 df [ ]*vlp %v15,%v17,13 ++.*: e7 f1 00 00 04 df [ ]*vlpb %v15,%v17 ++.*: e7 f1 00 00 14 df [ ]*vlph %v15,%v17 ++.*: e7 f1 00 00 24 df [ ]*vlpf %v15,%v17 ++.*: e7 f1 00 00 34 df [ ]*vlpg %v15,%v17 ++.*: e7 f1 40 00 d6 ff [ ]*vmx %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 ff [ ]*vmxb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 ff [ ]*vmxh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 ff [ ]*vmxf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 ff [ ]*vmxg %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 fd [ ]*vmxl %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 fd [ ]*vmxlb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 fd [ ]*vmxlh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 fd [ ]*vmxlf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 fd [ ]*vmxlg %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 fe [ ]*vmn %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 fe [ ]*vmnb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 fe [ ]*vmnh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 fe [ ]*vmnf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 fe [ ]*vmng %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 fc [ ]*vmnl %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 fc [ ]*vmnlb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 fc [ ]*vmnlh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 fc [ ]*vmnlf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 fc [ ]*vmnlg %v15,%v17,%v20 ++.*: e7 f1 4d 00 87 aa [ ]*vmal %v15,%v17,%v20,%v24,13 ++.*: e7 f1 40 00 87 aa [ ]*vmalb %v15,%v17,%v20,%v24 ++.*: e7 f1 41 00 87 aa [ ]*vmalhw %v15,%v17,%v20,%v24 ++.*: e7 f1 42 00 87 aa [ ]*vmalf %v15,%v17,%v20,%v24 ++.*: e7 f1 4d 00 87 ab [ ]*vmah %v15,%v17,%v20,%v24,13 ++.*: e7 f1 40 00 87 ab [ ]*vmahb %v15,%v17,%v20,%v24 ++.*: e7 f1 41 00 87 ab [ ]*vmahh %v15,%v17,%v20,%v24 ++.*: e7 f1 42 00 87 ab [ ]*vmahf %v15,%v17,%v20,%v24 ++.*: e7 f1 4d 00 87 a9 [ ]*vmalh %v15,%v17,%v20,%v24,13 ++.*: e7 f1 40 00 87 a9 [ ]*vmalhb %v15,%v17,%v20,%v24 ++.*: e7 f1 41 00 87 a9 [ ]*vmalhh %v15,%v17,%v20,%v24 ++.*: e7 f1 42 00 87 a9 [ ]*vmalhf %v15,%v17,%v20,%v24 ++.*: e7 f1 4d 00 87 ae [ ]*vmae %v15,%v17,%v20,%v24,13 ++.*: e7 f1 40 00 87 ae [ ]*vmaeb %v15,%v17,%v20,%v24 ++.*: e7 f1 41 00 87 ae [ ]*vmaeh %v15,%v17,%v20,%v24 ++.*: e7 f1 42 00 87 ae [ ]*vmaef %v15,%v17,%v20,%v24 ++.*: e7 f1 4d 00 87 ac [ ]*vmale %v15,%v17,%v20,%v24,13 ++.*: e7 f1 40 00 87 ac [ ]*vmaleb %v15,%v17,%v20,%v24 ++.*: e7 f1 41 00 87 ac [ ]*vmaleh %v15,%v17,%v20,%v24 ++.*: e7 f1 42 00 87 ac [ ]*vmalef %v15,%v17,%v20,%v24 ++.*: e7 f1 4d 00 87 af [ ]*vmao %v15,%v17,%v20,%v24,13 ++.*: e7 f1 40 00 87 af [ ]*vmaob %v15,%v17,%v20,%v24 ++.*: e7 f1 41 00 87 af [ ]*vmaoh %v15,%v17,%v20,%v24 ++.*: e7 f1 42 00 87 af [ ]*vmaof %v15,%v17,%v20,%v24 ++.*: e7 f1 4d 00 87 ad [ ]*vmalo %v15,%v17,%v20,%v24,13 ++.*: e7 f1 40 00 87 ad [ ]*vmalob %v15,%v17,%v20,%v24 ++.*: e7 f1 41 00 87 ad [ ]*vmaloh %v15,%v17,%v20,%v24 ++.*: e7 f1 42 00 87 ad [ ]*vmalof %v15,%v17,%v20,%v24 ++.*: e7 f1 40 00 d6 a3 [ ]*vmh %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 a3 [ ]*vmhb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 a3 [ ]*vmhh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 a3 [ ]*vmhf %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 a1 [ ]*vmlh %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 a1 [ ]*vmlhb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 a1 [ ]*vmlhh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 a1 [ ]*vmlhf %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 a2 [ ]*vml %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 a2 [ ]*vmlb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 a2 [ ]*vmlhw %v15,%v17,%v20 ++.*: e7 f1 40 00 26 a2 [ ]*vmlf %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 a6 [ ]*vme %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 a6 [ ]*vmeb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 a6 [ ]*vmeh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 a6 [ ]*vmef %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 a4 [ ]*vmle %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 a4 [ ]*vmleb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 a4 [ ]*vmleh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 a4 [ ]*vmlef %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 a7 [ ]*vmo %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 a7 [ ]*vmob %v15,%v17,%v20 ++.*: e7 f1 40 00 16 a7 [ ]*vmoh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 a7 [ ]*vmof %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 a5 [ ]*vmlo %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 a5 [ ]*vmlob %v15,%v17,%v20 ++.*: e7 f1 40 00 16 a5 [ ]*vmloh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 a5 [ ]*vmlof %v15,%v17,%v20 ++.*: e7 f1 40 00 06 6b [ ]*vno %v15,%v17,%v20 ++.*: e7 f1 10 00 06 6b [ ]*vno %v15,%v17,%v17 ++.*: e7 f1 40 00 06 6a [ ]*vo %v15,%v17,%v20 ++.*: e7 f1 00 00 d4 50 [ ]*vpopct %v15,%v17,13 ++.*: e7 f1 40 00 d6 73 [ ]*verllv %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 73 [ ]*verllvb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 73 [ ]*verllvh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 73 [ ]*verllvf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 73 [ ]*verllvg %v15,%v17,%v20 ++.*: e7 f1 6f a0 d4 33 [ ]*verll %v15,%v17,4000\(%r6\),13 ++.*: e7 f1 6f a0 04 33 [ ]*verllb %v15,%v17,4000\(%r6\) ++.*: e7 f1 6f a0 14 33 [ ]*verllh %v15,%v17,4000\(%r6\) ++.*: e7 f1 6f a0 24 33 [ ]*verllf %v15,%v17,4000\(%r6\) ++.*: e7 f1 6f a0 34 33 [ ]*verllg %v15,%v17,4000\(%r6\) ++.*: e7 f1 40 fd c6 72 [ ]*verim %v15,%v17,%v20,253,12 ++.*: e7 f1 40 fd 06 72 [ ]*verimb %v15,%v17,%v20,253 ++.*: e7 f1 40 fd 16 72 [ ]*verimh %v15,%v17,%v20,253 ++.*: e7 f1 40 fd 26 72 [ ]*verimf %v15,%v17,%v20,253 ++.*: e7 f1 40 fd 36 72 [ ]*verimg %v15,%v17,%v20,253 ++.*: e7 f1 40 00 d6 70 [ ]*veslv %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 70 [ ]*veslvb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 70 [ ]*veslvh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 70 [ ]*veslvf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 70 [ ]*veslvg %v15,%v17,%v20 ++.*: e7 f1 6f a0 d4 30 [ ]*vesl %v15,%v17,4000\(%r6\),13 ++.*: e7 f1 6f a0 04 30 [ ]*veslb %v15,%v17,4000\(%r6\) ++.*: e7 f1 6f a0 14 30 [ ]*veslh %v15,%v17,4000\(%r6\) ++.*: e7 f1 6f a0 24 30 [ ]*veslf %v15,%v17,4000\(%r6\) ++.*: e7 f1 6f a0 34 30 [ ]*veslg %v15,%v17,4000\(%r6\) ++.*: e7 f1 40 00 d6 7a [ ]*vesrav %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 7a [ ]*vesravb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 7a [ ]*vesravh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 7a [ ]*vesravf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 7a [ ]*vesravg %v15,%v17,%v20 ++.*: e7 f1 6f a0 d4 3a [ ]*vesra %v15,%v17,4000\(%r6\),13 ++.*: e7 f1 6f a0 04 3a [ ]*vesrab %v15,%v17,4000\(%r6\) ++.*: e7 f1 6f a0 14 3a [ ]*vesrah %v15,%v17,4000\(%r6\) ++.*: e7 f1 6f a0 24 3a [ ]*vesraf %v15,%v17,4000\(%r6\) ++.*: e7 f1 6f a0 34 3a [ ]*vesrag %v15,%v17,4000\(%r6\) ++.*: e7 f1 40 00 d6 78 [ ]*vesrlv %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 78 [ ]*vesrlvb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 78 [ ]*vesrlvh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 78 [ ]*vesrlvf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 78 [ ]*vesrlvg %v15,%v17,%v20 ++.*: e7 f1 6f a0 d4 38 [ ]*vesrl %v15,%v17,4000\(%r6\),13 ++.*: e7 f1 6f a0 04 38 [ ]*vesrlb %v15,%v17,4000\(%r6\) ++.*: e7 f1 6f a0 14 38 [ ]*vesrlh %v15,%v17,4000\(%r6\) ++.*: e7 f1 6f a0 24 38 [ ]*vesrlf %v15,%v17,4000\(%r6\) ++.*: e7 f1 6f a0 34 38 [ ]*vesrlg %v15,%v17,4000\(%r6\) ++.*: e7 f1 40 00 06 74 [ ]*vsl %v15,%v17,%v20 ++.*: e7 f1 40 00 06 75 [ ]*vslb %v15,%v17,%v20 ++.*: e7 f1 40 fd 06 77 [ ]*vsldb %v15,%v17,%v20,253 ++.*: e7 f1 40 00 06 7e [ ]*vsra %v15,%v17,%v20 ++.*: e7 f1 40 00 06 7f [ ]*vsrab %v15,%v17,%v20 ++.*: e7 f1 40 00 06 7c [ ]*vsrl %v15,%v17,%v20 ++.*: e7 f1 40 00 06 7d [ ]*vsrlb %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 f7 [ ]*vs %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 f7 [ ]*vsb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 f7 [ ]*vsh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 f7 [ ]*vsf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 f7 [ ]*vsg %v15,%v17,%v20 ++.*: e7 f1 40 00 46 f7 [ ]*vsq %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 f5 [ ]*vscbi %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 f5 [ ]*vscbib %v15,%v17,%v20 ++.*: e7 f1 40 00 16 f5 [ ]*vscbih %v15,%v17,%v20 ++.*: e7 f1 40 00 26 f5 [ ]*vscbif %v15,%v17,%v20 ++.*: e7 f1 40 00 36 f5 [ ]*vscbig %v15,%v17,%v20 ++.*: e7 f1 40 00 46 f5 [ ]*vscbiq %v15,%v17,%v20 ++.*: e7 f1 4d 00 87 bf [ ]*vsbi %v15,%v17,%v20,%v24,13 ++.*: e7 f1 44 00 87 bf [ ]*vsbiq %v15,%v17,%v20,%v24 ++.*: e7 f1 4d 00 87 bd [ ]*vsbcbi %v15,%v17,%v20,%v24,13 ++.*: e7 f1 44 00 87 bd [ ]*vsbcbiq %v15,%v17,%v20,%v24 ++.*: e7 f1 40 00 d6 65 [ ]*vsumg %v15,%v17,%v20,13 ++.*: e7 f1 40 00 16 65 [ ]*vsumgh %v15,%v17,%v20 ++.*: e7 f1 40 00 26 65 [ ]*vsumgf %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 67 [ ]*vsumq %v15,%v17,%v20,13 ++.*: e7 f1 40 00 26 67 [ ]*vsumqf %v15,%v17,%v20 ++.*: e7 f1 40 00 36 67 [ ]*vsumqg %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 64 [ ]*vsum %v15,%v17,%v20,13 ++.*: e7 f1 40 00 06 64 [ ]*vsumb %v15,%v17,%v20 ++.*: e7 f1 40 00 16 64 [ ]*vsumh %v15,%v17,%v20 ++.*: e7 f1 00 00 04 d8 [ ]*vtm %v15,%v17 ++.*: e7 f1 40 00 d6 82 [ ]*vfae %v15,%v17,%v20,13 ++.*: e7 f1 40 c0 d6 82 [ ]*vfae %v15,%v17,%v20,13,12 ++.*: e7 f1 40 00 06 82 [ ]*vfaeb %v15,%v17,%v20 ++.*: e7 f1 40 d0 06 82 [ ]*vfaebs %v15,%v17,%v20,12 ++.*: e7 f1 40 00 16 82 [ ]*vfaeh %v15,%v17,%v20 ++.*: e7 f1 40 d0 16 82 [ ]*vfaehs %v15,%v17,%v20,12 ++.*: e7 f1 40 00 26 82 [ ]*vfaef %v15,%v17,%v20 ++.*: e7 f1 40 d0 26 82 [ ]*vfaefs %v15,%v17,%v20,12 ++.*: e7 f1 40 10 06 82 [ ]*vfaebs %v15,%v17,%v20 ++.*: e7 f1 40 d0 06 82 [ ]*vfaebs %v15,%v17,%v20,12 ++.*: e7 f1 40 10 16 82 [ ]*vfaehs %v15,%v17,%v20 ++.*: e7 f1 40 d0 16 82 [ ]*vfaehs %v15,%v17,%v20,12 ++.*: e7 f1 40 10 26 82 [ ]*vfaefs %v15,%v17,%v20 ++.*: e7 f1 40 d0 26 82 [ ]*vfaefs %v15,%v17,%v20,12 ++.*: e7 f1 40 20 06 82 [ ]*vfaezb %v15,%v17,%v20 ++.*: e7 f1 40 f0 06 82 [ ]*vfaezbs %v15,%v17,%v20,12 ++.*: e7 f1 40 20 16 82 [ ]*vfaezh %v15,%v17,%v20 ++.*: e7 f1 40 f0 16 82 [ ]*vfaezhs %v15,%v17,%v20,12 ++.*: e7 f1 40 20 26 82 [ ]*vfaezf %v15,%v17,%v20 ++.*: e7 f1 40 f0 26 82 [ ]*vfaezfs %v15,%v17,%v20,12 ++.*: e7 f1 40 30 06 82 [ ]*vfaezbs %v15,%v17,%v20 ++.*: e7 f1 40 f0 06 82 [ ]*vfaezbs %v15,%v17,%v20,12 ++.*: e7 f1 40 30 16 82 [ ]*vfaezhs %v15,%v17,%v20 ++.*: e7 f1 40 f0 16 82 [ ]*vfaezhs %v15,%v17,%v20,12 ++.*: e7 f1 40 30 26 82 [ ]*vfaezfs %v15,%v17,%v20 ++.*: e7 f1 40 f0 26 82 [ ]*vfaezfs %v15,%v17,%v20,12 ++.*: e7 f1 40 00 d6 80 [ ]*vfee %v15,%v17,%v20,13 ++.*: e7 f1 40 c0 d6 80 [ ]*vfee %v15,%v17,%v20,13,12 ++.*: e7 f1 40 00 06 80 [ ]*vfeeb %v15,%v17,%v20 ++.*: e7 f1 40 d0 06 80 [ ]*vfeeb %v15,%v17,%v20,13 ++.*: e7 f1 40 00 16 80 [ ]*vfeeh %v15,%v17,%v20 ++.*: e7 f1 40 d0 16 80 [ ]*vfeeh %v15,%v17,%v20,13 ++.*: e7 f1 40 00 26 80 [ ]*vfeef %v15,%v17,%v20 ++.*: e7 f1 40 d0 26 80 [ ]*vfeef %v15,%v17,%v20,13 ++.*: e7 f1 40 10 06 80 [ ]*vfeebs %v15,%v17,%v20 ++.*: e7 f1 40 10 16 80 [ ]*vfeehs %v15,%v17,%v20 ++.*: e7 f1 40 10 26 80 [ ]*vfeefs %v15,%v17,%v20 ++.*: e7 f1 40 20 06 80 [ ]*vfeezb %v15,%v17,%v20 ++.*: e7 f1 40 20 16 80 [ ]*vfeezh %v15,%v17,%v20 ++.*: e7 f1 40 20 26 80 [ ]*vfeezf %v15,%v17,%v20 ++.*: e7 f1 40 30 06 80 [ ]*vfeezbs %v15,%v17,%v20 ++.*: e7 f1 40 30 16 80 [ ]*vfeezhs %v15,%v17,%v20 ++.*: e7 f1 40 30 26 80 [ ]*vfeezfs %v15,%v17,%v20 ++.*: e7 f1 40 00 d6 81 [ ]*vfene %v15,%v17,%v20,13 ++.*: e7 f1 40 c0 d6 81 [ ]*vfene %v15,%v17,%v20,13,12 ++.*: e7 f1 40 00 06 81 [ ]*vfeneb %v15,%v17,%v20 ++.*: e7 f1 40 d0 06 81 [ ]*vfeneb %v15,%v17,%v20,13 ++.*: e7 f1 40 00 16 81 [ ]*vfeneh %v15,%v17,%v20 ++.*: e7 f1 40 d0 16 81 [ ]*vfeneh %v15,%v17,%v20,13 ++.*: e7 f1 40 00 26 81 [ ]*vfenef %v15,%v17,%v20 ++.*: e7 f1 40 d0 26 81 [ ]*vfenef %v15,%v17,%v20,13 ++.*: e7 f1 40 10 06 81 [ ]*vfenebs %v15,%v17,%v20 ++.*: e7 f1 40 10 16 81 [ ]*vfenehs %v15,%v17,%v20 ++.*: e7 f1 40 10 26 81 [ ]*vfenefs %v15,%v17,%v20 ++.*: e7 f1 40 20 06 81 [ ]*vfenezb %v15,%v17,%v20 ++.*: e7 f1 40 20 16 81 [ ]*vfenezh %v15,%v17,%v20 ++.*: e7 f1 40 20 26 81 [ ]*vfenezf %v15,%v17,%v20 ++.*: e7 f1 40 30 06 81 [ ]*vfenezbs %v15,%v17,%v20 ++.*: e7 f1 40 30 16 81 [ ]*vfenezhs %v15,%v17,%v20 ++.*: e7 f1 40 30 26 81 [ ]*vfenezfs %v15,%v17,%v20 ++.*: e7 f1 00 00 d4 5c [ ]*vistr %v15,%v17,13 ++.*: e7 f1 00 c0 d4 5c [ ]*vistr %v15,%v17,13,12 ++.*: e7 f1 00 00 04 5c [ ]*vistrb %v15,%v17 ++.*: e7 f1 00 d0 04 5c [ ]*vistrb %v15,%v17,13 ++.*: e7 f1 00 00 14 5c [ ]*vistrh %v15,%v17 ++.*: e7 f1 00 d0 14 5c [ ]*vistrh %v15,%v17,13 ++.*: e7 f1 00 00 24 5c [ ]*vistrf %v15,%v17 ++.*: e7 f1 00 d0 24 5c [ ]*vistrf %v15,%v17,13 ++.*: e7 f1 00 10 04 5c [ ]*vistrbs %v15,%v17 ++.*: e7 f1 00 10 14 5c [ ]*vistrhs %v15,%v17 ++.*: e7 f1 00 10 24 5c [ ]*vistrfs %v15,%v17 ++.*: e7 f1 4d 00 87 8a [ ]*vstrc %v15,%v17,%v20,%v24,13 ++.*: e7 f1 4d c0 87 8a [ ]*vstrc %v15,%v17,%v20,%v24,13,12 ++.*: e7 f1 40 00 87 8a [ ]*vstrcb %v15,%v17,%v20,%v24 ++.*: e7 f1 40 d0 87 8a [ ]*vstrcbs %v15,%v17,%v20,%v24,12 ++.*: e7 f1 41 00 87 8a [ ]*vstrch %v15,%v17,%v20,%v24 ++.*: e7 f1 41 d0 87 8a [ ]*vstrchs %v15,%v17,%v20,%v24,12 ++.*: e7 f1 42 00 87 8a [ ]*vstrcf %v15,%v17,%v20,%v24 ++.*: e7 f1 42 d0 87 8a [ ]*vstrcfs %v15,%v17,%v20,%v24,12 ++.*: e7 f1 40 10 87 8a [ ]*vstrcbs %v15,%v17,%v20,%v24 ++.*: e7 f1 40 d0 87 8a [ ]*vstrcbs %v15,%v17,%v20,%v24,12 ++.*: e7 f1 41 10 87 8a [ ]*vstrchs %v15,%v17,%v20,%v24 ++.*: e7 f1 41 d0 87 8a [ ]*vstrchs %v15,%v17,%v20,%v24,12 ++.*: e7 f1 42 10 87 8a [ ]*vstrcfs %v15,%v17,%v20,%v24 ++.*: e7 f1 42 d0 87 8a [ ]*vstrcfs %v15,%v17,%v20,%v24,12 ++.*: e7 f1 40 20 87 8a [ ]*vstrczb %v15,%v17,%v20,%v24 ++.*: e7 f1 40 f0 87 8a [ ]*vstrczbs %v15,%v17,%v20,%v24,12 ++.*: e7 f1 41 20 87 8a [ ]*vstrczh %v15,%v17,%v20,%v24 ++.*: e7 f1 41 f0 87 8a [ ]*vstrczhs %v15,%v17,%v20,%v24,12 ++.*: e7 f1 42 20 87 8a [ ]*vstrczf %v15,%v17,%v20,%v24 ++.*: e7 f1 42 f0 87 8a [ ]*vstrczfs %v15,%v17,%v20,%v24,12 ++.*: e7 f1 40 30 87 8a [ ]*vstrczbs %v15,%v17,%v20,%v24 ++.*: e7 f1 40 f0 87 8a [ ]*vstrczbs %v15,%v17,%v20,%v24,12 ++.*: e7 f1 41 30 87 8a [ ]*vstrczhs %v15,%v17,%v20,%v24 ++.*: e7 f1 41 f0 87 8a [ ]*vstrczhs %v15,%v17,%v20,%v24,12 ++.*: e7 f1 42 30 87 8a [ ]*vstrczfs %v15,%v17,%v20,%v24 ++.*: e7 f1 42 f0 87 8a [ ]*vstrczfs %v15,%v17,%v20,%v24,12 ++.*: e7 f1 40 0c d6 e3 [ ]*vfa %v15,%v17,%v20,13,12 ++.*: e7 f1 40 00 36 e3 [ ]*vfadb %v15,%v17,%v20 ++.*: e7 f1 40 08 36 e3 [ ]*wfadb %v15,%v17,%v20 ++.*: e7 f1 00 cd 04 cb [ ]*wfc %v15,%v17,13,12 ++.*: e7 f1 00 00 34 cb [ ]*wfcdb %v15,%v17 ++.*: e7 f1 00 cd 04 ca [ ]*wfk %v15,%v17,13,12 ++.*: e7 f1 00 00 34 ca [ ]*wfkdb %v15,%v17 ++.*: e7 f1 40 00 06 e8 [ ]*vfce %v15,%v17,%v20 ++.*: e7 f1 40 00 36 e8 [ ]*vfcedb %v15,%v17,%v20 ++.*: e7 f1 40 10 36 e8 [ ]*vfcedbs %v15,%v17,%v20 ++.*: e7 f1 40 08 36 e8 [ ]*wfcedb %v15,%v17,%v20 ++.*: e7 f1 40 18 36 e8 [ ]*wfcedbs %v15,%v17,%v20 ++.*: e7 f1 40 bc d6 eb [ ]*vfch %v15,%v17,%v20,13,12,11 ++.*: e7 f1 40 00 36 eb [ ]*vfchdb %v15,%v17,%v20 ++.*: e7 f1 40 10 36 eb [ ]*vfchdbs %v15,%v17,%v20 ++.*: e7 f1 40 08 36 eb [ ]*wfchdb %v15,%v17,%v20 ++.*: e7 f1 40 18 36 eb [ ]*wfchdbs %v15,%v17,%v20 ++.*: e7 f1 40 bc d6 ea [ ]*vfche %v15,%v17,%v20,13,12,11 ++.*: e7 f1 40 00 36 ea [ ]*vfchedb %v15,%v17,%v20 ++.*: e7 f1 40 10 36 ea [ ]*vfchedbs %v15,%v17,%v20 ++.*: e7 f1 40 08 36 ea [ ]*wfchedb %v15,%v17,%v20 ++.*: e7 f1 40 18 36 ea [ ]*wfchedbs %v15,%v17,%v20 ++.*: e7 f1 00 bc d4 c3 [ ]*vcdg %v15,%v17,13,12,11 ++.*: e7 f1 00 cd 34 c3 [ ]*wcdgb %v15,%v17,5,12 ++.*: e7 f1 00 cd 34 c3 [ ]*wcdgb %v15,%v17,5,12 ++.*: e7 f1 00 bc d4 c1 [ ]*vcdlg %v15,%v17,13,12,11 ++.*: e7 f1 00 cd 34 c1 [ ]*wcdlgb %v15,%v17,5,12 ++.*: e7 f1 00 cd 34 c1 [ ]*wcdlgb %v15,%v17,5,12 ++.*: e7 f1 00 bc d4 c2 [ ]*vcgd %v15,%v17,13,12,11 ++.*: e7 f1 00 cd 34 c2 [ ]*wcgdb %v15,%v17,5,12 ++.*: e7 f1 00 cd 34 c2 [ ]*wcgdb %v15,%v17,5,12 ++.*: e7 f1 00 bc d4 c0 [ ]*vclgd %v15,%v17,13,12,11 ++.*: e7 f1 00 cd 34 c0 [ ]*wclgdb %v15,%v17,5,12 ++.*: e7 f1 00 cd 34 c0 [ ]*wclgdb %v15,%v17,5,12 ++.*: e7 f1 40 0c d6 e5 [ ]*vfd %v15,%v17,%v20,13,12 ++.*: e7 f1 40 00 36 e5 [ ]*vfddb %v15,%v17,%v20 ++.*: e7 f1 40 08 36 e5 [ ]*wfddb %v15,%v17,%v20 ++.*: e7 f1 00 bc d4 c7 [ ]*vfi %v15,%v17,13,12,11 ++.*: e7 f1 00 cd 34 c7 [ ]*wfidb %v15,%v17,5,12 ++.*: e7 f1 00 cd 34 c7 [ ]*wfidb %v15,%v17,5,12 ++.*: e7 f1 00 cd 04 c4 [ ]*vlde %v15,%v17,13,12 ++.*: e7 f1 00 00 24 c4 [ ]*vldeb %v15,%v17 ++.*: e7 f1 00 08 24 c4 [ ]*wldeb %v15,%v17 ++.*: e7 f1 00 bc d4 c5 [ ]*vled %v15,%v17,13,12,11 ++.*: e7 f1 00 cd 34 c5 [ ]*wledb %v15,%v17,5,12 ++.*: e7 f1 00 cd 34 c5 [ ]*wledb %v15,%v17,5,12 ++.*: e7 f1 40 0c d6 e7 [ ]*vfm %v15,%v17,%v20,13,12 ++.*: e7 f1 40 00 36 e7 [ ]*vfmdb %v15,%v17,%v20 ++.*: e7 f1 40 08 36 e7 [ ]*wfmdb %v15,%v17,%v20 ++.*: e7 f1 4c 0d 87 8f [ ]*vfma %v15,%v17,%v20,%v24,13,12 ++.*: e7 f1 43 00 87 8f [ ]*vfmadb %v15,%v17,%v20,%v24 ++.*: e7 f1 43 08 87 8f [ ]*wfmadb %v15,%v17,%v20,%v24 ++.*: e7 f1 4c 0d 87 8e [ ]*vfms %v15,%v17,%v20,%v24,13,12 ++.*: e7 f1 43 00 87 8e [ ]*vfmsdb %v15,%v17,%v20,%v24 ++.*: e7 f1 43 08 87 8e [ ]*wfmsdb %v15,%v17,%v20,%v24 ++.*: e7 f1 00 bc d4 cc [ ]*vfpso %v15,%v17,13,12,11 ++.*: e7 f1 00 d0 34 cc [ ]*vfpsodb %v15,%v17,13 ++.*: e7 f1 00 d8 34 cc [ ]*wfpsodb %v15,%v17,13 ++.*: e7 f1 00 00 34 cc [ ]*vflcdb %v15,%v17 ++.*: e7 f1 00 08 34 cc [ ]*wflcdb %v15,%v17 ++.*: e7 f1 00 10 34 cc [ ]*vflndb %v15,%v17 ++.*: e7 f1 00 18 34 cc [ ]*wflndb %v15,%v17 ++.*: e7 f1 00 20 34 cc [ ]*vflpdb %v15,%v17 ++.*: e7 f1 00 28 34 cc [ ]*wflpdb %v15,%v17 ++.*: e7 f1 00 cd 04 ce [ ]*vfsq %v15,%v17,13,12 ++.*: e7 f1 00 00 34 ce [ ]*vfsqdb %v15,%v17 ++.*: e7 f1 00 08 34 ce [ ]*wfsqdb %v15,%v17 ++.*: e7 f1 40 0c d6 e2 [ ]*vfs %v15,%v17,%v20,13,12 ++.*: e7 f1 40 00 36 e2 [ ]*vfsdb %v15,%v17,%v20 ++.*: e7 f1 40 08 36 e2 [ ]*wfsdb %v15,%v17,%v20 ++.*: e7 f1 ff db c4 4a [ ]*vftci %v15,%v17,4093,12,11 ++.*: e7 f1 ff d0 34 4a [ ]*vftcidb %v15,%v17,4093 ++.*: e7 f1 ff d8 34 4a [ ]*wftcidb %v15,%v17,4093 +diff --git a/gas/testsuite/gas/s390/zarch-z13.s b/gas/testsuite/gas/s390/zarch-z13.s +new file mode 100644 +index 0000000..812e3e8 +--- /dev/null ++++ b/gas/testsuite/gas/s390/zarch-z13.s +@@ -0,0 +1,542 @@ ++.text ++foo: ++ lcbb %r6,4000(%r9,%r11),13 ++ vgef %v15,4000(%r6,%r9),13 ++ vgeg %v15,4000(%r6,%r9),13 ++ vgbm %v15,65533 ++ vzero %v15 ++ vone %v15 ++ vgm %v15,253,252,11 ++ vgmb %v15,253,252 ++ vgmh %v15,253,252 ++ vgmf %v15,253,252 ++ vgmg %v15,253,252 ++ vl %v15,4000(%r6,%r9) ++ vlr %v15,%v17 ++ vlrep %v15,4000(%r6,%r9),13 ++ vlrepb %v15,4000(%r6,%r9) ++ vlreph %v15,4000(%r6,%r9) ++ vlrepf %v15,4000(%r6,%r9) ++ vlrepg %v15,4000(%r6,%r9) ++ vleb %v15,4000(%r6,%r9),13 ++ vleh %v15,4000(%r6,%r9),13 ++ vlef %v15,4000(%r6,%r9),13 ++ vleg %v15,4000(%r6,%r9),13 ++ vleib %v15,-32765,12 ++ vleih %v15,-32765,12 ++ vleif %v15,-32765,12 ++ vleig %v15,-32765,12 ++ vlgv %r6,%v15,4000(%r9),13 ++ vlgvb %r6,%v15,4000(%r9) ++ vlgvh %r6,%v15,4000(%r9) ++ vlgvf %r6,%v15,4000(%r9) ++ vlgvg %r6,%v15,4000(%r9) ++ vllez %v15,4000(%r6,%r9),13 ++ vllezb %v15,4000(%r6,%r9) ++ vllezh %v15,4000(%r6,%r9) ++ vllezf %v15,4000(%r6,%r9) ++ vllezg %v15,4000(%r6,%r9) ++ vlm %v15,%v17,4000(%r6) ++ vlbb %v15,4000(%r6,%r9),13 ++ vlvg %v15,%r6,4000(%r9),13 ++ vlvgb %v15,%r6,4000(%r9) ++ vlvgh %v15,%r6,4000(%r9) ++ vlvgf %v15,%r6,4000(%r9) ++ vlvgg %v15,%r6,4000(%r9) ++ vlvgp %v15,%r6,%r9 ++ vll %v15,%r6,4000(%r9) ++ vmrh %v15,%v17,%v20,13 ++ vmrhb %v15,%v17,%v20 ++ vmrhh %v15,%v17,%v20 ++ vmrhf %v15,%v17,%v20 ++ vmrhg %v15,%v17,%v20 ++ vmrl %v15,%v17,%v20,13 ++ vmrlb %v15,%v17,%v20 ++ vmrlh %v15,%v17,%v20 ++ vmrlf %v15,%v17,%v20 ++ vmrlg %v15,%v17,%v20 ++ vpk %v15,%v17,%v20,13 ++ vpkh %v15,%v17,%v20 ++ vpkf %v15,%v17,%v20 ++ vpkg %v15,%v17,%v20 ++ vpks %v15,%v17,%v20,13,12 ++ vpksh %v15,%v17,%v20 ++ vpksf %v15,%v17,%v20 ++ vpksg %v15,%v17,%v20 ++ vpkshs %v15,%v17,%v20 ++ vpksfs %v15,%v17,%v20 ++ vpksgs %v15,%v17,%v20 ++ vpkls %v15,%v17,%v20,13,12 ++ vpklsh %v15,%v17,%v20 ++ vpklsf %v15,%v17,%v20 ++ vpklsg %v15,%v17,%v20 ++ vpklshs %v15,%v17,%v20 ++ vpklsfs %v15,%v17,%v20 ++ vpklsgs %v15,%v17,%v20 ++ vperm %v15,%v17,%v20,%v24 ++ vpdi %v15,%v17,%v20,13 ++ vrep %v15,%v17,65533,12 ++ vrepb %v15,%v17,65533 ++ vreph %v15,%v17,65533 ++ vrepf %v15,%v17,65533 ++ vrepg %v15,%v17,65533 ++ vrepi %v15,-32765,12 ++ vrepib %v15,-32765 ++ vrepih %v15,-32765 ++ vrepif %v15,-32765 ++ vrepig %v15,-32765 ++ vscef %v15,4000(%r6,%r9),13 ++ vsceg %v15,4000(%r6,%r9),13 ++ vsel %v15,%v17,%v20,%v24 ++ vseg %v15,%v17,13 ++ vsegb %v15,%v17 ++ vsegh %v15,%v17 ++ vsegf %v15,%v17 ++ vst %v15,4000(%r6,%r9) ++ vsteb %v15,4000(%r6,%r9),13 ++ vsteh %v15,4000(%r6,%r9),13 ++ vstef %v15,4000(%r6,%r9),13 ++ vsteg %v15,4000(%r6,%r9),13 ++ vstm %v15,%v17,4000(%r6) ++ vstl %v15,%r6,4000(%r9) ++ vuph %v15,%v17,13 ++ vuphb %v15,%v17 ++ vuphh %v15,%v17 ++ vuphf %v15,%v17 ++ vuplh %v15,%v17,13 ++ vuplhb %v15,%v17 ++ vuplhh %v15,%v17 ++ vuplhf %v15,%v17 ++ vupl %v15,%v17,13 ++ vuplb %v15,%v17 ++ vuplhw %v15,%v17 ++ vuplf %v15,%v17 ++ vupll %v15,%v17,13 ++ vupllb %v15,%v17 ++ vupllh %v15,%v17 ++ vupllf %v15,%v17 ++ va %v15,%v17,%v20,13 ++ vab %v15,%v17,%v20 ++ vah %v15,%v17,%v20 ++ vaf %v15,%v17,%v20 ++ vag %v15,%v17,%v20 ++ vaq %v15,%v17,%v20 ++ vacc %v15,%v17,%v20,13 ++ vaccb %v15,%v17,%v20 ++ vacch %v15,%v17,%v20 ++ vaccf %v15,%v17,%v20 ++ vaccg %v15,%v17,%v20 ++ vaccq %v15,%v17,%v20 ++ vac %v15,%v17,%v20,%v24,13 ++ vacq %v15,%v17,%v20,%v24 ++ vaccc %v15,%v17,%v20,%v24,13 ++ vacccq %v15,%v17,%v20,%v24 ++ vn %v15,%v17,%v20 ++ vnc %v15,%v17,%v20 ++ vavg %v15,%v17,%v20,13 ++ vavgb %v15,%v17,%v20 ++ vavgh %v15,%v17,%v20 ++ vavgf %v15,%v17,%v20 ++ vavgg %v15,%v17,%v20 ++ vavgl %v15,%v17,%v20,13 ++ vavglb %v15,%v17,%v20 ++ vavglh %v15,%v17,%v20 ++ vavglf %v15,%v17,%v20 ++ vavglg %v15,%v17,%v20 ++ vcksm %v15,%v17,%v20 ++ vec %v15,%v17,13 ++ vecb %v15,%v17 ++ vech %v15,%v17 ++ vecf %v15,%v17 ++ vecg %v15,%v17 ++ vecl %v15,%v17,13 ++ veclb %v15,%v17 ++ veclh %v15,%v17 ++ veclf %v15,%v17 ++ veclg %v15,%v17 ++ vceq %v15,%v17,%v20,13,12 ++ vceqb %v15,%v17,%v20 ++ vceqh %v15,%v17,%v20 ++ vceqf %v15,%v17,%v20 ++ vceqg %v15,%v17,%v20 ++ vceqbs %v15,%v17,%v20 ++ vceqhs %v15,%v17,%v20 ++ vceqfs %v15,%v17,%v20 ++ vceqgs %v15,%v17,%v20 ++ vch %v15,%v17,%v20,13,12 ++ vchb %v15,%v17,%v20 ++ vchh %v15,%v17,%v20 ++ vchf %v15,%v17,%v20 ++ vchg %v15,%v17,%v20 ++ vchbs %v15,%v17,%v20 ++ vchhs %v15,%v17,%v20 ++ vchfs %v15,%v17,%v20 ++ vchgs %v15,%v17,%v20 ++ vchl %v15,%v17,%v20,13,12 ++ vchlb %v15,%v17,%v20 ++ vchlh %v15,%v17,%v20 ++ vchlf %v15,%v17,%v20 ++ vchlg %v15,%v17,%v20 ++ vchlbs %v15,%v17,%v20 ++ vchlhs %v15,%v17,%v20 ++ vchlfs %v15,%v17,%v20 ++ vchlgs %v15,%v17,%v20 ++ vclz %v15,%v17,13 ++ vclzb %v15,%v17 ++ vclzh %v15,%v17 ++ vclzf %v15,%v17 ++ vclzg %v15,%v17 ++ vctz %v15,%v17,13 ++ vctzb %v15,%v17 ++ vctzh %v15,%v17 ++ vctzf %v15,%v17 ++ vctzg %v15,%v17 ++ vx %v15,%v17,%v20 ++ vgfm %v15,%v17,%v20,13 ++ vgfmb %v15,%v17,%v20 ++ vgfmh %v15,%v17,%v20 ++ vgfmf %v15,%v17,%v20 ++ vgfmg %v15,%v17,%v20 ++ vgfma %v15,%v17,%v20,%v24,13 ++ vgfmab %v15,%v17,%v20,%v24 ++ vgfmah %v15,%v17,%v20,%v24 ++ vgfmaf %v15,%v17,%v20,%v24 ++ vgfmag %v15,%v17,%v20,%v24 ++ vlc %v15,%v17,13 ++ vlcb %v15,%v17 ++ vlch %v15,%v17 ++ vlcf %v15,%v17 ++ vlcg %v15,%v17 ++ vlp %v15,%v17,13 ++ vlpb %v15,%v17 ++ vlph %v15,%v17 ++ vlpf %v15,%v17 ++ vlpg %v15,%v17 ++ vmx %v15,%v17,%v20,13 ++ vmxb %v15,%v17,%v20 ++ vmxh %v15,%v17,%v20 ++ vmxf %v15,%v17,%v20 ++ vmxg %v15,%v17,%v20 ++ vmxl %v15,%v17,%v20,13 ++ vmxlb %v15,%v17,%v20 ++ vmxlh %v15,%v17,%v20 ++ vmxlf %v15,%v17,%v20 ++ vmxlg %v15,%v17,%v20 ++ vmn %v15,%v17,%v20,13 ++ vmnb %v15,%v17,%v20 ++ vmnh %v15,%v17,%v20 ++ vmnf %v15,%v17,%v20 ++ vmng %v15,%v17,%v20 ++ vmnl %v15,%v17,%v20,13 ++ vmnlb %v15,%v17,%v20 ++ vmnlh %v15,%v17,%v20 ++ vmnlf %v15,%v17,%v20 ++ vmnlg %v15,%v17,%v20 ++ vmal %v15,%v17,%v20,%v24,13 ++ vmalb %v15,%v17,%v20,%v24 ++ vmalhw %v15,%v17,%v20,%v24 ++ vmalf %v15,%v17,%v20,%v24 ++ vmah %v15,%v17,%v20,%v24,13 ++ vmahb %v15,%v17,%v20,%v24 ++ vmahh %v15,%v17,%v20,%v24 ++ vmahf %v15,%v17,%v20,%v24 ++ vmalh %v15,%v17,%v20,%v24,13 ++ vmalhb %v15,%v17,%v20,%v24 ++ vmalhh %v15,%v17,%v20,%v24 ++ vmalhf %v15,%v17,%v20,%v24 ++ vmae %v15,%v17,%v20,%v24,13 ++ vmaeb %v15,%v17,%v20,%v24 ++ vmaeh %v15,%v17,%v20,%v24 ++ vmaef %v15,%v17,%v20,%v24 ++ vmale %v15,%v17,%v20,%v24,13 ++ vmaleb %v15,%v17,%v20,%v24 ++ vmaleh %v15,%v17,%v20,%v24 ++ vmalef %v15,%v17,%v20,%v24 ++ vmao %v15,%v17,%v20,%v24,13 ++ vmaob %v15,%v17,%v20,%v24 ++ vmaoh %v15,%v17,%v20,%v24 ++ vmaof %v15,%v17,%v20,%v24 ++ vmalo %v15,%v17,%v20,%v24,13 ++ vmalob %v15,%v17,%v20,%v24 ++ vmaloh %v15,%v17,%v20,%v24 ++ vmalof %v15,%v17,%v20,%v24 ++ vmh %v15,%v17,%v20,13 ++ vmhb %v15,%v17,%v20 ++ vmhh %v15,%v17,%v20 ++ vmhf %v15,%v17,%v20 ++ vmlh %v15,%v17,%v20,13 ++ vmlhb %v15,%v17,%v20 ++ vmlhh %v15,%v17,%v20 ++ vmlhf %v15,%v17,%v20 ++ vml %v15,%v17,%v20,13 ++ vmlb %v15,%v17,%v20 ++ vmlhw %v15,%v17,%v20 ++ vmlf %v15,%v17,%v20 ++ vme %v15,%v17,%v20,13 ++ vmeb %v15,%v17,%v20 ++ vmeh %v15,%v17,%v20 ++ vmef %v15,%v17,%v20 ++ vmle %v15,%v17,%v20,13 ++ vmleb %v15,%v17,%v20 ++ vmleh %v15,%v17,%v20 ++ vmlef %v15,%v17,%v20 ++ vmo %v15,%v17,%v20,13 ++ vmob %v15,%v17,%v20 ++ vmoh %v15,%v17,%v20 ++ vmof %v15,%v17,%v20 ++ vmlo %v15,%v17,%v20,13 ++ vmlob %v15,%v17,%v20 ++ vmloh %v15,%v17,%v20 ++ vmlof %v15,%v17,%v20 ++ vno %v15,%v17,%v20 ++ vnot %v15,%v17 ++ vo %v15,%v17,%v20 ++ vpopct %v15,%v17,13 ++ verllv %v15,%v17,%v20,13 ++ verllvb %v15,%v17,%v20 ++ verllvh %v15,%v17,%v20 ++ verllvf %v15,%v17,%v20 ++ verllvg %v15,%v17,%v20 ++ verll %v15,%v17,4000(%r6),13 ++ verllb %v15,%v17,4000(%r6) ++ verllh %v15,%v17,4000(%r6) ++ verllf %v15,%v17,4000(%r6) ++ verllg %v15,%v17,4000(%r6) ++ verim %v15,%v17,%v20,253,12 ++ verimb %v15,%v17,%v20,253 ++ verimh %v15,%v17,%v20,253 ++ verimf %v15,%v17,%v20,253 ++ verimg %v15,%v17,%v20,253 ++ veslv %v15,%v17,%v20,13 ++ veslvb %v15,%v17,%v20 ++ veslvh %v15,%v17,%v20 ++ veslvf %v15,%v17,%v20 ++ veslvg %v15,%v17,%v20 ++ vesl %v15,%v17,4000(%r6),13 ++ veslb %v15,%v17,4000(%r6) ++ veslh %v15,%v17,4000(%r6) ++ veslf %v15,%v17,4000(%r6) ++ veslg %v15,%v17,4000(%r6) ++ vesrav %v15,%v17,%v20,13 ++ vesravb %v15,%v17,%v20 ++ vesravh %v15,%v17,%v20 ++ vesravf %v15,%v17,%v20 ++ vesravg %v15,%v17,%v20 ++ vesra %v15,%v17,4000(%r6),13 ++ vesrab %v15,%v17,4000(%r6) ++ vesrah %v15,%v17,4000(%r6) ++ vesraf %v15,%v17,4000(%r6) ++ vesrag %v15,%v17,4000(%r6) ++ vesrlv %v15,%v17,%v20,13 ++ vesrlvb %v15,%v17,%v20 ++ vesrlvh %v15,%v17,%v20 ++ vesrlvf %v15,%v17,%v20 ++ vesrlvg %v15,%v17,%v20 ++ vesrl %v15,%v17,4000(%r6),13 ++ vesrlb %v15,%v17,4000(%r6) ++ vesrlh %v15,%v17,4000(%r6) ++ vesrlf %v15,%v17,4000(%r6) ++ vesrlg %v15,%v17,4000(%r6) ++ vsl %v15,%v17,%v20 ++ vslb %v15,%v17,%v20 ++ vsldb %v15,%v17,%v20,253 ++ vsra %v15,%v17,%v20 ++ vsrab %v15,%v17,%v20 ++ vsrl %v15,%v17,%v20 ++ vsrlb %v15,%v17,%v20 ++ vs %v15,%v17,%v20,13 ++ vsb %v15,%v17,%v20 ++ vsh %v15,%v17,%v20 ++ vsf %v15,%v17,%v20 ++ vsg %v15,%v17,%v20 ++ vsq %v15,%v17,%v20 ++ vscbi %v15,%v17,%v20,13 ++ vscbib %v15,%v17,%v20 ++ vscbih %v15,%v17,%v20 ++ vscbif %v15,%v17,%v20 ++ vscbig %v15,%v17,%v20 ++ vscbiq %v15,%v17,%v20 ++ vsbi %v15,%v17,%v20,%v24,13 ++ vsbiq %v15,%v17,%v20,%v24 ++ vsbcbi %v15,%v17,%v20,%v24,13 ++ vsbcbiq %v15,%v17,%v20,%v24 ++ vsumg %v15,%v17,%v20,13 ++ vsumgh %v15,%v17,%v20 ++ vsumgf %v15,%v17,%v20 ++ vsumq %v15,%v17,%v20,13 ++ vsumqf %v15,%v17,%v20 ++ vsumqg %v15,%v17,%v20 ++ vsum %v15,%v17,%v20,13 ++ vsumb %v15,%v17,%v20 ++ vsumh %v15,%v17,%v20 ++ vtm %v15,%v17 ++ vfae %v15,%v17,%v20,13 ++ vfae %v15,%v17,%v20,13,12 ++ vfaeb %v15,%v17,%v20 ++ vfaeb %v15,%v17,%v20,13 ++ vfaeh %v15,%v17,%v20 ++ vfaeh %v15,%v17,%v20,13 ++ vfaef %v15,%v17,%v20 ++ vfaef %v15,%v17,%v20,13 ++ vfaebs %v15,%v17,%v20 ++ vfaebs %v15,%v17,%v20,13 ++ vfaehs %v15,%v17,%v20 ++ vfaehs %v15,%v17,%v20,13 ++ vfaefs %v15,%v17,%v20 ++ vfaefs %v15,%v17,%v20,13 ++ vfaezb %v15,%v17,%v20 ++ vfaezb %v15,%v17,%v20,13 ++ vfaezh %v15,%v17,%v20 ++ vfaezh %v15,%v17,%v20,13 ++ vfaezf %v15,%v17,%v20 ++ vfaezf %v15,%v17,%v20,13 ++ vfaezbs %v15,%v17,%v20 ++ vfaezbs %v15,%v17,%v20,13 ++ vfaezhs %v15,%v17,%v20 ++ vfaezhs %v15,%v17,%v20,13 ++ vfaezfs %v15,%v17,%v20 ++ vfaezfs %v15,%v17,%v20,13 ++ vfee %v15,%v17,%v20,13 ++ vfee %v15,%v17,%v20,13,12 ++ vfeeb %v15,%v17,%v20 ++ vfeeb %v15,%v17,%v20,13 ++ vfeeh %v15,%v17,%v20 ++ vfeeh %v15,%v17,%v20,13 ++ vfeef %v15,%v17,%v20 ++ vfeef %v15,%v17,%v20,13 ++ vfeebs %v15,%v17,%v20 ++ vfeehs %v15,%v17,%v20 ++ vfeefs %v15,%v17,%v20 ++ vfeezb %v15,%v17,%v20 ++ vfeezh %v15,%v17,%v20 ++ vfeezf %v15,%v17,%v20 ++ vfeezbs %v15,%v17,%v20 ++ vfeezhs %v15,%v17,%v20 ++ vfeezfs %v15,%v17,%v20 ++ vfene %v15,%v17,%v20,13 ++ vfene %v15,%v17,%v20,13,12 ++ vfeneb %v15,%v17,%v20 ++ vfeneb %v15,%v17,%v20,13 ++ vfeneh %v15,%v17,%v20 ++ vfeneh %v15,%v17,%v20,13 ++ vfenef %v15,%v17,%v20 ++ vfenef %v15,%v17,%v20,13 ++ vfenebs %v15,%v17,%v20 ++ vfenehs %v15,%v17,%v20 ++ vfenefs %v15,%v17,%v20 ++ vfenezb %v15,%v17,%v20 ++ vfenezh %v15,%v17,%v20 ++ vfenezf %v15,%v17,%v20 ++ vfenezbs %v15,%v17,%v20 ++ vfenezhs %v15,%v17,%v20 ++ vfenezfs %v15,%v17,%v20 ++ vistr %v15,%v17,13 ++ vistr %v15,%v17,13,12 ++ vistrb %v15,%v17 ++ vistrb %v15,%v17,13 ++ vistrh %v15,%v17 ++ vistrh %v15,%v17,13 ++ vistrf %v15,%v17 ++ vistrf %v15,%v17,13 ++ vistrbs %v15,%v17 ++ vistrhs %v15,%v17 ++ vistrfs %v15,%v17 ++ vstrc %v15,%v17,%v20,%v24,13 ++ vstrc %v15,%v17,%v20,%v24,13,12 ++ vstrcb %v15,%v17,%v20,%v24 ++ vstrcb %v15,%v17,%v20,%v24,13 ++ vstrch %v15,%v17,%v20,%v24 ++ vstrch %v15,%v17,%v20,%v24,13 ++ vstrcf %v15,%v17,%v20,%v24 ++ vstrcf %v15,%v17,%v20,%v24,13 ++ vstrcbs %v15,%v17,%v20,%v24 ++ vstrcbs %v15,%v17,%v20,%v24,13 ++ vstrchs %v15,%v17,%v20,%v24 ++ vstrchs %v15,%v17,%v20,%v24,13 ++ vstrcfs %v15,%v17,%v20,%v24 ++ vstrcfs %v15,%v17,%v20,%v24,13 ++ vstrczb %v15,%v17,%v20,%v24 ++ vstrczb %v15,%v17,%v20,%v24,13 ++ vstrczh %v15,%v17,%v20,%v24 ++ vstrczh %v15,%v17,%v20,%v24,13 ++ vstrczf %v15,%v17,%v20,%v24 ++ vstrczf %v15,%v17,%v20,%v24,13 ++ vstrczbs %v15,%v17,%v20,%v24 ++ vstrczbs %v15,%v17,%v20,%v24,13 ++ vstrczhs %v15,%v17,%v20,%v24 ++ vstrczhs %v15,%v17,%v20,%v24,13 ++ vstrczfs %v15,%v17,%v20,%v24 ++ vstrczfs %v15,%v17,%v20,%v24,13 ++ vfa %v15,%v17,%v20,13,12 ++ vfadb %v15,%v17,%v20 ++ wfadb %v15,%v17,%v20 ++ wfc %v15,%v17,13,12 ++ wfcdb %v15,%v17 ++ wfk %v15,%v17,13,12 ++ wfkdb %v15,%v17 ++ vfce %v15,%v17,%v20 ++ vfcedb %v15,%v17,%v20 ++ vfcedbs %v15,%v17,%v20 ++ wfcedb %v15,%v17,%v20 ++ wfcedbs %v15,%v17,%v20 ++ vfch %v15,%v17,%v20,13,12,11 ++ vfchdb %v15,%v17,%v20 ++ vfchdbs %v15,%v17,%v20 ++ wfchdb %v15,%v17,%v20 ++ wfchdbs %v15,%v17,%v20 ++ vfche %v15,%v17,%v20,13,12,11 ++ vfchedb %v15,%v17,%v20 ++ vfchedbs %v15,%v17,%v20 ++ wfchedb %v15,%v17,%v20 ++ wfchedbs %v15,%v17,%v20 ++ vcdg %v15,%v17,13,12,11 ++ vcdgb %v15,%v17,13,12 ++ wcdgb %v15,%v17,13,12 ++ vcdlg %v15,%v17,13,12,11 ++ vcdlgb %v15,%v17,13,12 ++ wcdlgb %v15,%v17,13,12 ++ vcgd %v15,%v17,13,12,11 ++ vcgdb %v15,%v17,13,12 ++ wcgdb %v15,%v17,13,12 ++ vclgd %v15,%v17,13,12,11 ++ vclgdb %v15,%v17,13,12 ++ wclgdb %v15,%v17,13,12 ++ vfd %v15,%v17,%v20,13,12 ++ vfddb %v15,%v17,%v20 ++ wfddb %v15,%v17,%v20 ++ vfi %v15,%v17,13,12,11 ++ vfidb %v15,%v17,13,12 ++ wfidb %v15,%v17,13,12 ++ vlde %v15,%v17,13,12 ++ vldeb %v15,%v17 ++ wldeb %v15,%v17 ++ vled %v15,%v17,13,12,11 ++ vledb %v15,%v17,13,12 ++ wledb %v15,%v17,13,12 ++ vfm %v15,%v17,%v20,13,12 ++ vfmdb %v15,%v17,%v20 ++ wfmdb %v15,%v17,%v20 ++ vfma %v15,%v17,%v20,%v24,13,12 ++ vfmadb %v15,%v17,%v20,%v24 ++ wfmadb %v15,%v17,%v20,%v24 ++ vfms %v15,%v17,%v20,%v24,13,12 ++ vfmsdb %v15,%v17,%v20,%v24 ++ wfmsdb %v15,%v17,%v20,%v24 ++ vfpso %v15,%v17,13,12,11 ++ vfpsodb %v15,%v17,13 ++ wfpsodb %v15,%v17,13 ++ vflcdb %v15,%v17 ++ wflcdb %v15,%v17 ++ vflndb %v15,%v17 ++ wflndb %v15,%v17 ++ vflpdb %v15,%v17 ++ wflpdb %v15,%v17 ++ vfsq %v15,%v17,13,12 ++ vfsqdb %v15,%v17 ++ wfsqdb %v15,%v17 ++ vfs %v15,%v17,%v20,13,12 ++ vfsdb %v15,%v17,%v20 ++ wfsdb %v15,%v17,%v20 ++ vftci %v15,%v17,4093,12,11 ++ vftcidb %v15,%v17,4093 ++ wftcidb %v15,%v17,4093 +diff --git a/gas/testsuite/gas/s390/zarch-z9-109.d b/gas/testsuite/gas/s390/zarch-z9-109.d +index 3715b42..5a9717c 100644 +--- a/gas/testsuite/gas/s390/zarch-z9-109.d ++++ b/gas/testsuite/gas/s390/zarch-z9-109.d +@@ -45,12 +45,17 @@ Disassembly of section .text: + .*: c8 60 5f ff af ff [ ]*mvcos 4095\(%r5\),4095\(%r10\),%r6 + .*: b9 aa 9f 65 [ ]*lptea %r6,%r9,%r5,15 + .*: b2 2b f0 69 [ ]*sske %r6,%r9,15 ++.*: b2 2b 00 69 [ ]*sske %r6,%r9 + .*: b9 b1 f0 68 [ ]*cu24 %r6,%r8,15 ++.*: b9 b1 00 68 [ ]*cu24 %r6,%r8 + .*: b2 a6 f0 68 [ ]*cu21 %r6,%r8,15 ++.*: b2 a6 00 68 [ ]*cuutf %r6,%r8 + .*: b9 b3 00 68 [ ]*cu42 %r6,%r8 + .*: b9 b2 00 68 [ ]*cu41 %r6,%r8 + .*: b2 a7 f0 68 [ ]*cu12 %r6,%r8,15 ++.*: b2 a7 00 68 [ ]*cutfu %r6,%r8 + .*: b9 b0 f0 68 [ ]*cu14 %r6,%r8,15 ++.*: b9 b0 00 68 [ ]*cu14 %r6,%r8 + .*: b3 3b 60 95 [ ]*myr %f6,%f9,%f5 + .*: b3 3d 60 95 [ ]*myhr %f6,%f9,%f5 + .*: b3 39 60 95 [ ]*mylr %f6,%f9,%f5 +diff --git a/gas/testsuite/gas/s390/zarch-z9-109.s b/gas/testsuite/gas/s390/zarch-z9-109.s +index 9a70d90..10d77ac 100644 +--- a/gas/testsuite/gas/s390/zarch-z9-109.s ++++ b/gas/testsuite/gas/s390/zarch-z9-109.s +@@ -39,12 +39,17 @@ foo: + mvcos 4095(%r5),4095(%r10),%r6 + lptea %r6,%r9,%r5,15 + sske %r6,%r9,15 ++ sske %r6,%r9 + cu24 %r6,%r8,15 ++ cu24 %r6,%r8 + cu21 %r6,%r8,15 ++ cu21 %r6,%r8 + cu42 %r6,%r8 + cu41 %r6,%r8 + cu12 %r6,%r8,15 ++ cu12 %r6,%r8 + cu14 %r6,%r8,15 ++ cu14 %r6,%r8 + myr %f6,%f9,%f5 + myhr %f6,%f9,%f5 + mylr %f6,%f9,%f5 +diff --git a/gas/testsuite/gas/s390/zarch-zEC12.d b/gas/testsuite/gas/s390/zarch-zEC12.d +index 5a6d5f1..2989dda 100644 +--- a/gas/testsuite/gas/s390/zarch-zEC12.d ++++ b/gas/testsuite/gas/s390/zarch-zEC12.d +@@ -52,7 +52,7 @@ Disassembly of section .text: + .*: ed 0f 8f a0 6d a8 [ ]*czdt %f6,4000\(16,%r8\),13 + .*: ed 21 8f a0 4d a9 [ ]*czxt %f4,4000\(34,%r8\),13 + .*: b2 e8 c0 56 [ ]*ppa %r5,%r6,12 +-.*: b9 8f 60 59 [ ]*crdte %r5,%r6,%r9,0 ++.*: b9 8f 60 59 [ ]*crdte %r5,%r6,%r9 + .*: b9 8f 61 59 [ ]*crdte %r5,%r6,%r9,1 + .*: c5 a0 06 00 00 06 [ ]*bprp 10,11e ,11e + .*: c5 a0 00 00 00 00 [ ]*bprp 10,118 ,118 +diff --git a/include/opcode/s390.h b/include/opcode/s390.h +index 0884eb6..12b740a 100644 +--- a/include/opcode/s390.h ++++ b/include/opcode/s390.h +@@ -41,9 +41,13 @@ enum s390_opcode_cpu_val + S390_OPCODE_Z10, + S390_OPCODE_Z196, + S390_OPCODE_ZEC12, ++ S390_OPCODE_Z13, + S390_OPCODE_MAXCPU + }; + ++/* Instruction specific flags. */ ++#define S390_INSTR_FLAG_OPTPARM 0x1 ++ + /* The opcode table is an array of struct s390_opcode. */ + + struct s390_opcode +@@ -74,6 +78,9 @@ struct s390_opcode + + /* First cpu this opcode is available for. */ + enum s390_opcode_cpu_val min_cpu; ++ ++ /* Instruction specific flags. */ ++ unsigned int flags; + }; + + /* The table itself is sorted by major opcode number, and is otherwise +@@ -86,7 +93,7 @@ extern const int s390_num_opcodes; + extern const struct s390_opcode s390_opformats[]; + extern const int s390_num_opformats; + +-/* Values defined for the flags field of a struct powerpc_opcode. */ ++/* Values defined for the flags field of a struct s390_opcode. */ + + /* The operands table is an array of struct s390_operand. */ + +@@ -103,7 +110,7 @@ struct s390_operand + }; + + /* Elements in the table are retrieved by indexing with values from +- the operands field of the powerpc_opcodes table. */ ++ the operands field of the s390_opcodes table. */ + + extern const struct s390_operand s390_operands[]; + +@@ -151,4 +158,14 @@ extern const struct s390_operand s390_operands[]; + /* The operand needs to be a valid GP or FP register pair. */ + #define S390_OPERAND_REG_PAIR 0x800 + +- #endif /* S390_H */ ++/* This operand names a vector register. The disassembler uses this ++ to print register names with a leading 'v'. */ ++#define S390_OPERAND_VR 0x1000 ++ ++#define S390_OPERAND_CP16 0x2000 ++ ++#define S390_OPERAND_OR1 0x4000 ++#define S390_OPERAND_OR2 0x8000 ++#define S390_OPERAND_OR8 0x10000 ++ ++#endif /* S390_H */ +diff --git a/ld/testsuite/ld-s390/tlsbin.dd b/ld/testsuite/ld-s390/tlsbin.dd +index 0e824da..c1dbd07 100644 +--- a/ld/testsuite/ld-s390/tlsbin.dd ++++ b/ld/testsuite/ld-s390/tlsbin.dd +@@ -109,17 +109,17 @@ Disassembly of section .text: + # IE -> LE against global var defined in exec + +[0-9a-f]+: 58 30 d0 38 l %r3,56\(%r13\) + +[0-9a-f]+: 18 43 lr %r4,%r3 +- +[0-9a-f]+: 07 00 nopr %r0 ++ +[0-9a-f]+: 07 00 nopr + +[0-9a-f]+: 41 54 90 00 la %r5,0\(%r4,%r9\) + # IE -> LE against local var + +[0-9a-f]+: 58 30 d0 3c l %r3,60\(%r13\) + +[0-9a-f]+: 18 43 lr %r4,%r3 +- +[0-9a-f]+: 07 00 nopr %r0 ++ +[0-9a-f]+: 07 00 nopr + +[0-9a-f]+: 41 54 90 00 la %r5,0\(%r4,%r9\) + # IE -> LE against hidden var + +[0-9a-f]+: 58 30 d0 40 l %r3,64\(%r13\) + +[0-9a-f]+: 18 43 lr %r4,%r3 +- +[0-9a-f]+: 07 00 nopr %r0 ++ +[0-9a-f]+: 07 00 nopr + +[0-9a-f]+: 41 54 90 00 la %r5,0\(%r4,%r9\) + # IE against global var with small got access (no optimization) + +[0-9a-f]+: 58 30 c0 14 l %r3,20\(%r12\) +@@ -173,17 +173,17 @@ Disassembly of section .text: + # IE -> LE against global var defined in exec + +[0-9a-f]+: 58 30 d0 04 l %r3,4\(%r13\) + +[0-9a-f]+: 18 43 lr %r4,%r3 +- +[0-9a-f]+: 07 00 nopr %r0 ++ +[0-9a-f]+: 07 00 nopr + +[0-9a-f]+: 41 54 90 00 la %r5,0\(%r4,%r9\) + # IE -> LE against local var + +[0-9a-f]+: 58 30 d0 08 l %r3,8\(%r13\) + +[0-9a-f]+: 18 43 lr %r4,%r3 +- +[0-9a-f]+: 07 00 nopr %r0 ++ +[0-9a-f]+: 07 00 nopr + +[0-9a-f]+: 41 54 90 00 la %r5,0\(%r4,%r9\) + # IE -> LE against hidden but not local var + +[0-9a-f]+: 58 30 d0 0c l %r3,12\(%r13\) + +[0-9a-f]+: 18 43 lr %r4,%r3 +- +[0-9a-f]+: 07 00 nopr %r0 ++ +[0-9a-f]+: 07 00 nopr + +[0-9a-f]+: 41 54 90 00 la %r5,0\(%r4,%r9\) + # LE, global var defined in exec + +[0-9a-f]+: 58 40 d0 10 l %r4,16\(%r13\) +diff --git a/opcodes/s390-dis.c b/opcodes/s390-dis.c +index 282565a..74a7216 100644 +--- a/opcodes/s390-dis.c ++++ b/opcodes/s390-dis.c +@@ -107,6 +107,7 @@ s390_extract_operand (const bfd_byte *insn, + union operand_value ret; + unsigned int val; + int bits; ++ const bfd_byte *orig_insn = insn; + + /* Extract fragments of the operand byte for byte. */ + insn += operand->shift / 8; +@@ -140,6 +141,16 @@ s390_extract_operand (const bfd_byte *insn, + else if (operand->flags & S390_OPERAND_LENGTH) + /* Length x in an instruction has real length x + 1. */ + ret.u = val + 1; ++ ++ else if (operand->flags & S390_OPERAND_VR) ++ { ++ /* Extract the extra bits for a vector register operand stored ++ in the RXB field. */ ++ unsigned vr = operand->shift == 32 ? 3 ++ : (unsigned) operand->shift / 4 - 2; ++ ++ ret.u = val | ((orig_insn[4] & (1 << (3 - vr))) << (vr + 1)); ++ } + else + ret.u = val; + +@@ -178,22 +189,45 @@ s390_print_insn_with_opcode (bfd_vma memaddr, + continue; + } + +- info->fprintf_func (info->stream, "%c", separator); ++ /* For instructions with a last optional operand don't print it ++ if zero. */ ++ if ((opcode->flags & S390_INSTR_FLAG_OPTPARM) ++ && val.u == 0 ++ && opindex[1] == 0) ++ break; + + if (flags & S390_OPERAND_GPR) +- info->fprintf_func (info->stream, "%%r%u", val.u); ++ info->fprintf_func (info->stream, "%c%%r%u", separator, val.u); + else if (flags & S390_OPERAND_FPR) +- info->fprintf_func (info->stream, "%%f%u", val.u); ++ info->fprintf_func (info->stream, "%c%%f%u", separator, val.u); ++ else if (flags & S390_OPERAND_VR) ++ info->fprintf_func (info->stream, "%c%%v%i", separator, val.u); + else if (flags & S390_OPERAND_AR) +- info->fprintf_func (info->stream, "%%a%u", val.u); ++ info->fprintf_func (info->stream, "%c%%a%u", separator, val.u); + else if (flags & S390_OPERAND_CR) +- info->fprintf_func (info->stream, "%%c%u", val.u); ++ info->fprintf_func (info->stream, "%c%%c%u", separator, val.u); + else if (flags & S390_OPERAND_PCREL) +- info->print_address_func (memaddr + val.i + val.i, info); ++ { ++ info->fprintf_func (info->stream, "%c", separator); ++ info->print_address_func (memaddr + val.i + val.i, info); ++ } + else if (flags & S390_OPERAND_SIGNED) +- info->fprintf_func (info->stream, "%i", val.i); ++ info->fprintf_func (info->stream, "%c%i", separator, val.i); + else +- info->fprintf_func (info->stream, "%u", val.u); ++ { ++ if (flags & S390_OPERAND_OR1) ++ val.u &= ~1; ++ if (flags & S390_OPERAND_OR2) ++ val.u &= ~2; ++ if (flags & S390_OPERAND_OR8) ++ val.u &= ~8; ++ ++ if ((opcode->flags & S390_INSTR_FLAG_OPTPARM) ++ && val.u == 0 ++ && opindex[1] == 0) ++ break; ++ info->fprintf_func (info->stream, "%c%u", separator, val.u); ++ } + + if (flags & S390_OPERAND_DISP) + separator = '('; +diff --git a/opcodes/s390-mkopc.c b/opcodes/s390-mkopc.c +index bf30f5b..1fb2d24 100644 +--- a/opcodes/s390-mkopc.c ++++ b/opcodes/s390-mkopc.c +@@ -22,26 +22,7 @@ + #include + #include + #include +- +-/* Taken from opcodes/s390.h */ +-enum s390_opcode_mode_val +- { +- S390_OPCODE_ESA = 0, +- S390_OPCODE_ZARCH +- }; +- +-enum s390_opcode_cpu_val +- { +- S390_OPCODE_G5 = 0, +- S390_OPCODE_G6, +- S390_OPCODE_Z900, +- S390_OPCODE_Z990, +- S390_OPCODE_Z9_109, +- S390_OPCODE_Z9_EC, +- S390_OPCODE_Z10, +- S390_OPCODE_Z196, +- S390_OPCODE_ZEC12 +- }; ++#include "opcode/s390.h" + + struct op_struct + { +@@ -50,6 +31,7 @@ struct op_struct + char format[16]; + int mode_bits; + int min_cpu; ++ int flags; + + unsigned long long sort_value; + int no_nibbles; +@@ -71,7 +53,7 @@ createTable (void) + + static void + insertOpcode (char *opcode, char *mnemonic, char *format, +- int min_cpu, int mode_bits) ++ int min_cpu, int mode_bits, int flags) + { + char *str; + unsigned long long sort_value; +@@ -115,6 +97,7 @@ insertOpcode (char *opcode, char *mnemonic, char *format, + op_array[ix].no_nibbles = no_nibbles; + op_array[ix].min_cpu = min_cpu; + op_array[ix].mode_bits = mode_bits; ++ op_array[ix].flags = flags; + no_ops++; + } + +@@ -176,7 +159,7 @@ const struct s390_cond_ext_format s390_crb_extensions[NUM_CRB_EXTENSIONS] = + + static void + insertExpandedMnemonic (char *opcode, char *mnemonic, char *format, +- int min_cpu, int mode_bits) ++ int min_cpu, int mode_bits, int flags) + { + char *tag; + char prefix[15]; +@@ -189,7 +172,7 @@ insertExpandedMnemonic (char *opcode, char *mnemonic, char *format, + + if (!(tag = strpbrk (mnemonic, "*$"))) + { +- insertOpcode (opcode, mnemonic, format, min_cpu, mode_bits); ++ insertOpcode (opcode, mnemonic, format, min_cpu, mode_bits, flags); + return; + } + +@@ -268,7 +251,7 @@ insertExpandedMnemonic (char *opcode, char *mnemonic, char *format, + opcode[mask_start] = ext_table[i].nibble; + strcat (new_mnemonic, ext_table[i].extension); + strcat (new_mnemonic, suffix); +- insertOpcode (opcode, new_mnemonic, format, min_cpu, mode_bits); ++ insertOpcode (opcode, new_mnemonic, format, min_cpu, mode_bits, flags); + } + return; + +@@ -286,7 +269,10 @@ static const char file_header[] = + " which bits in the actual opcode must match OPCODE.\n" + " OPERANDS is the list of operands.\n\n" + " The disassembler reads the table in order and prints the first\n" +- " instruction which matches. */\n\n" ++ " instruction which matches.\n" ++ " MODE_BITS - zarch or esa\n" ++ " MIN_CPU - number of the min cpu level required\n" ++ " FLAGS - instruction flags. */\n\n" + "const struct s390_opcode s390_opcodes[] =\n {\n"; + + /* `dumpTable': write opcode table. */ +@@ -311,7 +297,8 @@ dumpTable (void) + printf ("MASK_%s, INSTR_%s, ", + op_array[ix].format, op_array[ix].format); + printf ("%i, ", op_array[ix].mode_bits); +- printf ("%i}", op_array[ix].min_cpu); ++ printf ("%i, ", op_array[ix].min_cpu); ++ printf ("%i}", op_array[ix].flags); + if (ix < no_ops-1) + printf (",\n"); + else +@@ -339,67 +326,91 @@ main (void) + char description[80]; + char cpu_string[16]; + char modes_string[16]; ++ char flags_string[80]; + int min_cpu; + int mode_bits; ++ int flag_bits; ++ int num_matched; + char *str; + + if (currentLine[0] == '#' || currentLine[0] == '\n') + continue; + memset (opcode, 0, 8); +- if (sscanf (currentLine, "%15s %15s %15s \"%79[^\"]\" %15s %15s", +- opcode, mnemonic, format, description, +- cpu_string, modes_string) == 6) ++ num_matched = ++ sscanf (currentLine, "%15s %15s %15s \"%79[^\"]\" %15s %15s %79[^\n]", ++ opcode, mnemonic, format, description, ++ cpu_string, modes_string, flags_string); ++ if (num_matched != 6 && num_matched != 7) + { +- if (strcmp (cpu_string, "g5") == 0) +- min_cpu = S390_OPCODE_G5; +- else if (strcmp (cpu_string, "g6") == 0) +- min_cpu = S390_OPCODE_G6; +- else if (strcmp (cpu_string, "z900") == 0) +- min_cpu = S390_OPCODE_Z900; +- else if (strcmp (cpu_string, "z990") == 0) +- min_cpu = S390_OPCODE_Z990; +- else if (strcmp (cpu_string, "z9-109") == 0) +- min_cpu = S390_OPCODE_Z9_109; +- else if (strcmp (cpu_string, "z9-ec") == 0) +- min_cpu = S390_OPCODE_Z9_EC; +- else if (strcmp (cpu_string, "z10") == 0) +- min_cpu = S390_OPCODE_Z10; +- else if (strcmp (cpu_string, "z196") == 0) +- min_cpu = S390_OPCODE_Z196; +- else if (strcmp (cpu_string, "zEC12") == 0) +- min_cpu = S390_OPCODE_ZEC12; +- else { +- fprintf (stderr, "Couldn't parse cpu string %s\n", cpu_string); +- exit (1); +- } ++ fprintf (stderr, "Couldn't scan line %s\n", currentLine); ++ exit (1); ++ } + +- str = modes_string; +- mode_bits = 0; ++ if (strcmp (cpu_string, "g5") == 0) ++ min_cpu = S390_OPCODE_G5; ++ else if (strcmp (cpu_string, "g6") == 0) ++ min_cpu = S390_OPCODE_G6; ++ else if (strcmp (cpu_string, "z900") == 0) ++ min_cpu = S390_OPCODE_Z900; ++ else if (strcmp (cpu_string, "z990") == 0) ++ min_cpu = S390_OPCODE_Z990; ++ else if (strcmp (cpu_string, "z9-109") == 0) ++ min_cpu = S390_OPCODE_Z9_109; ++ else if (strcmp (cpu_string, "z9-ec") == 0) ++ min_cpu = S390_OPCODE_Z9_EC; ++ else if (strcmp (cpu_string, "z10") == 0) ++ min_cpu = S390_OPCODE_Z10; ++ else if (strcmp (cpu_string, "z196") == 0) ++ min_cpu = S390_OPCODE_Z196; ++ else if (strcmp (cpu_string, "zEC12") == 0) ++ min_cpu = S390_OPCODE_ZEC12; ++ else if (strcmp (cpu_string, "z13") == 0) ++ min_cpu = S390_OPCODE_Z13; ++ else { ++ fprintf (stderr, "Couldn't parse cpu string %s\n", cpu_string); ++ exit (1); ++ } ++ ++ str = modes_string; ++ mode_bits = 0; ++ do { ++ if (strncmp (str, "esa", 3) == 0 ++ && (str[3] == 0 || str[3] == ',')) { ++ mode_bits |= 1 << S390_OPCODE_ESA; ++ str += 3; ++ } else if (strncmp (str, "zarch", 5) == 0 ++ && (str[5] == 0 || str[5] == ',')) { ++ mode_bits |= 1 << S390_OPCODE_ZARCH; ++ str += 5; ++ } else { ++ fprintf (stderr, "Couldn't parse modes string %s\n", ++ modes_string); ++ exit (1); ++ } ++ if (*str == ',') ++ str++; ++ } while (*str != 0); ++ ++ flag_bits = 0; ++ ++ if (num_matched == 7) ++ { ++ str = flags_string; + do { +- if (strncmp (str, "esa", 3) == 0 +- && (str[3] == 0 || str[3] == ',')) { +- mode_bits |= 1 << S390_OPCODE_ESA; +- str += 3; +- } else if (strncmp (str, "zarch", 5) == 0 +- && (str[5] == 0 || str[5] == ',')) { +- mode_bits |= 1 << S390_OPCODE_ZARCH; +- str += 5; ++ if (strncmp (str, "optparm", 7) == 0 ++ && (str[7] == 0 || str[7] == ',')) { ++ flag_bits |= S390_INSTR_FLAG_OPTPARM; ++ str += 7; + } else { +- fprintf (stderr, "Couldn't parse modes string %s\n", +- modes_string); ++ fprintf (stderr, "Couldn't parse flags string %s\n", ++ flags_string); + exit (1); + } + if (*str == ',') + str++; + } while (*str != 0); +- +- insertExpandedMnemonic (opcode, mnemonic, format, min_cpu, mode_bits); +- } +- else +- { +- fprintf (stderr, "Couldn't scan line %s\n", currentLine); +- exit (1); + } ++ insertExpandedMnemonic (opcode, mnemonic, format, min_cpu, mode_bits, flag_bits); + } + + dumpTable (); +diff --git a/opcodes/s390-opc.c b/opcodes/s390-opc.c +index a99eeb2..ca82ce5 100644 +--- a/opcodes/s390-opc.c ++++ b/opcodes/s390-opc.c +@@ -44,197 +44,210 @@ const struct s390_operand s390_operands[] = + + /* General purpose register operands. */ + +-#define R_8 1 /* GPR starting at position 8 */ ++#define R_8 1 /* GPR starting at position 8 */ + { 4, 8, S390_OPERAND_GPR }, +-#define R_12 2 /* GPR starting at position 12 */ ++#define R_12 2 /* GPR starting at position 12 */ + { 4, 12, S390_OPERAND_GPR }, +-#define RO_12 3 /* optional GPR starting at position 12 */ +- { 4, 12, S390_OPERAND_GPR | S390_OPERAND_OPTIONAL }, +-#define R_16 4 /* GPR starting at position 16 */ ++#define R_16 3 /* GPR starting at position 16 */ + { 4, 16, S390_OPERAND_GPR }, +-#define R_20 5 /* GPR starting at position 20 */ ++#define R_20 4 /* GPR starting at position 20 */ + { 4, 20, S390_OPERAND_GPR }, +-#define R_24 6 /* GPR starting at position 24 */ ++#define R_24 5 /* GPR starting at position 24 */ + { 4, 24, S390_OPERAND_GPR }, +-#define R_28 7 /* GPR starting at position 28 */ ++#define R_28 6 /* GPR starting at position 28 */ + { 4, 28, S390_OPERAND_GPR }, +-#define RO_28 8 /* optional GPR starting at position 28 */ +- { 4, 28, (S390_OPERAND_GPR | S390_OPERAND_OPTIONAL) }, +-#define R_32 9 /* GPR starting at position 32 */ ++#define R_32 7 /* GPR starting at position 32 */ + { 4, 32, S390_OPERAND_GPR }, + + /* General purpose register pair operands. */ + +-#define RE_8 10 /* GPR starting at position 8 */ ++#define RE_8 8 /* GPR starting at position 8 */ + { 4, 8, S390_OPERAND_GPR | S390_OPERAND_REG_PAIR }, +-#define RE_12 11 /* GPR starting at position 12 */ ++#define RE_12 9 /* GPR starting at position 12 */ + { 4, 12, S390_OPERAND_GPR | S390_OPERAND_REG_PAIR }, +-#define RE_16 12 /* GPR starting at position 16 */ ++#define RE_16 10 /* GPR starting at position 16 */ + { 4, 16, S390_OPERAND_GPR | S390_OPERAND_REG_PAIR }, +-#define RE_20 13 /* GPR starting at position 20 */ ++#define RE_20 11 /* GPR starting at position 20 */ + { 4, 20, S390_OPERAND_GPR | S390_OPERAND_REG_PAIR }, +-#define RE_24 14 /* GPR starting at position 24 */ ++#define RE_24 12 /* GPR starting at position 24 */ + { 4, 24, S390_OPERAND_GPR | S390_OPERAND_REG_PAIR }, +-#define RE_28 15 /* GPR starting at position 28 */ ++#define RE_28 13 /* GPR starting at position 28 */ + { 4, 28, S390_OPERAND_GPR | S390_OPERAND_REG_PAIR }, +-#define RE_32 16 /* GPR starting at position 32 */ ++#define RE_32 14 /* GPR starting at position 32 */ + { 4, 32, S390_OPERAND_GPR | S390_OPERAND_REG_PAIR }, + +- + /* Floating point register operands. */ + +-#define F_8 17 /* FPR starting at position 8 */ ++#define F_8 15 /* FPR starting at position 8 */ + { 4, 8, S390_OPERAND_FPR }, +-#define F_12 18 /* FPR starting at position 12 */ ++#define F_12 16 /* FPR starting at position 12 */ + { 4, 12, S390_OPERAND_FPR }, +-#define F_16 19 /* FPR starting at position 16 */ ++#define F_16 17 /* FPR starting at position 16 */ + { 4, 16, S390_OPERAND_FPR }, +-#define F_20 20 /* FPR starting at position 16 */ ++#define F_20 18 /* FPR starting at position 16 */ + { 4, 16, S390_OPERAND_FPR }, +-#define F_24 21 /* FPR starting at position 24 */ ++#define F_24 19 /* FPR starting at position 24 */ + { 4, 24, S390_OPERAND_FPR }, +-#define F_28 22 /* FPR starting at position 28 */ ++#define F_28 20 /* FPR starting at position 28 */ + { 4, 28, S390_OPERAND_FPR }, +-#define F_32 23 /* FPR starting at position 32 */ ++#define F_32 21 /* FPR starting at position 32 */ + { 4, 32, S390_OPERAND_FPR }, + + /* Floating point register pair operands. */ + +-#define FE_8 24 /* FPR starting at position 8 */ ++#define FE_8 22 /* FPR starting at position 8 */ + { 4, 8, S390_OPERAND_FPR | S390_OPERAND_REG_PAIR }, +-#define FE_12 25 /* FPR starting at position 12 */ ++#define FE_12 23 /* FPR starting at position 12 */ + { 4, 12, S390_OPERAND_FPR | S390_OPERAND_REG_PAIR }, +-#define FE_16 26 /* FPR starting at position 16 */ ++#define FE_16 24 /* FPR starting at position 16 */ + { 4, 16, S390_OPERAND_FPR | S390_OPERAND_REG_PAIR }, +-#define FE_20 27 /* FPR starting at position 16 */ ++#define FE_20 25 /* FPR starting at position 16 */ + { 4, 16, S390_OPERAND_FPR | S390_OPERAND_REG_PAIR }, +-#define FE_24 28 /* FPR starting at position 24 */ ++#define FE_24 26 /* FPR starting at position 24 */ + { 4, 24, S390_OPERAND_FPR | S390_OPERAND_REG_PAIR }, +-#define FE_28 29 /* FPR starting at position 28 */ ++#define FE_28 27 /* FPR starting at position 28 */ + { 4, 28, S390_OPERAND_FPR | S390_OPERAND_REG_PAIR }, +-#define FE_32 30 /* FPR starting at position 32 */ ++#define FE_32 28 /* FPR starting at position 32 */ + { 4, 32, S390_OPERAND_FPR | S390_OPERAND_REG_PAIR }, + ++/* Vector register operands. */ ++ ++/* For each of these operands and additional bit in the RXB operand is ++ needed. */ ++ ++#define V_8 29 /* Vector reg. starting at position 8 */ ++ { 4, 8, S390_OPERAND_VR }, ++#define V_12 30 /* Vector reg. starting at position 12 */ ++ { 4, 12, S390_OPERAND_VR }, ++#define V_CP16_12 31 /* Vector reg. starting at position 12 */ ++ { 4, 12, S390_OPERAND_VR | S390_OPERAND_CP16 }, /* with a copy at pos 16 */ ++#define V_16 32 /* Vector reg. starting at position 16 */ ++ { 4, 16, S390_OPERAND_VR }, ++#define V_32 33 /* Vector reg. starting at position 32 */ ++ { 4, 32, S390_OPERAND_VR }, + + /* Access register operands. */ + +-#define A_8 31 /* Access reg. starting at position 8 */ ++#define A_8 34 /* Access reg. starting at position 8 */ + { 4, 8, S390_OPERAND_AR }, +-#define A_12 32 /* Access reg. starting at position 12 */ ++#define A_12 35 /* Access reg. starting at position 12 */ + { 4, 12, S390_OPERAND_AR }, +-#define A_24 33 /* Access reg. starting at position 24 */ ++#define A_24 36 /* Access reg. starting at position 24 */ + { 4, 24, S390_OPERAND_AR }, +-#define A_28 34 /* Access reg. starting at position 28 */ ++#define A_28 37 /* Access reg. starting at position 28 */ + { 4, 28, S390_OPERAND_AR }, + + /* Control register operands. */ + +-#define C_8 35 /* Control reg. starting at position 8 */ ++#define C_8 38 /* Control reg. starting at position 8 */ + { 4, 8, S390_OPERAND_CR }, +-#define C_12 36 /* Control reg. starting at position 12 */ ++#define C_12 39 /* Control reg. starting at position 12 */ + { 4, 12, S390_OPERAND_CR }, + + /* Base register operands. */ + +-#define B_16 37 /* Base register starting at position 16 */ ++#define B_16 40 /* Base register starting at position 16 */ + { 4, 16, S390_OPERAND_BASE | S390_OPERAND_GPR }, +-#define B_32 38 /* Base register starting at position 32 */ ++#define B_32 41 /* Base register starting at position 32 */ + { 4, 32, S390_OPERAND_BASE | S390_OPERAND_GPR }, + +-#define X_12 39 /* Index register starting at position 12 */ ++#define X_12 42 /* Index register starting at position 12 */ + { 4, 12, S390_OPERAND_INDEX | S390_OPERAND_GPR }, + ++#define VX_12 43 /* Vector index register starting at position 12 */ ++ { 4, 12, S390_OPERAND_INDEX | S390_OPERAND_VR }, ++ + /* Address displacement operands. */ + +-#define D_20 40 /* Displacement starting at position 20 */ ++#define D_20 44 /* Displacement starting at position 20 */ + { 12, 20, S390_OPERAND_DISP }, +-#define DO_20 41 /* optional Displ. starting at position 20 */ +- { 12, 20, S390_OPERAND_DISP | S390_OPERAND_OPTIONAL }, +-#define D_36 42 /* Displacement starting at position 36 */ ++#define D_36 45 /* Displacement starting at position 36 */ + { 12, 36, S390_OPERAND_DISP }, +-#define D20_20 43 /* 20 bit displacement starting at 20 */ ++#define D20_20 46 /* 20 bit displacement starting at 20 */ + { 20, 20, S390_OPERAND_DISP | S390_OPERAND_SIGNED }, + + /* Length operands. */ + +-#define L4_8 44 /* 4 bit length starting at position 8 */ ++#define L4_8 47 /* 4 bit length starting at position 8 */ + { 4, 8, S390_OPERAND_LENGTH }, +-#define L4_12 45 /* 4 bit length starting at position 12 */ ++#define L4_12 48 /* 4 bit length starting at position 12 */ + { 4, 12, S390_OPERAND_LENGTH }, +-#define L8_8 46 /* 8 bit length starting at position 8 */ ++#define L8_8 49 /* 8 bit length starting at position 8 */ + { 8, 8, S390_OPERAND_LENGTH }, + + /* Signed immediate operands. */ + +-#define I8_8 47 /* 8 bit signed value starting at 8 */ ++#define I8_8 50 /* 8 bit signed value starting at 8 */ + { 8, 8, S390_OPERAND_SIGNED }, +-#define I8_32 48 /* 8 bit signed value starting at 32 */ ++#define I8_32 51 /* 8 bit signed value starting at 32 */ + { 8, 32, S390_OPERAND_SIGNED }, +-#define I12_12 49 /* 12 bit signed value starting at 12 */ ++#define I12_12 52 /* 12 bit signed value starting at 12 */ + { 12, 12, S390_OPERAND_SIGNED }, +-#define I16_16 50 /* 16 bit signed value starting at 16 */ ++#define I16_16 53 /* 16 bit signed value starting at 16 */ + { 16, 16, S390_OPERAND_SIGNED }, +-#define I16_32 51 /* 16 bit signed value starting at 32 */ ++#define I16_32 54 /* 16 bit signed value starting at 32 */ + { 16, 32, S390_OPERAND_SIGNED }, +-#define I24_24 52 /* 24 bit signed value starting at 24 */ ++#define I24_24 55 /* 24 bit signed value starting at 24 */ + { 24, 24, S390_OPERAND_SIGNED }, +-#define I32_16 53 /* 32 bit signed value starting at 16 */ ++#define I32_16 56 /* 32 bit signed value starting at 16 */ + { 32, 16, S390_OPERAND_SIGNED }, + + /* Unsigned immediate operands. */ + +-#define U4_8 54 /* 4 bit unsigned value starting at 8 */ ++#define U4_8 57 /* 4 bit unsigned value starting at 8 */ + { 4, 8, 0 }, +-#define U4_12 55 /* 4 bit unsigned value starting at 12 */ ++#define U4_12 58 /* 4 bit unsigned value starting at 12 */ + { 4, 12, 0 }, +-#define U4_16 56 /* 4 bit unsigned value starting at 16 */ ++#define U4_16 59 /* 4 bit unsigned value starting at 16 */ + { 4, 16, 0 }, +-#define U4_20 57 /* 4 bit unsigned value starting at 20 */ ++#define U4_20 60 /* 4 bit unsigned value starting at 20 */ + { 4, 20, 0 }, +-#define U4_24 58 /* 4 bit unsigned value starting at 24 */ ++#define U4_24 61 /* 4 bit unsigned value starting at 24 */ + { 4, 24, 0 }, +-#define U4_28 59 /* 4 bit unsigned value starting at 28 */ ++#define U4_OR1_24 62 /* 4 bit unsigned value starting at 24 */ ++ { 4, 24, S390_OPERAND_OR1 }, ++#define U4_OR2_24 63 /* 4 bit unsigned value starting at 24 */ ++ { 4, 24, S390_OPERAND_OR2 }, ++#define U4_OR3_24 64 /* 4 bit unsigned value starting at 24 */ ++ { 4, 24, S390_OPERAND_OR1 | S390_OPERAND_OR2 }, ++#define U4_28 65 /* 4 bit unsigned value starting at 28 */ + { 4, 28, 0 }, +-#define U4_32 60 /* 4 bit unsigned value starting at 32 */ ++#define U4_OR8_28 66 ++ { 4, 28, S390_OPERAND_OR8 }, ++#define U4_32 67 /* 4 bit unsigned value starting at 32 */ + { 4, 32, 0 }, +-#define U4_36 61 /* 4 bit unsigned value starting at 36 */ ++#define U4_36 68 /* 4 bit unsigned value starting at 36 */ + { 4, 36, 0 }, +-#define U8_8 62 /* 8 bit unsigned value starting at 8 */ ++#define U8_8 69 /* 8 bit unsigned value starting at 8 */ + { 8, 8, 0 }, +-#define U8_16 63 /* 8 bit unsigned value starting at 16 */ ++#define U8_16 70 /* 8 bit unsigned value starting at 16 */ + { 8, 16, 0 }, +-#define U8_24 64 /* 8 bit unsigned value starting at 24 */ ++#define U8_24 71 /* 8 bit unsigned value starting at 24 */ + { 8, 24, 0 }, +-#define U8_32 65 /* 8 bit unsigned value starting at 32 */ ++#define U8_32 72 /* 8 bit unsigned value starting at 32 */ + { 8, 32, 0 }, +-#define U16_16 66 /* 16 bit unsigned value starting at 16 */ ++#define U12_16 73 /* 12 bit unsigned value starting at 16 */ ++ { 12, 16, 0 }, ++#define U16_16 74 /* 16 bit unsigned value starting at 16 */ + { 16, 16, 0 }, +-#define U16_32 67 /* 16 bit unsigned value starting at 32 */ ++#define U16_32 75 /* 16 bit unsigned value starting at 32 */ + { 16, 32, 0 }, +-#define U32_16 68 /* 32 bit unsigned value starting at 16 */ ++#define U32_16 76 /* 32 bit unsigned value starting at 16 */ + { 32, 16, 0 }, + + /* PC-relative address operands. */ + +-#define J12_12 69 /* 12 bit PC relative offset at 12 */ ++#define J12_12 77 /* 12 bit PC relative offset at 12 */ + { 12, 12, S390_OPERAND_PCREL }, +-#define J16_16 70 /* 16 bit PC relative offset at 16 */ ++#define J16_16 78 /* 16 bit PC relative offset at 16 */ + { 16, 16, S390_OPERAND_PCREL }, +-#define J16_32 71 /* 16 bit PC relative offset at 32 */ ++#define J16_32 79 /* 24 bit PC relative offset at 24 */ + { 16, 32, S390_OPERAND_PCREL }, +-#define J24_24 72 /* 24 bit PC relative offset at 24 */ ++#define J24_24 80 /* 24 bit PC relative offset at 24 */ + { 24, 24, S390_OPERAND_PCREL }, +-#define J32_16 73 /* 32 bit PC relative offset at 16 */ ++#define J32_16 81 /* 32 bit PC relative offset at 16 */ + { 32, 16, S390_OPERAND_PCREL }, + +- +-/* Conditional mask operands. */ +- +-#define M_16OPT 74 /* 4 bit optional mask starting at 16 */ +- { 4, 16, S390_OPERAND_OPTIONAL }, +-#define M_20OPT 75 /* 4 bit optional mask starting at 20 */ +- { 4, 20, S390_OPERAND_OPTIONAL }, +- + }; + + +@@ -244,7 +257,7 @@ const struct s390_operand s390_operands[] = + #define OP8(x) { x, 0x00, 0x00, 0x00, 0x00, 0x00 } + #define OP16(x) { x >> 8, x & 255, 0x00, 0x00, 0x00, 0x00 } + #define OP48(x) { x >> 40, (x >> 32) & 255, (x >> 24) & 255, \ +- (x >> 16) & 255, (x >> 8) & 255, x & 255} ++ (x >> 16) & 255, (x >> 8) & 255, x & 255} + + /* The new format of the INSTR_x_y and MASK_x_y defines is based + on the following rules: +@@ -263,7 +276,6 @@ const struct s390_operand s390_operands[] = + l - length, 4 or 8 bit + p - pc relative + r - general purpose register +- ro - optional register operand + re - gpr extended operand, a valid general purpose register pair + u - unsigned integer, 4, 8, 16 or 32 bit + m - mode field, 4 bit +@@ -274,7 +286,7 @@ const struct s390_operand s390_operands[] = + quite close. + + For example the instruction "mvo" is defined in the PoP as follows: +- ++ + MVO D1(L1,B1),D2(L2,B2) [SS] + + -------------------------------------- +@@ -284,358 +296,443 @@ const struct s390_operand s390_operands[] = + + The instruction format is: INSTR_SS_LLRDRD / MASK_SS_LLRDRD. */ + +-#define INSTR_E 2, { 0,0,0,0,0,0 } /* e.g. pr */ +-#define INSTR_IE_UU 4, { U4_24,U4_28,0,0,0,0 } /* e.g. niai */ +-#define INSTR_MII_UPP 6, { U4_8,J12_12,J24_24 } /* e.g. bprp */ +-#define INSTR_RIE_RRP 6, { R_8,R_12,J16_16,0,0,0 } /* e.g. brxhg */ +-#define INSTR_RIE_RRPU 6, { R_8,R_12,U4_32,J16_16,0,0 } /* e.g. crj */ +-#define INSTR_RIE_RRP0 6, { R_8,R_12,J16_16,0,0,0 } /* e.g. crjne */ +-#define INSTR_RIE_RRI0 6, { R_8,R_12,I16_16,0,0,0 } /* e.g. ahik */ +-#define INSTR_RIE_RUPI 6, { R_8,I8_32,U4_12,J16_16,0,0 } /* e.g. cij */ +-#define INSTR_RIE_R0PI 6, { R_8,I8_32,J16_16,0,0,0 } /* e.g. cijne */ +-#define INSTR_RIE_RUPU 6, { R_8,U8_32,U4_12,J16_16,0,0 } /* e.g. clij */ +-#define INSTR_RIE_R0PU 6, { R_8,U8_32,J16_16,0,0,0 } /* e.g. clijne */ +-#define INSTR_RIE_R0IU 6, { R_8,I16_16,U4_32,0,0,0 } /* e.g. cit */ +-#define INSTR_RIE_R0I0 6, { R_8,I16_16,0,0,0,0 } /* e.g. citne */ +-#define INSTR_RIE_R0UU 6, { R_8,U16_16,U4_32,0,0,0 } /* e.g. clfit */ +-#define INSTR_RIE_R0U0 6, { R_8,U16_16,0,0,0,0 } /* e.g. clfitne */ +-#define INSTR_RIE_RRUUU 6, { R_8,R_12,U8_16,U8_24,U8_32,0 } /* e.g. rnsbg */ +-#define INSTR_RIL_0P 6, { J32_16,0,0,0,0 } /* e.g. jg */ +-#define INSTR_RIL_RP 6, { R_8,J32_16,0,0,0,0 } /* e.g. brasl */ +-#define INSTR_RIL_UP 6, { U4_8,J32_16,0,0,0,0 } /* e.g. brcl */ +-#define INSTR_RIL_RI 6, { R_8,I32_16,0,0,0,0 } /* e.g. afi */ +-#define INSTR_RIL_RU 6, { R_8,U32_16,0,0,0,0 } /* e.g. alfi */ +-#define INSTR_RI_0P 4, { J16_16,0,0,0,0,0 } /* e.g. j */ +-#define INSTR_RI_RI 4, { R_8,I16_16,0,0,0,0 } /* e.g. ahi */ +-#define INSTR_RI_RP 4, { R_8,J16_16,0,0,0,0 } /* e.g. brct */ +-#define INSTR_RI_RU 4, { R_8,U16_16,0,0,0,0 } /* e.g. tml */ +-#define INSTR_RI_UP 4, { U4_8,J16_16,0,0,0,0 } /* e.g. brc */ +-#define INSTR_RIS_RURDI 6, { R_8,I8_32,U4_12,D_20,B_16,0 } /* e.g. cib */ +-#define INSTR_RIS_R0RDI 6, { R_8,I8_32,D_20,B_16,0,0 } /* e.g. cibne */ +-#define INSTR_RIS_RURDU 6, { R_8,U8_32,U4_12,D_20,B_16,0 } /* e.g. clib */ +-#define INSTR_RIS_R0RDU 6, { R_8,U8_32,D_20,B_16,0,0 } /* e.g. clibne*/ +-#define INSTR_RRE_00 4, { 0,0,0,0,0,0 } /* e.g. palb */ +-#define INSTR_RRE_0R 4, { R_28,0,0,0,0,0 } /* e.g. tb */ +-#define INSTR_RRE_AA 4, { A_24,A_28,0,0,0,0 } /* e.g. cpya */ +-#define INSTR_RRE_AR 4, { A_24,R_28,0,0,0,0 } /* e.g. sar */ +-#define INSTR_RRE_F0 4, { F_24,0,0,0,0,0 } /* e.g. sqer */ +-#define INSTR_RRE_FE0 4, { FE_24,0,0,0,0,0 } /* e.g. lzxr */ +-#define INSTR_RRE_FF 4, { F_24,F_28,0,0,0,0 } /* e.g. debr */ +-#define INSTR_RRE_FEF 4, { FE_24,F_28,0,0,0,0 } /* e.g. lxdbr */ +-#define INSTR_RRE_FFE 4, { F_24,FE_28,0,0,0,0 } /* e.g. lexr */ +-#define INSTR_RRE_FEFE 4, { FE_24,FE_28,0,0,0,0 } /* e.g. dxr */ +-#define INSTR_RRE_R0 4, { R_24,0,0,0,0,0 } /* e.g. ipm */ +-#define INSTR_RRE_RA 4, { R_24,A_28,0,0,0,0 } /* e.g. ear */ +-#define INSTR_RRE_RF 4, { R_24,F_28,0,0,0,0 } /* e.g. cefbr */ +-#define INSTR_RRE_RFE 4, { R_24,FE_28,0,0,0,0 } /* e.g. csxtr */ +-#define INSTR_RRE_RR 4, { R_24,R_28,0,0,0,0 } /* e.g. lura */ +-#define INSTR_RRE_RER 4, { RE_24,R_28,0,0,0,0 } /* e.g. tre */ +-#define INSTR_RRE_RERE 4, { RE_24,RE_28,0,0,0,0 } /* e.g. cuse */ +-#define INSTR_RRE_FR 4, { F_24,R_28,0,0,0,0 } /* e.g. ldgr */ +-#define INSTR_RRE_FER 4, { FE_24,R_28,0,0,0,0 } /* e.g. cxfbr */ +-/* Actually efpc and sfpc do not take an optional operand. +- This is just a workaround for existing code e.g. glibc. */ +-#define INSTR_RRE_RR_OPT 4, { R_24,RO_28,0,0,0,0 } /* efpc, sfpc */ +-#define INSTR_RRF_F0FF 4, { F_16,F_24,F_28,0,0,0 } /* e.g. madbr */ +-#define INSTR_RRF_FE0FF 4, { F_16,F_24,F_28,0,0,0 } /* e.g. myr */ +-#define INSTR_RRF_F0FF2 4, { F_24,F_16,F_28,0,0,0 } /* e.g. cpsdr */ +-#define INSTR_RRF_F0FR 4, { F_24,F_16,R_28,0,0,0 } /* e.g. iedtr */ +-#define INSTR_RRF_FE0FER 4, { FE_24,FE_16,R_28,0,0,0 } /* e.g. iextr */ +-#define INSTR_RRF_FUFF 4, { F_24,F_16,F_28,U4_20,0,0 } /* e.g. didbr */ +-#define INSTR_RRF_FEUFEFE 4, { FE_24,FE_16,FE_28,U4_20,0,0 } /* e.g. qaxtr */ +-#define INSTR_RRF_FUFF2 4, { F_24,F_28,F_16,U4_20,0,0 } /* e.g. adtra */ +-#define INSTR_RRF_FEUFEFE2 4, { FE_24,FE_28,FE_16,U4_20,0,0 } /* e.g. axtra */ +-#define INSTR_RRF_RURR 4, { R_24,R_28,R_16,U4_20,0,0 } /* e.g. .insn */ +-#define INSTR_RRF_RURR2 4, { R_24,R_16,R_28,U4_20,0,0 } /* e.g. lptea */ +-#define INSTR_RRF_R0RR 4, { R_24,R_16,R_28,0,0,0 } /* e.g. idte */ +-#define INSTR_RRF_R0RR2 4, { R_24,R_28,R_16,0,0,0 } /* e.g. ark */ +-#define INSTR_RRF_RMRR 4, { R_24,R_16,R_28,M_20OPT,0,0 } /* e.g. crdte */ +-#define INSTR_RRF_U0FF 4, { F_24,U4_16,F_28,0,0,0 } /* e.g. fixr */ +-#define INSTR_RRF_U0FEFE 4, { FE_24,U4_16,FE_28,0,0,0 } /* e.g. fixbr */ +-#define INSTR_RRF_U0RF 4, { R_24,U4_16,F_28,0,0,0 } /* e.g. cfebr */ +-#define INSTR_RRF_U0RFE 4, { R_24,U4_16,FE_28,0,0,0 } /* e.g. cfxbr */ +-#define INSTR_RRF_UUFF 4, { F_24,U4_16,F_28,U4_20,0,0 } /* e.g. fidtr */ +-#define INSTR_RRF_UUFFE 4, { F_24,U4_16,FE_28,U4_20,0,0 } /* e.g. ldxtr */ +-#define INSTR_RRF_UUFEFE 4, { FE_24,U4_16,FE_28,U4_20,0,0 } /* e.g. fixtr */ +-#define INSTR_RRF_0UFF 4, { F_24,F_28,U4_20,0,0,0 } /* e.g. ldetr */ +-#define INSTR_RRF_0UFEF 4, { FE_24,F_28,U4_20,0,0,0 } /* e.g. lxdtr */ +-#define INSTR_RRF_FFRU 4, { F_24,F_16,R_28,U4_20,0,0 } /* e.g. rrdtr */ +-#define INSTR_RRF_FEFERU 4, { FE_24,FE_16,R_28,U4_20,0,0 } /* e.g. rrxtr */ +-#define INSTR_RRF_M0RR 4, { R_24,R_28,M_16OPT,0,0,0 } /* e.g. sske */ +-#define INSTR_RRF_M0RER 4, { RE_24,R_28,M_16OPT,0,0,0 } /* e.g. trte */ +-#define INSTR_RRF_M0RERE 4, { RE_24,RE_28,M_16OPT,0,0,0 } /* e.g. troo */ +-#define INSTR_RRF_U0RR 4, { R_24,R_28,U4_16,0,0,0 } /* e.g. clrt */ +-#define INSTR_RRF_00RR 4, { R_24,R_28,0,0,0,0 } /* e.g. clrtne */ +-#define INSTR_RRF_UUFR 4, { F_24,U4_16,R_28,U4_20,0,0 } /* e.g. cdgtra */ +-#define INSTR_RRF_UUFER 4, { FE_24,U4_16,R_28,U4_20,0,0 } /* e.g. cxfbra */ +-#define INSTR_RRF_UURF 4, { R_24,U4_16,F_28,U4_20,0,0 } /* e.g. cgdtra */ +-#define INSTR_RRF_UURFE 4, { R_24,U4_16,FE_28,U4_20,0,0 } /* e.g. cfxbra */ +-#define INSTR_RR_0R 2, { R_12, 0,0,0,0,0 } /* e.g. br */ +-#define INSTR_RR_0R_OPT 2, { RO_12, 0,0,0,0,0 } /* e.g. nopr */ +-#define INSTR_RR_FF 2, { F_8,F_12,0,0,0,0 } /* e.g. adr */ +-#define INSTR_RR_FEF 2, { FE_8,F_12,0,0,0,0 } /* e.g. mxdr */ +-#define INSTR_RR_FFE 2, { F_8,FE_12,0,0,0,0 } /* e.g. ldxr */ +-#define INSTR_RR_FEFE 2, { FE_8,FE_12,0,0,0,0 } /* e.g. axr */ +-#define INSTR_RR_R0 2, { R_8, 0,0,0,0,0 } /* e.g. spm */ +-#define INSTR_RR_RR 2, { R_8,R_12,0,0,0,0 } /* e.g. lr */ +-#define INSTR_RR_RER 2, { RE_8,R_12,0,0,0,0 } /* e.g. dr */ +-#define INSTR_RR_U0 2, { U8_8, 0,0,0,0,0 } /* e.g. svc */ +-#define INSTR_RR_UR 2, { U4_8,R_12,0,0,0,0 } /* e.g. bcr */ +-#define INSTR_RRR_F0FF 4, { F_24,F_28,F_16,0,0,0 } /* e.g. ddtr */ +-#define INSTR_RRR_FE0FEFE 4, { FE_24,FE_28,FE_16,0,0,0 } /* e.g. axtr */ +-#define INSTR_RRS_RRRDU 6, { R_8,R_12,U4_32,D_20,B_16 } /* e.g. crb */ +-#define INSTR_RRS_RRRD0 6, { R_8,R_12,D_20,B_16,0 } /* e.g. crbne */ +-#define INSTR_RSE_RRRD 6, { R_8,R_12,D_20,B_16,0,0 } /* e.g. lmh */ +-#define INSTR_RSE_RERERD 6, { RE_8,RE_12,D_20,B_16,0,0 } /* e.g. mvclu */ +-#define INSTR_RSE_CCRD 6, { C_8,C_12,D_20,B_16,0,0 } /* e.g. lmh */ +-#define INSTR_RSE_RURD 6, { R_8,U4_12,D_20,B_16,0,0 } /* e.g. icmh */ +-#define INSTR_RSL_R0RD 6, { D_20,L4_8,B_16,0,0,0 } /* e.g. tp */ +-#define INSTR_RSL_LRDFU 6, { F_32,D_20,L8_8,B_16,U4_36,0 } /* e.g. cdzt */ +-#define INSTR_RSL_LRDFEU 6, { FE_32,D_20,L8_8,B_16,U4_36,0 } /* e.g. cxzt */ +-#define INSTR_RSI_RRP 4, { R_8,R_12,J16_16,0,0,0 } /* e.g. brxh */ +-#define INSTR_RSY_RRRD 6, { R_8,R_12,D20_20,B_16,0,0 } /* e.g. stmy */ +-#define INSTR_RSY_RERERD 6, { RE_8,RE_12,D20_20,B_16,0,0 } /* e.g. cdsy */ +-#define INSTR_RSY_RURD 6, { R_8,U4_12,D20_20,B_16,0,0 } /* e.g. icmh */ +-#define INSTR_RSY_RURD2 6, { R_8,D20_20,B_16,U4_12,0,0 } /* e.g. loc */ +-#define INSTR_RSY_R0RD 6, { R_8,D20_20,B_16,0,0,0 } /* e.g. locgt */ +-#define INSTR_RSY_AARD 6, { A_8,A_12,D20_20,B_16,0,0 } /* e.g. lamy */ +-#define INSTR_RSY_CCRD 6, { C_8,C_12,D20_20,B_16,0,0 } /* e.g. stctg */ +-#define INSTR_RS_AARD 4, { A_8,A_12,D_20,B_16,0,0 } /* e.g. lam */ +-#define INSTR_RS_CCRD 4, { C_8,C_12,D_20,B_16,0,0 } /* e.g. lctl */ +-#define INSTR_RS_R0RD 4, { R_8,D_20,B_16,0,0,0 } /* e.g. sll */ +-#define INSTR_RS_RE0RD 4, { RE_8,D_20,B_16,0,0,0 } /* e.g. slda */ +-#define INSTR_RS_RRRD 4, { R_8,R_12,D_20,B_16,0,0 } /* e.g. cs */ +-#define INSTR_RS_RERERD 4, { RE_8,RE_12,D_20,B_16,0,0 } /* e.g. cds */ +-#define INSTR_RS_RURD 4, { R_8,U4_12,D_20,B_16,0,0 } /* e.g. icm */ +-#define INSTR_RXE_FRRD 6, { F_8,D_20,X_12,B_16,0,0 } /* e.g. axbr */ +-#define INSTR_RXE_FERRD 6, { FE_8,D_20,X_12,B_16,0,0 } /* e.g. lxdb */ +-#define INSTR_RXE_RRRD 6, { R_8,D_20,X_12,B_16,0,0 } /* e.g. lg */ +-#define INSTR_RXE_RERRD 6, { RE_8,D_20,X_12,B_16,0,0 } /* e.g. dsg */ +-#define INSTR_RXF_FRRDF 6, { F_32,F_8,D_20,X_12,B_16,0 } /* e.g. madb */ +-#define INSTR_RXF_FRRDFE 6, { FE_32,F_8,D_20,X_12,B_16,0 } /* e.g. my */ +-#define INSTR_RXF_FERRDFE 6, { FE_32,FE_8,D_20,X_12,B_16,0 } /* e.g. slxt */ +-#define INSTR_RXF_RRRDR 6, { R_32,R_8,D_20,X_12,B_16,0 } /* e.g. .insn */ +-#define INSTR_RXY_RRRD 6, { R_8,D20_20,X_12,B_16,0,0 } /* e.g. ly */ +-#define INSTR_RXY_RERRD 6, { RE_8,D20_20,X_12,B_16,0,0 } /* e.g. dsg */ +-#define INSTR_RXY_FRRD 6, { F_8,D20_20,X_12,B_16,0,0 } /* e.g. ley */ +-#define INSTR_RXY_URRD 6, { U4_8,D20_20,X_12,B_16,0,0 } /* e.g. pfd */ +-#define INSTR_RX_0RRD 4, { D_20,X_12,B_16,0,0,0 } /* e.g. be */ +-#define INSTR_RX_0RRD_OPT 4, { DO_20,X_12,B_16,0,0,0 } /* e.g. nop */ +-#define INSTR_RX_FRRD 4, { F_8,D_20,X_12,B_16,0,0 } /* e.g. ae */ +-#define INSTR_RX_FERRD 4, { FE_8,D_20,X_12,B_16,0,0 } /* e.g. mxd */ +-#define INSTR_RX_RRRD 4, { R_8,D_20,X_12,B_16,0,0 } /* e.g. l */ +-#define INSTR_RX_RERRD 4, { RE_8,D_20,X_12,B_16,0,0 } /* e.g. d */ +-#define INSTR_RX_URRD 4, { U4_8,D_20,X_12,B_16,0,0 } /* e.g. bc */ +-#define INSTR_SI_URD 4, { D_20,B_16,U8_8,0,0,0 } /* e.g. cli */ +-#define INSTR_SIY_URD 6, { D20_20,B_16,U8_8,0,0,0 } /* e.g. tmy */ +-#define INSTR_SIY_IRD 6, { D20_20,B_16,I8_8,0,0,0 } /* e.g. asi */ +-#define INSTR_SIL_RDI 6, { D_20,B_16,I16_32,0,0,0 } /* e.g. chhsi */ +-#define INSTR_SIL_RDU 6, { D_20,B_16,U16_32,0,0,0 } /* e.g. clfhsi */ +-#define INSTR_SMI_U0RDP 6, { U4_8,J16_32,D_20,B_16,0,0 } /* e.g. bpp */ +-#define INSTR_SSE_RDRD 6, { D_20,B_16,D_36,B_32,0,0 } /* e.g. mvsdk */ +-#define INSTR_SS_L0RDRD 6, { D_20,L8_8,B_16,D_36,B_32,0 } /* e.g. mvc */ +-#define INSTR_SS_L2RDRD 6, { D_20,B_16,D_36,L8_8,B_32,0 } /* e.g. pka */ +-#define INSTR_SS_LIRDRD 6, { D_20,L4_8,B_16,D_36,B_32,U4_12 } /* e.g. srp */ +-#define INSTR_SS_LLRDRD 6, { D_20,L4_8,B_16,D_36,L4_12,B_32 } /* e.g. pack */ +-#define INSTR_SS_RRRDRD 6, { D_20,R_8,B_16,D_36,B_32,R_12 } /* e.g. mvck */ +-#define INSTR_SS_RRRDRD2 6, { R_8,D_20,B_16,R_12,D_36,B_32 } /* e.g. plo */ +-#define INSTR_SS_RRRDRD3 6, { R_8,R_12,D_20,B_16,D_36,B_32 } /* e.g. lmd */ +-#define INSTR_SSF_RRDRD 6, { D_20,B_16,D_36,B_32,R_8,0 } /* e.g. mvcos */ +-#define INSTR_SSF_RRDRD2 6, { R_8,D_20,B_16,D_36,B_32,0 } +-#define INSTR_SSF_RERDRD2 6, { RE_8,D_20,B_16,D_36,B_32,0 } /* e.g. lpd */ +-#define INSTR_S_00 4, { 0,0,0,0,0,0 } /* e.g. hsch */ +-#define INSTR_S_RD 4, { D_20,B_16,0,0,0,0 } /* e.g. lpsw */ +- +-#define MASK_E { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_IE_UU { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } +-#define MASK_MII_UPP { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RIE_RRP { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RIE_RRPU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RIE_RRP0 { 0xff, 0x00, 0x00, 0x00, 0xf0, 0xff } +-#define MASK_RIE_RRI0 { 0xff, 0x00, 0x00, 0x00, 0xf0, 0xff } +-#define MASK_RIE_RUPI { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RIE_R0PI { 0xff, 0x00, 0x00, 0x00, 0xf0, 0xff } +-#define MASK_RIE_RUPU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RIE_R0PU { 0xff, 0x00, 0x00, 0x00, 0xf0, 0xff } +-#define MASK_RIE_R0IU { 0xff, 0x0f, 0x00, 0x00, 0x0f, 0xff } +-#define MASK_RIE_R0I0 { 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff } +-#define MASK_RIE_R0UU { 0xff, 0x0f, 0x00, 0x00, 0x0f, 0xff } +-#define MASK_RIE_R0U0 { 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff } +-#define MASK_RIE_RRUUU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RIL_0P { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RIL_RP { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RIL_UP { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RIL_RI { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RIL_RU { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RI_0P { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RI_RI { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RI_RP { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RI_RU { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RI_UP { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RIS_RURDI { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RIS_R0RDI { 0xff, 0x0f, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RIS_RURDU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RIS_R0RDU { 0xff, 0x0f, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RRE_00 { 0xff, 0xff, 0xff, 0xff, 0x00, 0x00 } +-#define MASK_RRE_0R { 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00 } +-#define MASK_RRE_AA { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } +-#define MASK_RRE_AR { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } +-#define MASK_RRE_F0 { 0xff, 0xff, 0xff, 0x0f, 0x00, 0x00 } +-#define MASK_RRE_FE0 { 0xff, 0xff, 0xff, 0x0f, 0x00, 0x00 } +-#define MASK_RRE_FF { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } +-#define MASK_RRE_FEF { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } +-#define MASK_RRE_FFE { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } +-#define MASK_RRE_FEFE { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } +-#define MASK_RRE_R0 { 0xff, 0xff, 0xff, 0x0f, 0x00, 0x00 } +-#define MASK_RRE_RA { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } +-#define MASK_RRE_RF { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } +-#define MASK_RRE_RFE { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } +-#define MASK_RRE_RR { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } +-#define MASK_RRE_RER { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } +-#define MASK_RRE_RERE { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } +-#define MASK_RRE_FR { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } +-#define MASK_RRE_FER { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } +-#define MASK_RRE_RR_OPT { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } +-#define MASK_RRF_F0FF { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } +-#define MASK_RRF_FE0FF { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } +-#define MASK_RRF_F0FF2 { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } +-#define MASK_RRF_F0FR { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } +-#define MASK_RRF_FE0FER { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } +-#define MASK_RRF_FUFF { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RRF_FEUFEFE { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RRF_FUFF2 { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define INSTR_E 2, { 0,0,0,0,0,0 } /* e.g. pr */ ++#define INSTR_IE_UU 4, { U4_24,U4_28,0,0,0,0 } /* e.g. niai */ ++#define INSTR_MII_UPP 6, { U4_8,J12_12,J24_24 } /* e.g. bprp */ ++#define INSTR_RIE_RRP 6, { R_8,R_12,J16_16,0,0,0 } /* e.g. brxhg */ ++#define INSTR_RIE_RRPU 6, { R_8,R_12,U4_32,J16_16,0,0 } /* e.g. crj */ ++#define INSTR_RIE_RRP0 6, { R_8,R_12,J16_16,0,0,0 } /* e.g. cgrjne */ ++#define INSTR_RIE_RRI0 6, { R_8,R_12,I16_16,0,0,0 } /* e.g. ahik */ ++#define INSTR_RIE_RUPI 6, { R_8,I8_32,U4_12,J16_16,0,0 } /* e.g. cij */ ++#define INSTR_RIE_R0PI 6, { R_8,I8_32,J16_16,0,0,0 } /* e.g. cijne */ ++#define INSTR_RIE_RUPU 6, { R_8,U8_32,U4_12,J16_16,0,0 } /* e.g. clij */ ++#define INSTR_RIE_R0PU 6, { R_8,U8_32,J16_16,0,0,0 } /* e.g. clijne */ ++#define INSTR_RIE_R0IU 6, { R_8,I16_16,U4_32,0,0,0 } /* e.g. cit */ ++#define INSTR_RIE_R0I0 6, { R_8,I16_16,0,0,0,0 } /* e.g. citne */ ++#define INSTR_RIE_R0UU 6, { R_8,U16_16,U4_32,0,0,0 } /* e.g. clfit */ ++#define INSTR_RIE_R0U0 6, { R_8,U16_16,0,0,0,0 } /* e.g. clfitne */ ++#define INSTR_RIE_RRUUU 6, { R_8,R_12,U8_16,U8_24,U8_32,0 } /* e.g. rnsbg */ ++#define INSTR_RIL_0P 6, { J32_16,0,0,0,0 } /* e.g. jg */ ++#define INSTR_RIL_RP 6, { R_8,J32_16,0,0,0,0 } /* e.g. brasl */ ++#define INSTR_RIL_UP 6, { U4_8,J32_16,0,0,0,0 } /* e.g. brcl */ ++#define INSTR_RIL_RI 6, { R_8,I32_16,0,0,0,0 } /* e.g. afi */ ++#define INSTR_RIL_RU 6, { R_8,U32_16,0,0,0,0 } /* e.g. alfi */ ++#define INSTR_RI_0P 4, { J16_16,0,0,0,0,0 } /* e.g. j */ ++#define INSTR_RI_RI 4, { R_8,I16_16,0,0,0,0 } /* e.g. ahi */ ++#define INSTR_RI_RP 4, { R_8,J16_16,0,0,0,0 } /* e.g. brct */ ++#define INSTR_RI_RU 4, { R_8,U16_16,0,0,0,0 } /* e.g. tml */ ++#define INSTR_RI_UP 4, { U4_8,J16_16,0,0,0,0 } /* e.g. brc */ ++#define INSTR_RIS_RURDI 6, { R_8,I8_32,U4_12,D_20,B_16,0 } /* e.g. cib */ ++#define INSTR_RIS_R0RDI 6, { R_8,I8_32,D_20,B_16,0,0 } /* e.g. cibne */ ++#define INSTR_RIS_RURDU 6, { R_8,U8_32,U4_12,D_20,B_16,0 } /* e.g. clib */ ++#define INSTR_RIS_R0RDU 6, { R_8,U8_32,D_20,B_16,0,0 } /* e.g. clibne*/ ++#define INSTR_RRE_00 4, { 0,0,0,0,0,0 } /* e.g. palb */ ++#define INSTR_RRE_0R 4, { R_28,0,0,0,0,0 } /* e.g. tb */ ++#define INSTR_RRE_AA 4, { A_24,A_28,0,0,0,0 } /* e.g. cpya */ ++#define INSTR_RRE_AR 4, { A_24,R_28,0,0,0,0 } /* e.g. sar */ ++#define INSTR_RRE_F0 4, { F_24,0,0,0,0,0 } /* e.g. lzer */ ++#define INSTR_RRE_FE0 4, { FE_24,0,0,0,0,0 } /* e.g. lzxr */ ++#define INSTR_RRE_FF 4, { F_24,F_28,0,0,0,0 } /* e.g. debr */ ++#define INSTR_RRE_FEF 4, { FE_24,F_28,0,0,0,0 } /* e.g. lxdbr */ ++#define INSTR_RRE_FFE 4, { F_24,FE_28,0,0,0,0 } /* e.g. lexr */ ++#define INSTR_RRE_FEFE 4, { FE_24,FE_28,0,0,0,0 } /* e.g. dxr */ ++#define INSTR_RRE_R0 4, { R_24,0,0,0,0,0 } /* e.g. ipm */ ++#define INSTR_RRE_RA 4, { R_24,A_28,0,0,0,0 } /* e.g. ear */ ++#define INSTR_RRE_RF 4, { R_24,F_28,0,0,0,0 } /* e.g. lgdr */ ++#define INSTR_RRE_RFE 4, { R_24,FE_28,0,0,0,0 } /* e.g. csxtr */ ++#define INSTR_RRE_RR 4, { R_24,R_28,0,0,0,0 } /* e.g. lura */ ++#define INSTR_RRE_RER 4, { RE_24,R_28,0,0,0,0 } /* e.g. tre */ ++#define INSTR_RRE_RERE 4, { RE_24,RE_28,0,0,0,0 } /* e.g. cuse */ ++#define INSTR_RRE_FR 4, { F_24,R_28,0,0,0,0 } /* e.g. ldgr */ ++#define INSTR_RRE_FER 4, { FE_24,R_28,0,0,0,0 } /* e.g. cxfbr */ ++#define INSTR_RRF_F0FF 4, { F_16,F_24,F_28,0,0,0 } /* e.g. madbr */ ++#define INSTR_RRF_FE0FF 4, { F_16,F_24,F_28,0,0,0 } /* e.g. myr */ ++#define INSTR_RRF_F0FF2 4, { F_24,F_16,F_28,0,0,0 } /* e.g. cpsdr */ ++#define INSTR_RRF_F0FR 4, { F_24,F_16,R_28,0,0,0 } /* e.g. iedtr */ ++#define INSTR_RRF_FE0FER 4, { FE_24,FE_16,R_28,0,0,0 } /* e.g. iextr */ ++#define INSTR_RRF_FUFF 4, { F_24,F_16,F_28,U4_20,0,0 } /* e.g. didbr */ ++#define INSTR_RRF_FEUFEFE 4, { FE_24,FE_16,FE_28,U4_20,0,0 } /* e.g. qaxtr */ ++#define INSTR_RRF_FUFF2 4, { F_24,F_28,F_16,U4_20,0,0 } /* e.g. adtra */ ++#define INSTR_RRF_FEUFEFE2 4, { FE_24,FE_28,FE_16,U4_20,0,0 } /* e.g. axtra */ ++#define INSTR_RRF_RURR 4, { R_24,R_28,R_16,U4_20,0,0 } /* e.g. .insn */ ++#define INSTR_RRF_RURR2 4, { R_24,R_16,R_28,U4_20,0,0 } /* e.g. lptea */ ++#define INSTR_RRF_R0RR 4, { R_24,R_16,R_28,0,0,0 } /* e.g. idte */ ++#define INSTR_RRF_R0RR2 4, { R_24,R_28,R_16,0,0,0 } /* e.g. ark */ ++#define INSTR_RRF_U0FF 4, { F_24,U4_16,F_28,0,0,0 } /* e.g. fidbr */ ++#define INSTR_RRF_U0FEFE 4, { FE_24,U4_16,FE_28,0,0,0 } /* e.g. fixbr */ ++#define INSTR_RRF_U0RF 4, { R_24,U4_16,F_28,0,0,0 } /* e.g. cfebr */ ++#define INSTR_RRF_U0RFE 4, { R_24,U4_16,FE_28,0,0,0 } /* e.g. cfxbr */ ++#define INSTR_RRF_UUFF 4, { F_24,U4_16,F_28,U4_20,0,0 } /* e.g. fidtr */ ++#define INSTR_RRF_UUFFE 4, { F_24,U4_16,FE_28,U4_20,0,0 } /* e.g. ldxtr */ ++#define INSTR_RRF_UUFEFE 4, { FE_24,U4_16,FE_28,U4_20,0,0 } /* e.g. fixtr */ ++#define INSTR_RRF_0UFF 4, { F_24,F_28,U4_20,0,0,0 } /* e.g. ldetr */ ++#define INSTR_RRF_0UFEF 4, { FE_24,F_28,U4_20,0,0,0 } /* e.g. lxdtr */ ++#define INSTR_RRF_FFRU 4, { F_24,F_16,R_28,U4_20,0,0 } /* e.g. rrdtr */ ++#define INSTR_RRF_FEFERU 4, { FE_24,FE_16,R_28,U4_20,0,0 } /* e.g. rrxtr */ ++#define INSTR_RRF_U0RR 4, { R_24,R_28,U4_16,0,0,0 } /* e.g. sske */ ++#define INSTR_RRF_U0RER 4, { RE_24,R_28,U4_16,0,0,0 } /* e.g. trte */ ++#define INSTR_RRF_U0RERE 4, { RE_24,RE_28,U4_16,0,0,0 } /* e.g. troo */ ++#define INSTR_RRF_00RR 4, { R_24,R_28,0,0,0,0 } /* e.g. clrtne */ ++#define INSTR_RRF_UUFR 4, { F_24,U4_16,R_28,U4_20,0,0 } /* e.g. cdgtra */ ++#define INSTR_RRF_UUFER 4, { FE_24,U4_16,R_28,U4_20,0,0 } /* e.g. cxfbra */ ++#define INSTR_RRF_UURF 4, { R_24,U4_16,F_28,U4_20,0,0 } /* e.g. cgdtra */ ++#define INSTR_RRF_UURFE 4, { R_24,U4_16,FE_28,U4_20,0,0 } /* e.g. cfxbra */ ++#define INSTR_RR_0R 2, { R_12, 0,0,0,0,0 } /* e.g. br */ ++#define INSTR_RR_FF 2, { F_8,F_12,0,0,0,0 } /* e.g. adr */ ++#define INSTR_RR_FEF 2, { FE_8,F_12,0,0,0,0 } /* e.g. mxdr */ ++#define INSTR_RR_FFE 2, { F_8,FE_12,0,0,0,0 } /* e.g. ldxr */ ++#define INSTR_RR_FEFE 2, { FE_8,FE_12,0,0,0,0 } /* e.g. axr */ ++#define INSTR_RR_R0 2, { R_8, 0,0,0,0,0 } /* e.g. spm */ ++#define INSTR_RR_RR 2, { R_8,R_12,0,0,0,0 } /* e.g. lr */ ++#define INSTR_RR_RER 2, { RE_8,R_12,0,0,0,0 } /* e.g. dr */ ++#define INSTR_RR_U0 2, { U8_8, 0,0,0,0,0 } /* e.g. svc */ ++#define INSTR_RR_UR 2, { U4_8,R_12,0,0,0,0 } /* e.g. bcr */ ++#define INSTR_RRR_F0FF 4, { F_24,F_28,F_16,0,0,0 } /* e.g. ddtr */ ++#define INSTR_RRR_FE0FEFE 4, { FE_24,FE_28,FE_16,0,0,0 } /* e.g. axtr */ ++#define INSTR_RRS_RRRDU 6, { R_8,R_12,U4_32,D_20,B_16 } /* e.g. crb */ ++#define INSTR_RRS_RRRD0 6, { R_8,R_12,D_20,B_16,0 } /* e.g. crbne */ ++#define INSTR_RSE_RRRD 6, { R_8,R_12,D_20,B_16,0,0 } /* e.g. lmh */ ++#define INSTR_RSE_RERERD 6, { RE_8,RE_12,D_20,B_16,0,0 } /* e.g. mvclu */ ++#define INSTR_RSE_CCRD 6, { C_8,C_12,D_20,B_16,0,0 } /* e.g. stctg */ ++#define INSTR_RSE_RURD 6, { R_8,U4_12,D_20,B_16,0,0 } /* e.g. icmh */ ++#define INSTR_RSL_R0RD 6, { D_20,L4_8,B_16,0,0,0 } /* e.g. tp */ ++#define INSTR_RSL_LRDFU 6, { F_32,D_20,L8_8,B_16,U4_36,0 } /* e.g. cdzt */ ++#define INSTR_RSL_LRDFEU 6, { FE_32,D_20,L8_8,B_16,U4_36,0 } /* e.g. cxzt */ ++#define INSTR_RSI_RRP 4, { R_8,R_12,J16_16,0,0,0 } /* e.g. brxh */ ++#define INSTR_RSY_RRRD 6, { R_8,R_12,D20_20,B_16,0,0 } /* e.g. stmy */ ++#define INSTR_RSY_RERERD 6, { RE_8,RE_12,D20_20,B_16,0,0 } /* e.g. cdsy */ ++#define INSTR_RSY_RURD 6, { R_8,U4_12,D20_20,B_16,0,0 } /* e.g. icmh */ ++#define INSTR_RSY_RURD2 6, { R_8,D20_20,B_16,U4_12,0,0 } /* e.g. loc */ ++#define INSTR_RSY_R0RD 6, { R_8,D20_20,B_16,0,0,0 } /* e.g. locne */ ++#define INSTR_RSY_AARD 6, { A_8,A_12,D20_20,B_16,0,0 } /* e.g. lamy */ ++#define INSTR_RSY_CCRD 6, { C_8,C_12,D20_20,B_16,0,0 } /* e.g. stctg */ ++#define INSTR_RS_AARD 4, { A_8,A_12,D_20,B_16,0,0 } /* e.g. lam */ ++#define INSTR_RS_CCRD 4, { C_8,C_12,D_20,B_16,0,0 } /* e.g. lctl */ ++#define INSTR_RS_R0RD 4, { R_8,D_20,B_16,0,0,0 } /* e.g. sll */ ++#define INSTR_RS_RE0RD 4, { RE_8,D_20,B_16,0,0,0 } /* e.g. slda */ ++#define INSTR_RS_RRRD 4, { R_8,R_12,D_20,B_16,0,0 } /* e.g. cs */ ++#define INSTR_RS_RERERD 4, { RE_8,RE_12,D_20,B_16,0,0 } /* e.g. cds */ ++#define INSTR_RS_RURD 4, { R_8,U4_12,D_20,B_16,0,0 } /* e.g. icm */ ++#define INSTR_RXE_FRRD 6, { F_8,D_20,X_12,B_16,0,0 } /* e.g. adb */ ++#define INSTR_RXE_FERRD 6, { FE_8,D_20,X_12,B_16,0,0 } /* e.g. lxdb */ ++#define INSTR_RXE_RRRD 6, { R_8,D_20,X_12,B_16,0,0 } /* e.g. lg */ ++#define INSTR_RXE_RRRDU 6, { R_8,D_20,X_12,B_16,U4_32,0 } /* e.g. lcbb */ ++#define INSTR_RXE_RERRD 6, { RE_8,D_20,X_12,B_16,0,0 } /* e.g. dsg */ ++#define INSTR_RXF_FRRDF 6, { F_32,F_8,D_20,X_12,B_16,0 } /* e.g. madb */ ++#define INSTR_RXF_FRRDFE 6, { FE_32,F_8,D_20,X_12,B_16,0 } /* e.g. my */ ++#define INSTR_RXF_FERRDFE 6, { FE_32,FE_8,D_20,X_12,B_16,0 } /* e.g. slxt */ ++#define INSTR_RXF_RRRDR 6, { R_32,R_8,D_20,X_12,B_16,0 } /* e.g. .insn */ ++#define INSTR_RXY_RRRD 6, { R_8,D20_20,X_12,B_16,0,0 } /* e.g. ly */ ++#define INSTR_RXY_RERRD 6, { RE_8,D20_20,X_12,B_16,0,0 } /* e.g. dsg */ ++#define INSTR_RXY_FRRD 6, { F_8,D20_20,X_12,B_16,0,0 } /* e.g. ley */ ++#define INSTR_RXY_URRD 6, { U4_8,D20_20,X_12,B_16,0,0 } /* e.g. pfd */ ++#define INSTR_RX_0RRD 4, { D_20,X_12,B_16,0,0,0 } /* e.g. be */ ++#define INSTR_RX_FRRD 4, { F_8,D_20,X_12,B_16,0,0 } /* e.g. ae */ ++#define INSTR_RX_FERRD 4, { FE_8,D_20,X_12,B_16,0,0 } /* e.g. mxd */ ++#define INSTR_RX_RRRD 4, { R_8,D_20,X_12,B_16,0,0 } /* e.g. l */ ++#define INSTR_RX_RERRD 4, { RE_8,D_20,X_12,B_16,0,0 } /* e.g. d */ ++#define INSTR_RX_URRD 4, { U4_8,D_20,X_12,B_16,0,0 } /* e.g. bc */ ++#define INSTR_SI_URD 4, { D_20,B_16,U8_8,0,0,0 } /* e.g. cli */ ++#define INSTR_SIY_URD 6, { D20_20,B_16,U8_8,0,0,0 } /* e.g. tmy */ ++#define INSTR_SIY_IRD 6, { D20_20,B_16,I8_8,0,0,0 } /* e.g. asi */ ++#define INSTR_SIL_RDI 6, { D_20,B_16,I16_32,0,0,0 } /* e.g. chhsi */ ++#define INSTR_SIL_RDU 6, { D_20,B_16,U16_32,0,0,0 } /* e.g. clfhsi */ ++#define INSTR_SMI_U0RDP 6, { U4_8,J16_32,D_20,B_16,0,0 } /* e.g. bpp */ ++#define INSTR_SSE_RDRD 6, { D_20,B_16,D_36,B_32,0,0 } /* e.g. mvcdk */ ++#define INSTR_SS_L0RDRD 6, { D_20,L8_8,B_16,D_36,B_32,0 } /* e.g. mvc */ ++#define INSTR_SS_L2RDRD 6, { D_20,B_16,D_36,L8_8,B_32,0 } /* e.g. pka */ ++#define INSTR_SS_LIRDRD 6, { D_20,L4_8,B_16,D_36,B_32,U4_12 } /* e.g. srp */ ++#define INSTR_SS_LLRDRD 6, { D_20,L4_8,B_16,D_36,L4_12,B_32 } /* e.g. pack */ ++#define INSTR_SS_RRRDRD 6, { D_20,R_8,B_16,D_36,B_32,R_12 } /* e.g. mvck */ ++#define INSTR_SS_RRRDRD2 6, { R_8,D_20,B_16,R_12,D_36,B_32 } /* e.g. plo */ ++#define INSTR_SS_RRRDRD3 6, { R_8,R_12,D_20,B_16,D_36,B_32 } /* e.g. lmd */ ++#define INSTR_SSF_RRDRD 6, { D_20,B_16,D_36,B_32,R_8,0 } /* e.g. mvcos */ ++#define INSTR_SSF_RERDRD2 6, { RE_8,D_20,B_16,D_36,B_32,0 } /* e.g. lpd */ ++#define INSTR_S_00 4, { 0,0,0,0,0,0 } /* e.g. hsch */ ++#define INSTR_S_RD 4, { D_20,B_16,0,0,0,0 } /* e.g. lpsw */ ++#define INSTR_VRV_VVXRDU 6, { V_8,D_20,VX_12,B_16,U4_32,0 } /* e.g. vgef */ ++#define INSTR_VRI_V0U 6, { V_8,U16_16,0,0,0,0 } /* e.g. vgbm */ ++#define INSTR_VRI_V 6, { V_8,0,0,0,0,0 } /* e.g. vzero */ ++#define INSTR_VRI_V0UUU 6, { V_8,U8_16,U8_24,U4_32,0,0 } /* e.g. vgm */ ++#define INSTR_VRI_V0UU 6, { V_8,U8_16,U8_24,0,0,0 } /* e.g. vgmb */ ++#define INSTR_VRI_VVUU 6, { V_8,V_12,U16_16,U4_32,0,0 } /* e.g. vrep */ ++#define INSTR_VRI_VVU 6, { V_8,V_12,U16_16,0,0,0 } /* e.g. vrepb */ ++#define INSTR_VRI_VVU2 6, { V_8,V_12,U12_16,0,0,0 } /* e.g. vftcidb */ ++#define INSTR_VRI_V0IU 6, { V_8,I16_16,U4_32,0,0,0 } /* e.g. vrepi */ ++#define INSTR_VRI_V0I 6, { V_8,I16_16,0,0,0,0 } /* e.g. vrepib */ ++#define INSTR_VRI_VVV0UU 6, { V_8,V_12,V_16,U8_24,U4_32,0 } /* e.g. verim */ ++#define INSTR_VRI_VVV0U 6, { V_8,V_12,V_16,U8_24,0,0 } /* e.g. verimb*/ ++#define INSTR_VRI_VVUUU 6, { V_8,V_12,U12_16,U4_32,U4_28,0 } /* e.g. vftci */ ++#define INSTR_VRX_VRRD 6, { V_8,D_20,X_12,B_16,0,0 } /* e.g. vl */ ++#define INSTR_VRX_VV 6, { V_8,V_12,0,0,0,0 } /* e.g. vlr */ ++#define INSTR_VRX_VRRDU 6, { V_8,D_20,X_12,B_16,U4_32,0 } /* e.g. vlrp */ ++#define INSTR_VRS_RVRDU 6, { R_8,V_12,D_20,B_16,U4_32,0 } /* e.g. vlgv */ ++#define INSTR_VRS_RVRD 6, { R_8,V_12,D_20,B_16,0,0 } /* e.g. vlgvb */ ++#define INSTR_VRS_VVRDU 6, { V_8,V_12,D_20,B_16,U4_32,0 } /* e.g. verll */ ++#define INSTR_VRS_VVRD 6, { V_8,V_12,D_20,B_16,0,0 } /* e.g. vlm */ ++#define INSTR_VRS_VRRDU 6, { V_8,R_12,D_20,B_16,U4_32,0 } /* e.g. vlvg */ ++#define INSTR_VRS_VRRD 6, { V_8,R_12,D_20,B_16,0,0 } /* e.g. vlvgb */ ++#define INSTR_VRR_VRR 6, { V_8,R_12,R_16,0,0,0 } /* e.g. vlvgp */ ++#define INSTR_VRR_VVV0U 6, { V_8,V_12,V_16,U4_32,0,0 } /* e.g. vmrh */ ++#define INSTR_VRR_VVV0U0 6, { V_8,V_12,V_16,U4_24,0,0 } /* e.g. vfaeb */ ++#define INSTR_VRR_VVV0U1 6, { V_8,V_12,V_16,U4_OR1_24,0,0 } /* e.g. vfaebs*/ ++#define INSTR_VRR_VVV0U2 6, { V_8,V_12,V_16,U4_OR2_24,0,0 } /* e.g. vfaezb*/ ++#define INSTR_VRR_VVV0U3 6, { V_8,V_12,V_16,U4_OR3_24,0,0 } /* e.g. vfaezbs*/ ++#define INSTR_VRR_VVV 6, { V_8,V_12,V_16,0,0,0 } /* e.g. vmrhb */ ++#define INSTR_VRR_VVV2 6, { V_8,V_CP16_12,0,0,0,0 } /* e.g. vnot */ ++#define INSTR_VRR_VV0U 6, { V_8,V_12,U4_32,0,0,0 } /* e.g. vseg */ ++#define INSTR_VRR_VV0U2 6, { V_8,V_12,U4_24,0,0,0 } /* e.g. vistrb*/ ++#define INSTR_VRR_VV0UU 6, { V_8,V_12,U4_28,U4_24,0,0 } /* e.g. vcdgb */ ++#define INSTR_VRR_VV0UU8 6, { V_8,V_12,U4_OR8_28,U4_24,0,0 } /* e.g. wcdgb */ ++#define INSTR_VRR_VV 6, { V_8,V_12,0,0,0,0 } /* e.g. vsegb */ ++#define INSTR_VRR_VVVUU0V 6, { V_8,V_12,V_16,V_32,U4_20,U4_24 } /* e.g. vstrc */ ++#define INSTR_VRR_VVVU0V 6, { V_8,V_12,V_16,V_32,U4_20,0 } /* e.g. vac */ ++#define INSTR_VRR_VVVU0VB 6, { V_8,V_12,V_16,V_32,U4_24,0 } /* e.g. vstrcb*/ ++#define INSTR_VRR_VVVU0VB1 6, { V_8,V_12,V_16,V_32,U4_OR1_24,0 } /* e.g. vstrcbs*/ ++#define INSTR_VRR_VVVU0VB2 6, { V_8,V_12,V_16,V_32,U4_OR2_24,0 } /* e.g. vstrczb*/ ++#define INSTR_VRR_VVVU0VB3 6, { V_8,V_12,V_16,V_32,U4_OR3_24,0 } /* e.g. vstrczbs*/ ++#define INSTR_VRR_VVV0V 6, { V_8,V_12,V_16,V_32,0,0 } /* e.g. vacq */ ++#define INSTR_VRR_VVV0U0U 6, { V_8,V_12,V_16,U4_32,U4_24,0 } /* e.g. vfae */ ++#define INSTR_VRR_VVVV 6, { V_8,V_12,V_16,V_32,0,0 } /* e.g. vfmadb*/ ++#define INSTR_VRR_VVV0UUU 6, { V_8,V_12,V_16,U4_32,U4_28,U4_24 }/* e.g. vfch */ ++#define INSTR_VRR_VVV0UU 6, { V_8,V_12,V_16,U4_32,U4_28,0 } /* e.g. vfa */ ++#define INSTR_VRR_VV0UUU 6, { V_8,V_12,U4_32,U4_28,U4_24,0 } /* e.g. vcdg */ ++#define INSTR_VRR_VVVU0UV 6, { V_8,V_12,V_16,V_32,U4_28,U4_20 } /* e.g. vfma */ ++#define INSTR_VRR_VV0U0U 6, { V_8,V_12,U4_32,U4_24,0,0 } /* e.g. vistr */ ++ ++#define MASK_E { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_IE_UU { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } ++#define MASK_MII_UPP { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RIE_RRP { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RIE_RRPU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RIE_RRP0 { 0xff, 0x00, 0x00, 0x00, 0xf0, 0xff } ++#define MASK_RIE_RRI0 { 0xff, 0x00, 0x00, 0x00, 0xf0, 0xff } ++#define MASK_RIE_RUPI { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RIE_R0PI { 0xff, 0x00, 0x00, 0x00, 0xf0, 0xff } ++#define MASK_RIE_RUPU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RIE_R0PU { 0xff, 0x00, 0x00, 0x00, 0xf0, 0xff } ++#define MASK_RIE_R0IU { 0xff, 0x0f, 0x00, 0x00, 0x0f, 0xff } ++#define MASK_RIE_R0I0 { 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff } ++#define MASK_RIE_R0UU { 0xff, 0x0f, 0x00, 0x00, 0x0f, 0xff } ++#define MASK_RIE_R0U0 { 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff } ++#define MASK_RIE_RRUUU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RIL_0P { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RIL_RP { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RIL_UP { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RIL_RI { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RIL_RU { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RI_0P { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RI_RI { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RI_RP { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RI_RU { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RI_UP { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RIS_RURDI { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RIS_R0RDI { 0xff, 0x0f, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RIS_RURDU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RIS_R0RDU { 0xff, 0x0f, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RRE_00 { 0xff, 0xff, 0xff, 0xff, 0x00, 0x00 } ++#define MASK_RRE_0R { 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00 } ++#define MASK_RRE_AA { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } ++#define MASK_RRE_AR { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } ++#define MASK_RRE_F0 { 0xff, 0xff, 0xff, 0x0f, 0x00, 0x00 } ++#define MASK_RRE_FE0 { 0xff, 0xff, 0xff, 0x0f, 0x00, 0x00 } ++#define MASK_RRE_FF { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } ++#define MASK_RRE_FEF { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } ++#define MASK_RRE_FFE { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } ++#define MASK_RRE_FEFE { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } ++#define MASK_RRE_R0 { 0xff, 0xff, 0xff, 0x0f, 0x00, 0x00 } ++#define MASK_RRE_RA { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } ++#define MASK_RRE_RF { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } ++#define MASK_RRE_RFE { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } ++#define MASK_RRE_RR { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } ++#define MASK_RRE_RER { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } ++#define MASK_RRE_RERE { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } ++#define MASK_RRE_FR { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } ++#define MASK_RRE_FER { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } ++#define MASK_RRF_F0FF { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } ++#define MASK_RRF_FE0FF { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } ++#define MASK_RRF_F0FF2 { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } ++#define MASK_RRF_F0FR { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } ++#define MASK_RRF_FE0FER { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } ++#define MASK_RRF_FUFF { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RRF_FEUFEFE { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RRF_FUFF2 { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } + #define MASK_RRF_FEUFEFE2 { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RRF_RURR { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RRF_RURR2 { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RRF_R0RR { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RRF_R0RR2 { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RRF_RMRR { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RRF_U0FF { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } +-#define MASK_RRF_U0FEFE { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } +-#define MASK_RRF_U0RF { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } +-#define MASK_RRF_U0RFE { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } +-#define MASK_RRF_UUFF { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RRF_UUFFE { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RRF_UUFEFE { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RRF_0UFF { 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00 } +-#define MASK_RRF_0UFEF { 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00 } +-#define MASK_RRF_FFRU { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RRF_FEFERU { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RRF_M0RR { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } +-#define MASK_RRF_M0RER { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } +-#define MASK_RRF_M0RERE { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } +-#define MASK_RRF_U0RR { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } +-#define MASK_RRF_00RR { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } +-#define MASK_RRF_UUFR { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RRF_UUFER { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RRF_UURF { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RRF_UURFE { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RR_0R { 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RR_0R_OPT { 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RR_FF { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RR_FEF { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RR_FFE { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RR_FEFE { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RR_R0 { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RR_RR { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RR_RER { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RR_U0 { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RR_UR { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RRR_F0FF { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } +-#define MASK_RRR_FE0FEFE { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } +-#define MASK_RRS_RRRDU { 0xff, 0x00, 0x00, 0x00, 0x0f, 0xff } +-#define MASK_RRS_RRRD0 { 0xff, 0x00, 0x00, 0x00, 0xff, 0xff } +-#define MASK_RSE_RRRD { 0xff, 0x00, 0x00, 0x00, 0xff, 0xff } +-#define MASK_RSE_RERERD { 0xff, 0x00, 0x00, 0x00, 0xff, 0xff } +-#define MASK_RSE_CCRD { 0xff, 0x00, 0x00, 0x00, 0xff, 0xff } +-#define MASK_RSE_RURD { 0xff, 0x00, 0x00, 0x00, 0xff, 0xff } +-#define MASK_RSL_R0RD { 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff } +-#define MASK_RSL_LRDFU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RSL_LRDFEU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RSI_RRP { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RS_AARD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RS_CCRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RS_R0RD { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RS_RE0RD { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RS_RRRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RS_RERERD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RS_RURD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RSY_RRRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RSY_RERERD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RSY_RURD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RSY_RURD2 { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RSY_R0RD { 0xff, 0x0f, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RSY_AARD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RSY_CCRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RXE_FRRD { 0xff, 0x00, 0x00, 0x00, 0xff, 0xff } +-#define MASK_RXE_FERRD { 0xff, 0x00, 0x00, 0x00, 0xff, 0xff } +-#define MASK_RXE_RRRD { 0xff, 0x00, 0x00, 0x00, 0xff, 0xff } +-#define MASK_RXE_RERRD { 0xff, 0x00, 0x00, 0x00, 0xff, 0xff } +-#define MASK_RXF_FRRDF { 0xff, 0x00, 0x00, 0x00, 0x0f, 0xff } +-#define MASK_RXF_FRRDFE { 0xff, 0x00, 0x00, 0x00, 0x0f, 0xff } +-#define MASK_RXF_FERRDFE { 0xff, 0x00, 0x00, 0x00, 0x0f, 0xff } +-#define MASK_RXF_RRRDR { 0xff, 0x00, 0x00, 0x00, 0x0f, 0xff } +-#define MASK_RXY_RRRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RXY_RERRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RXY_FRRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RXY_URRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_RX_0RRD { 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RX_0RRD_OPT { 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RX_FRRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RX_FERRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RX_RRRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RX_RERRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_RX_URRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_SI_URD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_SIY_URD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_SIY_IRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } +-#define MASK_SIL_RDI { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_SIL_RDU { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_SMI_U0RDP { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_SSE_RDRD { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_SS_L0RDRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_SS_L2RDRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_SS_LIRDRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_SS_LLRDRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_SS_RRRDRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_SS_RRRDRD2 { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_SS_RRRDRD3 { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_SSF_RRDRD { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_SSF_RRDRD2 { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_SSF_RERDRD2 { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } +-#define MASK_S_00 { 0xff, 0xff, 0xff, 0xff, 0x00, 0x00 } +-#define MASK_S_RD { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } +- ++#define MASK_RRF_RURR { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RRF_RURR2 { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RRF_R0RR { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RRF_R0RR2 { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RRF_U0FF { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } ++#define MASK_RRF_U0FEFE { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } ++#define MASK_RRF_U0RF { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } ++#define MASK_RRF_U0RFE { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } ++#define MASK_RRF_UUFF { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RRF_UUFFE { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RRF_UUFEFE { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RRF_0UFF { 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00 } ++#define MASK_RRF_0UFEF { 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00 } ++#define MASK_RRF_FFRU { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RRF_FEFERU { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RRF_U0RR { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } ++#define MASK_RRF_U0RER { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } ++#define MASK_RRF_U0RERE { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } ++#define MASK_RRF_00RR { 0xff, 0xff, 0xff, 0x00, 0x00, 0x00 } ++#define MASK_RRF_UUFR { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RRF_UUFER { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RRF_UURF { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RRF_UURFE { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RR_0R { 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RR_FF { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RR_FEF { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RR_FFE { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RR_FEFE { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RR_R0 { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RR_RR { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RR_RER { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RR_U0 { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RR_UR { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RRR_F0FF { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } ++#define MASK_RRR_FE0FEFE { 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00 } ++#define MASK_RRS_RRRDU { 0xff, 0x00, 0x00, 0x00, 0x0f, 0xff } ++#define MASK_RRS_RRRD0 { 0xff, 0x00, 0x00, 0x00, 0xff, 0xff } ++#define MASK_RSE_RRRD { 0xff, 0x00, 0x00, 0x00, 0xff, 0xff } ++#define MASK_RSE_RERERD { 0xff, 0x00, 0x00, 0x00, 0xff, 0xff } ++#define MASK_RSE_CCRD { 0xff, 0x00, 0x00, 0x00, 0xff, 0xff } ++#define MASK_RSE_RURD { 0xff, 0x00, 0x00, 0x00, 0xff, 0xff } ++#define MASK_RSL_R0RD { 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff } ++#define MASK_RSL_LRDFU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RSL_LRDFEU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RSI_RRP { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RS_AARD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RS_CCRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RS_R0RD { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RS_RE0RD { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RS_RRRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RS_RERERD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RS_RURD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RSY_RRRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RSY_RERERD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RSY_RURD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RSY_RURD2 { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RSY_R0RD { 0xff, 0x0f, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RSY_AARD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RSY_CCRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RXE_FRRD { 0xff, 0x00, 0x00, 0x00, 0xff, 0xff } ++#define MASK_RXE_FERRD { 0xff, 0x00, 0x00, 0x00, 0xff, 0xff } ++#define MASK_RXE_RRRD { 0xff, 0x00, 0x00, 0x00, 0xff, 0xff } ++#define MASK_RXE_RRRDU { 0xff, 0x00, 0x00, 0x00, 0x0f, 0xff } ++#define MASK_RXE_RERRD { 0xff, 0x00, 0x00, 0x00, 0xff, 0xff } ++#define MASK_RXF_FRRDF { 0xff, 0x00, 0x00, 0x00, 0x0f, 0xff } ++#define MASK_RXF_FRRDFE { 0xff, 0x00, 0x00, 0x00, 0x0f, 0xff } ++#define MASK_RXF_FERRDFE { 0xff, 0x00, 0x00, 0x00, 0x0f, 0xff } ++#define MASK_RXF_RRRDR { 0xff, 0x00, 0x00, 0x00, 0x0f, 0xff } ++#define MASK_RXY_RRRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RXY_RERRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RXY_FRRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RXY_URRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_RX_0RRD { 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RX_FRRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RX_FERRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RX_RRRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RX_RERRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_RX_URRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_SI_URD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_SIY_URD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_SIY_IRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_SIL_RDI { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_SIL_RDU { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_SMI_U0RDP { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_SSE_RDRD { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_SS_L0RDRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_SS_L2RDRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_SS_LIRDRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_SS_LLRDRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_SS_RRRDRD { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_SS_RRRDRD2 { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_SS_RRRDRD3 { 0xff, 0x00, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_SSF_RRDRD { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_SSF_RERDRD2 { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_S_00 { 0xff, 0xff, 0xff, 0xff, 0x00, 0x00 } ++#define MASK_S_RD { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } ++#define MASK_VRV_VVXRDU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_VRI_V0U { 0xff, 0x0f, 0x00, 0x00, 0xf0, 0xff } ++#define MASK_VRI_V { 0xff, 0x0f, 0xff, 0xff, 0xf0, 0xff } ++#define MASK_VRI_V0UUU { 0xff, 0x0f, 0x00, 0x00, 0x00, 0xff } ++#define MASK_VRI_V0UU { 0xff, 0x0f, 0x00, 0x00, 0xf0, 0xff } ++#define MASK_VRI_VVUU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_VRI_VVU { 0xff, 0x00, 0x00, 0x00, 0xf0, 0xff } ++#define MASK_VRI_VVU2 { 0xff, 0x00, 0x00, 0x0f, 0xf0, 0xff } ++#define MASK_VRI_V0IU { 0xff, 0x0f, 0x00, 0x00, 0x00, 0xff } ++#define MASK_VRI_V0I { 0xff, 0x0f, 0x00, 0x00, 0xf0, 0xff } ++#define MASK_VRI_VVV0UU { 0xff, 0x00, 0x0f, 0x00, 0x00, 0xff } ++#define MASK_VRI_VVV0U { 0xff, 0x00, 0x0f, 0x00, 0xf0, 0xff } ++#define MASK_VRI_VVUUU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_VRX_VRRD { 0xff, 0x00, 0x00, 0x00, 0xf0, 0xff } ++#define MASK_VRX_VV { 0xff, 0x00, 0xff, 0xff, 0xf0, 0xff } ++#define MASK_VRX_VRRDU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_VRS_RVRDU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_VRS_RVRD { 0xff, 0x00, 0x00, 0x00, 0xf0, 0xff } ++#define MASK_VRS_VVRDU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_VRS_VVRD { 0xff, 0x00, 0x00, 0x00, 0xf0, 0xff } ++#define MASK_VRS_VRRDU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } ++#define MASK_VRS_VRRD { 0xff, 0x00, 0x00, 0x00, 0xf0, 0xff } ++#define MASK_VRR_VRR { 0xff, 0x00, 0x0f, 0xff, 0xf0, 0xff } ++#define MASK_VRR_VVV0U { 0xff, 0x00, 0x0f, 0xff, 0x00, 0xff } ++#define MASK_VRR_VVV0U0 { 0xff, 0x00, 0x0f, 0x0f, 0xf0, 0xff } ++#define MASK_VRR_VVV0U1 { 0xff, 0x00, 0x0f, 0x1f, 0xf0, 0xff } ++#define MASK_VRR_VVV0U2 { 0xff, 0x00, 0x0f, 0x2f, 0xf0, 0xff } ++#define MASK_VRR_VVV0U3 { 0xff, 0x00, 0x0f, 0x3f, 0xf0, 0xff } ++#define MASK_VRR_VVV { 0xff, 0x00, 0x0f, 0xff, 0xf0, 0xff } ++#define MASK_VRR_VVV2 { 0xff, 0x00, 0x0f, 0xff, 0xf0, 0xff } ++#define MASK_VRR_VVV0V { 0xff, 0x00, 0x0f, 0xff, 0x00, 0xff } ++#define MASK_VRR_VV0U { 0xff, 0x00, 0xff, 0xff, 0x00, 0xff } ++#define MASK_VRR_VV0U2 { 0xff, 0x00, 0xff, 0x0f, 0xf0, 0xff } ++#define MASK_VRR_VV0UU { 0xff, 0x00, 0xff, 0x00, 0xf0, 0xff } ++#define MASK_VRR_VV0UU8 { 0xff, 0x00, 0xff, 0x08, 0xf0, 0xff } ++#define MASK_VRR_VV { 0xff, 0x00, 0xff, 0xff, 0xf0, 0xff } ++#define MASK_VRR_VVVUU0V { 0xff, 0x00, 0x00, 0x0f, 0x00, 0xff } ++#define MASK_VRR_VVVU0V { 0xff, 0x00, 0x00, 0xff, 0x00, 0xff } ++#define MASK_VRR_VVVU0VB { 0xff, 0x00, 0x0f, 0x0f, 0x00, 0xff } ++#define MASK_VRR_VVVU0VB1 { 0xff, 0x00, 0x0f, 0x1f, 0x00, 0xff } ++#define MASK_VRR_VVVU0VB2 { 0xff, 0x00, 0x0f, 0x2f, 0x00, 0xff } ++#define MASK_VRR_VVVU0VB3 { 0xff, 0x00, 0x0f, 0x3f, 0x00, 0xff } ++#define MASK_VRR_VVV0U0U { 0xff, 0x00, 0x0f, 0x0f, 0x00, 0xff } ++#define MASK_VRR_VVVV { 0xff, 0x00, 0x0f, 0xff, 0x00, 0xff } ++#define MASK_VRR_VVV0UUU { 0xff, 0x00, 0x0f, 0x00, 0x00, 0xff } ++#define MASK_VRR_VVV0UU { 0xff, 0x00, 0x0f, 0xf0, 0x00, 0xff } ++#define MASK_VRR_VV0UUU { 0xff, 0x00, 0xff, 0x00, 0x00, 0xff } ++#define MASK_VRR_VVVU0UV { 0xff, 0x00, 0x00, 0xf0, 0x00, 0xff } ++#define MASK_VRR_VV0U0U { 0xff, 0x00, 0xff, 0x0f, 0x00, 0xff } + + /* The opcode formats table (blueprints for .insn pseudo mnemonic). */ + + const struct s390_opcode s390_opformats[] = + { +- { "e", OP8(0x00LL), MASK_E, INSTR_E, 3, 0 }, +- { "ri", OP8(0x00LL), MASK_RI_RI, INSTR_RI_RI, 3, 0 }, +- { "rie", OP8(0x00LL), MASK_RIE_RRP, INSTR_RIE_RRP, 3, 0 }, +- { "ril", OP8(0x00LL), MASK_RIL_RP, INSTR_RIL_RP, 3, 0 }, +- { "rilu", OP8(0x00LL), MASK_RIL_RU, INSTR_RIL_RU, 3, 0 }, +- { "ris", OP8(0x00LL), MASK_RIS_RURDI, INSTR_RIS_RURDI,3, 6 }, +- { "rr", OP8(0x00LL), MASK_RR_RR, INSTR_RR_RR, 3, 0 }, +- { "rre", OP8(0x00LL), MASK_RRE_RR, INSTR_RRE_RR, 3, 0 }, +- { "rrf", OP8(0x00LL), MASK_RRF_RURR, INSTR_RRF_RURR, 3, 0 }, +- { "rrs", OP8(0x00LL), MASK_RRS_RRRDU, INSTR_RRS_RRRDU,3, 6 }, +- { "rs", OP8(0x00LL), MASK_RS_RRRD, INSTR_RS_RRRD, 3, 0 }, +- { "rse", OP8(0x00LL), MASK_RSE_RRRD, INSTR_RSE_RRRD, 3, 0 }, +- { "rsi", OP8(0x00LL), MASK_RSI_RRP, INSTR_RSI_RRP, 3, 0 }, +- { "rsy", OP8(0x00LL), MASK_RSY_RRRD, INSTR_RSY_RRRD, 3, 3 }, +- { "rx", OP8(0x00LL), MASK_RX_RRRD, INSTR_RX_RRRD, 3, 0 }, +- { "rxe", OP8(0x00LL), MASK_RXE_RRRD, INSTR_RXE_RRRD, 3, 0 }, +- { "rxf", OP8(0x00LL), MASK_RXF_RRRDR, INSTR_RXF_RRRDR,3, 0 }, +- { "rxy", OP8(0x00LL), MASK_RXY_RRRD, INSTR_RXY_RRRD, 3, 3 }, +- { "s", OP8(0x00LL), MASK_S_RD, INSTR_S_RD, 3, 0 }, +- { "si", OP8(0x00LL), MASK_SI_URD, INSTR_SI_URD, 3, 0 }, +- { "siy", OP8(0x00LL), MASK_SIY_URD, INSTR_SIY_URD, 3, 3 }, +- { "sil", OP8(0x00LL), MASK_SIL_RDI, INSTR_SIL_RDI, 3, 6 }, +- { "ss", OP8(0x00LL), MASK_SS_RRRDRD, INSTR_SS_RRRDRD,3, 0 }, +- { "sse", OP8(0x00LL), MASK_SSE_RDRD, INSTR_SSE_RDRD, 3, 0 }, +- { "ssf", OP8(0x00LL), MASK_SSF_RRDRD, INSTR_SSF_RRDRD,3, 0 }, ++ { "e", OP8(0x00LL), MASK_E, INSTR_E, 3, 0 ,0 }, ++ { "ri", OP8(0x00LL), MASK_RI_RI, INSTR_RI_RI, 3, 0 ,0 }, ++ { "rie", OP8(0x00LL), MASK_RIE_RRP, INSTR_RIE_RRP, 3, 0 ,0 }, ++ { "ril", OP8(0x00LL), MASK_RIL_RP, INSTR_RIL_RP, 3, 0 ,0 }, ++ { "rilu", OP8(0x00LL), MASK_RIL_RU, INSTR_RIL_RU, 3, 0 ,0 }, ++ { "ris", OP8(0x00LL), MASK_RIS_RURDI, INSTR_RIS_RURDI,3, 6 ,0 }, ++ { "rr", OP8(0x00LL), MASK_RR_RR, INSTR_RR_RR, 3, 0 ,0 }, ++ { "rre", OP8(0x00LL), MASK_RRE_RR, INSTR_RRE_RR, 3, 0 ,0 }, ++ { "rrf", OP8(0x00LL), MASK_RRF_RURR, INSTR_RRF_RURR, 3, 0 ,0 }, ++ { "rrs", OP8(0x00LL), MASK_RRS_RRRDU, INSTR_RRS_RRRDU,3, 6 ,0 }, ++ { "rs", OP8(0x00LL), MASK_RS_RRRD, INSTR_RS_RRRD, 3, 0 ,0 }, ++ { "rse", OP8(0x00LL), MASK_RSE_RRRD, INSTR_RSE_RRRD, 3, 0 ,0 }, ++ { "rsi", OP8(0x00LL), MASK_RSI_RRP, INSTR_RSI_RRP, 3, 0 ,0 }, ++ { "rsy", OP8(0x00LL), MASK_RSY_RRRD, INSTR_RSY_RRRD, 3, 3 ,0 }, ++ { "rx", OP8(0x00LL), MASK_RX_RRRD, INSTR_RX_RRRD, 3, 0 ,0 }, ++ { "rxe", OP8(0x00LL), MASK_RXE_RRRD, INSTR_RXE_RRRD, 3, 0 ,0 }, ++ { "rxf", OP8(0x00LL), MASK_RXF_RRRDR, INSTR_RXF_RRRDR,3, 0 ,0 }, ++ { "rxy", OP8(0x00LL), MASK_RXY_RRRD, INSTR_RXY_RRRD, 3, 3 ,0 }, ++ { "s", OP8(0x00LL), MASK_S_RD, INSTR_S_RD, 3, 0 ,0 }, ++ { "si", OP8(0x00LL), MASK_SI_URD, INSTR_SI_URD, 3, 0 ,0 }, ++ { "siy", OP8(0x00LL), MASK_SIY_URD, INSTR_SIY_URD, 3, 3 ,0 }, ++ { "sil", OP8(0x00LL), MASK_SIL_RDI, INSTR_SIL_RDI, 3, 6 ,0 }, ++ { "ss", OP8(0x00LL), MASK_SS_RRRDRD, INSTR_SS_RRRDRD,3, 0 ,0 }, ++ { "sse", OP8(0x00LL), MASK_SSE_RDRD, INSTR_SSE_RDRD, 3, 0 ,0 }, ++ { "ssf", OP8(0x00LL), MASK_SSF_RRDRD, INSTR_SSF_RRDRD,3, 0 ,0 }, + }; + + const int s390_num_opformats = +diff --git a/opcodes/s390-opc.txt b/opcodes/s390-opc.txt +index 5db1703..2a5e1dd 100644 +--- a/opcodes/s390-opc.txt ++++ b/opcodes/s390-opc.txt +@@ -262,10 +262,10 @@ a700 tmlh RI_RU "test under mask low high" g5 esa,zarch + a700 tmh RI_RU "test under mask high" g5 esa,zarch + a701 tmll RI_RU "test under mask low low" g5 esa,zarch + a701 tml RI_RU "test under mask low" g5 esa,zarch +-0700 nopr RR_0R_OPT "no operation" g5 esa,zarch ++0700 nopr RR_0R "no operation" g5 esa,zarch optparm + 0700 b*8r RR_0R "conditional branch" g5 esa,zarch + 07f0 br RR_0R "unconditional branch" g5 esa,zarch +-4700 nop RX_0RRD_OPT "no operation" g5 esa,zarch ++4700 nop RX_0RRD "no operation" g5 esa,zarch optparm + 4700 b*8 RX_0RRD "conditional branch" g5 esa,zarch + 47f0 b RX_0RRD "unconditional branch" g5 esa,zarch + a704 j*8 RI_0P "conditional jump" g5 esa,zarch +@@ -298,7 +298,7 @@ b30d debr RRE_FF "divide short bfp" g5 esa,zarch + ed000000000d deb RXE_FRRD "divide short bfp" g5 esa,zarch + b35b didbr RRF_FUFF "divide to integer long bfp" g5 esa,zarch + b353 diebr RRF_FUFF "divide to integer short bfp" g5 esa,zarch +-b38c efpc RRE_RR_OPT "extract fpc" g5 esa,zarch ++b38c efpc RRE_RR "extract fpc" g5 esa,zarch optparm + b342 ltxbr RRE_FEFE "load and test extended bfp" g5 esa,zarch + b312 ltdbr RRE_FF "load and test long bfp" g5 esa,zarch + b302 ltebr RRE_FF "load and test short bfp" g5 esa,zarch +@@ -341,7 +341,7 @@ b31f msdbr RRF_F0FF "multiply and subtract long bfp" g5 esa,zarch + ed000000001f msdb RXF_FRRDF "multiply and subtract long bfp" g5 esa,zarch + b30f msebr RRF_F0FF "multiply and subtract short bfp" g5 esa,zarch + ed000000000f mseb RXF_FRRDF "multiply and subtract short bfp" g5 esa,zarch +-b384 sfpc RRE_RR_OPT "set fpc" g5 esa,zarch ++b384 sfpc RRE_RR "set fpc" g5 esa,zarch optparm + b299 srnm S_RD "set rounding mode" g5 esa,zarch + b316 sqxbr RRE_FEFE "square root extended bfp" g5 esa,zarch + b315 sqdbr RRE_FF "square root long bfp" g5 esa,zarch +@@ -765,21 +765,21 @@ c800 mvcos SSF_RRDRD "move with optional specifications" z9-109 zarch + # z9-109 load page-table-entry address instruction + b9aa lptea RRF_RURR2 "load page-table-entry address" z9-109 zarch + # z9-109 conditional sske facility, sske instruction entered twice +-b22b sske RRF_M0RR "set storage key extended" z9-109 zarch ++b22b sske RRF_U0RR "set storage key extended" z9-109 zarch optparm + # z9-109 etf2-enhancement facility, instructions entered twice +-b993 troo RRF_M0RERE "translate one to one" z9-109 esa,zarch +-b992 trot RRF_M0RERE "translate one to two" z9-109 esa,zarch +-b991 trto RRF_M0RERE "translate two to one" z9-109 esa,zarch +-b990 trtt RRF_M0RERE "translate two to two" z9-109 esa,zarch ++b993 troo RRF_U0RERE "translate one to one" z9-109 esa,zarch optparm ++b992 trot RRF_U0RERE "translate one to two" z9-109 esa,zarch optparm ++b991 trto RRF_U0RERE "translate two to one" z9-109 esa,zarch optparm ++b990 trtt RRF_U0RERE "translate two to two" z9-109 esa,zarch optparm + # z9-109 etf3-enhancement facility, some instructions entered twice +-b9b1 cu24 RRF_M0RERE "convert utf-16 to utf-32" z9-109 zarch +-b2a6 cu21 RRF_M0RERE "convert utf-16 to utf-8" z9-109 zarch +-b2a6 cuutf RRF_M0RERE "convert unicode to utf-8" z9-109 zarch ++b9b1 cu24 RRF_U0RERE "convert utf-16 to utf-32" z9-109 zarch optparm ++b2a6 cu21 RRF_U0RERE "convert utf-16 to utf-8" z9-109 zarch optparm ++b2a6 cuutf RRF_U0RERE "convert unicode to utf-8" z9-109 zarch optparm + b9b3 cu42 RRE_RERE "convert utf-32 to utf-16" z9-109 zarch + b9b2 cu41 RRE_RERE "convert utf-32 to utf-8" z9-109 zarch +-b2a7 cu12 RRF_M0RERE "convert utf-8 to utf-16" z9-109 zarch +-b2a7 cutfu RRF_M0RERE "convert utf-8 to unicode" z9-109 zarch +-b9b0 cu14 RRF_M0RERE "convert utf-8 to utf-32" z9-109 zarch ++b2a7 cu12 RRF_U0RERE "convert utf-8 to utf-16" z9-109 zarch optparm ++b2a7 cutfu RRF_U0RERE "convert utf-8 to unicode" z9-109 zarch optparm ++b9b0 cu14 RRF_U0RERE "convert utf-8 to utf-32" z9-109 zarch optparm + b9be srstu RRE_RR "search string unicode" z9-109 zarch + d0 trtr SS_L0RDRD "tranlate and test reverse" z9-109 zarch + # z9-109 unnormalized hfp multiply & multiply and add +@@ -963,8 +963,8 @@ c600 exrl RIL_RP "execute relative long" z10 zarch + af00 mc SI_URD "monitor call" z10 zarch + b9a2 ptf RRE_R0 "perform topology function" z10 zarch + b9af pfmf RRE_RR "perform frame management function" z10 zarch +-b9bf trte RRF_M0RER "translate and test extended" z10 zarch +-b9bd trtre RRF_M0RER "translate and test reverse extended" z10 zarch ++b9bf trte RRF_U0RER "translate and test extended" z10 zarch optparm ++b9bd trtre RRF_U0RER "translate and test reverse extended" z10 zarch optparm + b2ed ecpga RRE_RR "extract coprocessor-group address" z10 zarch + b2e4 ecctr RRE_RR "extract cpu counter" z10 zarch + b2e5 epctr RRE_RR "extract peripheral counter" z10 zarch +@@ -1128,7 +1128,7 @@ c7 bpp SMI_U0RDP "branch prediction preload" zEC12 zarch + c5 bprp MII_UPP "branch prediction relative preload" zEC12 zarch + b2e8 ppa RRF_U0RR "perform processor assist" zEC12 zarch + b2fa niai IE_UU "next instruction access intent" zEC12 zarch +-b98f crdte RRF_RMRR "compare and replace DAT table entry" zEC12 zarch ++b98f crdte RRF_RURR2 "compare and replace DAT table entry" zEC12 zarch optparm + e3000000009f lat RXY_RRRD "load and trap 32 bit" zEC12 zarch + e30000000085 lgat RXY_RRRD "load and trap 64 bit" zEC12 zarch + e300000000c8 lfhat RXY_RRRD "load high and trap" zEC12 zarch +@@ -1143,3 +1143,516 @@ ed00000000aa cdzt RSL_LRDFU "convert from zoned long" zEC12 zarch + ed00000000ab cxzt RSL_LRDFEU "convert from zoned extended" zEC12 zarch + ed00000000a8 czdt RSL_LRDFU "convert to zoned long" zEC12 zarch + ed00000000a9 czxt RSL_LRDFEU "convert to zoned extended" zEC12 zarch ++ ++# The new instructions of IBM z13 ++ ++e70000000027 lcbb RXE_RRRDU "load count to block boundary" z13 zarch ++ ++# Chapter 21 ++e70000000013 vgef VRV_VVXRDU "vector gather element 4 byte elements" z13 zarch ++e70000000012 vgeg VRV_VVXRDU "vector gather element 8 byte elements" z13 zarch ++e70000000044 vgbm VRI_V0U "vector generate byte mask" z13 zarch ++e70000000044 vzero VRI_V "vector set to zero" z13 zarch ++e700ffff0044 vone VRI_V "vector set to ones" z13 zarch ++e70000000046 vgm VRI_V0UUU "vector generate mask" z13 zarch ++e70000000046 vgmb VRI_V0UU "vector generate mask byte" z13 zarch ++e70000001046 vgmh VRI_V0UU "vector generate mask halfword" z13 zarch ++e70000002046 vgmf VRI_V0UU "vector generate mask word" z13 zarch ++e70000003046 vgmg VRI_V0UU "vector generate mask double word" z13 zarch ++e70000000006 vl VRX_VRRD "vector memory load" z13 zarch ++e70000000056 vlr VRX_VV "vector register load" z13 zarch ++e70000000005 vlrep VRX_VRRDU "vector load and replicate" z13 zarch ++e70000000005 vlrepb VRX_VRRD "vector load and replicate byte elements" z13 zarch ++e70000001005 vlreph VRX_VRRD "vector load and replicate halfword elements" z13 zarch ++e70000002005 vlrepf VRX_VRRD "vector load and replicate word elements" z13 zarch ++e70000003005 vlrepg VRX_VRRD "vector load and replicate double word elements" z13 zarch ++e70000000000 vleb VRX_VRRDU "vector load byte element" z13 zarch ++e70000000001 vleh VRX_VRRDU "vector load halfword element" z13 zarch ++e70000000003 vlef VRX_VRRDU "vector load word element" z13 zarch ++e70000000002 vleg VRX_VRRDU "vector load double word element" z13 zarch ++e70000000040 vleib VRI_V0IU "vector load byte element immediate" z13 zarch ++e70000000041 vleih VRI_V0IU "vector load halfword element immediate" z13 zarch ++e70000000043 vleif VRI_V0IU "vector load word element immediate" z13 zarch ++e70000000042 vleig VRI_V0IU "vector load double word element immediate" z13 zarch ++e70000000021 vlgv VRS_RVRDU "vector load gr from vr element" z13 zarch ++e70000000021 vlgvb VRS_RVRD "vector load gr from vr byte element" z13 zarch ++e70000001021 vlgvh VRS_RVRD "vector load gr from vr halfword element" z13 zarch ++e70000002021 vlgvf VRS_RVRD "vector load gr from vr word element" z13 zarch ++e70000003021 vlgvg VRS_RVRD "vector load gr from vr double word element" z13 zarch ++e70000000004 vllez VRX_VRRDU "vector load logical element and zero" z13 zarch ++e70000000004 vllezb VRX_VRRD "vector load logical byte element and zero" z13 zarch ++e70000001004 vllezh VRX_VRRD "vector load logical halfword element and zero" z13 zarch ++e70000002004 vllezf VRX_VRRD "vector load logical word element and zero" z13 zarch ++e70000003004 vllezg VRX_VRRD "vector load logical double word element and zero" z13 zarch ++e70000000036 vlm VRS_VVRD "vector load multiple" z13 zarch ++e70000000007 vlbb VRX_VRRDU "vector load to block boundary" z13 zarch ++e70000000022 vlvg VRS_VRRDU "vector load VR element from GR" z13 zarch ++e70000000022 vlvgb VRS_VRRD "vector load VR byte element from GR" z13 zarch ++e70000001022 vlvgh VRS_VRRD "vector load VR halfword element from GR" z13 zarch ++e70000002022 vlvgf VRS_VRRD "vector load VR word element from GR" z13 zarch ++e70000003022 vlvgg VRS_VRRD "vector load VR double word element from GR" z13 zarch ++e70000000062 vlvgp VRR_VRR "vector load VR from GRs disjoint" z13 zarch ++e70000000037 vll VRS_VRRD "vector load with length" z13 zarch ++e70000000061 vmrh VRR_VVV0U "vector merge high" z13 zarch ++e70000000061 vmrhb VRR_VVV "vector merge high byte" z13 zarch ++e70000001061 vmrhh VRR_VVV "vector merge high halfword" z13 zarch ++e70000002061 vmrhf VRR_VVV "vector merge high word" z13 zarch ++e70000003061 vmrhg VRR_VVV "vector merge high double word" z13 zarch ++e70000000060 vmrl VRR_VVV0U "vector merge low" z13 zarch ++e70000000060 vmrlb VRR_VVV "vector merge low byte" z13 zarch ++e70000001060 vmrlh VRR_VVV "vector merge low halfword" z13 zarch ++e70000002060 vmrlf VRR_VVV "vector merge low word" z13 zarch ++e70000003060 vmrlg VRR_VVV "vector merge low double word" z13 zarch ++e70000000094 vpk VRR_VVV0U "vector pack" z13 zarch ++e70000001094 vpkh VRR_VVV "vector pack halfword" z13 zarch ++e70000002094 vpkf VRR_VVV "vector pack word" z13 zarch ++e70000003094 vpkg VRR_VVV "vector pack double word" z13 zarch ++e70000000097 vpks VRR_VVV0U0U "vector pack saturate" z13 zarch ++e70000001097 vpksh VRR_VVV "vector pack saturate halfword" z13 zarch ++e70000002097 vpksf VRR_VVV "vector pack saturate word" z13 zarch ++e70000003097 vpksg VRR_VVV "vector pack saturate double word" z13 zarch ++e70000101097 vpkshs VRR_VVV "vector pack saturate halfword" z13 zarch ++e70000102097 vpksfs VRR_VVV "vector pack saturate word" z13 zarch ++e70000103097 vpksgs VRR_VVV "vector pack saturate double word" z13 zarch ++e70000000095 vpkls VRR_VVV0U0U "vector pack logical saturate" z13 zarch ++e70000001095 vpklsh VRR_VVV "vector pack logical saturate halfword" z13 zarch ++e70000002095 vpklsf VRR_VVV "vector pack logical saturate word" z13 zarch ++e70000003095 vpklsg VRR_VVV "vector pack logical saturate double word" z13 zarch ++e70000101095 vpklshs VRR_VVV "vector pack logical saturate halfword" z13 zarch ++e70000102095 vpklsfs VRR_VVV "vector pack logical saturate word" z13 zarch ++e70000103095 vpklsgs VRR_VVV "vector pack logical saturate double word" z13 zarch ++e7000000008c vperm VRR_VVV0V "vector permute" z13 zarch ++e70000000084 vpdi VRR_VVV0U "vector permute double word immediate" z13 zarch ++e7000000004d vrep VRI_VVUU "vector replicate" z13 zarch ++e7000000004d vrepb VRI_VVU "vector replicate byte" z13 zarch ++e7000000104d vreph VRI_VVU "vector replicate halfword" z13 zarch ++e7000000204d vrepf VRI_VVU "vector replicate word" z13 zarch ++e7000000304d vrepg VRI_VVU "vector replicate double word" z13 zarch ++e70000000045 vrepi VRI_V0IU "vector replicate immediate" z13 zarch ++e70000000045 vrepib VRI_V0I "vector replicate immediate byte" z13 zarch ++e70000001045 vrepih VRI_V0I "vector replicate immediate halfword" z13 zarch ++e70000002045 vrepif VRI_V0I "vector replicate immediate word" z13 zarch ++e70000003045 vrepig VRI_V0I "vector replicate immediate double word" z13 zarch ++e7000000001b vscef VRV_VVXRDU "vector scatter element 4 byte" z13 zarch ++e7000000001a vsceg VRV_VVXRDU "vector scatter element 8 byte" z13 zarch ++e7000000008d vsel VRR_VVV0V "vector select" z13 zarch ++e7000000005f vseg VRR_VV0U "vector sign extend to double word" z13 zarch ++e7000000005f vsegb VRR_VV "vector sign extend byte to double word" z13 zarch ++e7000000105f vsegh VRR_VV "vector sign extend halfword to double word" z13 zarch ++e7000000205f vsegf VRR_VV "vector sign extend word to double word" z13 zarch ++e7000000000e vst VRX_VRRD "vector store" z13 zarch ++e70000000008 vsteb VRX_VRRDU "vector store byte element" z13 zarch ++e70000000009 vsteh VRX_VRRDU "vector store halfword element" z13 zarch ++e7000000000b vstef VRX_VRRDU "vector store word element" z13 zarch ++e7000000000a vsteg VRX_VRRDU "vector store double word element" z13 zarch ++e7000000003e vstm VRS_VVRD "vector store multiple" z13 zarch ++e7000000003f vstl VRS_VRRD "vector store with length" z13 zarch ++e700000000d7 vuph VRR_VV0U "vector unpack high" z13 zarch ++e700000000d7 vuphb VRR_VV "vector unpack high byte" z13 zarch ++e700000010d7 vuphh VRR_VV "vector unpack high halfword" z13 zarch ++e700000020d7 vuphf VRR_VV "vector unpack high word" z13 zarch ++e700000000d5 vuplh VRR_VV0U "vector unpack logical high" z13 zarch ++e700000000d5 vuplhb VRR_VV "vector unpack logical high byte" z13 zarch ++e700000010d5 vuplhh VRR_VV "vector unpack logical high halfword" z13 zarch ++e700000020d5 vuplhf VRR_VV "vector unpack logical high word" z13 zarch ++e700000000d6 vupl VRR_VV0U "vector unpack low" z13 zarch ++e700000000d6 vuplb VRR_VV "vector unpack low byte" z13 zarch ++e700000010d6 vuplhw VRR_VV "vector unpack low halfword" z13 zarch ++e700000020d6 vuplf VRR_VV "vector unpack low word" z13 zarch ++e700000000d4 vupll VRR_VV0U "vector unpack logical low" z13 zarch ++e700000000d4 vupllb VRR_VV "vector unpack logical low byte" z13 zarch ++e700000010d4 vupllh VRR_VV "vector unpack logical low halfword" z13 zarch ++e700000020d4 vupllf VRR_VV "vector unpack logical low word" z13 zarch ++ ++# Chapter 22 ++e700000000f3 va VRR_VVV0U "vector add" z13 zarch ++e700000000f3 vab VRR_VVV "vector add byte" z13 zarch ++e700000010f3 vah VRR_VVV "vector add halfword" z13 zarch ++e700000020f3 vaf VRR_VVV "vector add word" z13 zarch ++e700000030f3 vag VRR_VVV "vector add double word" z13 zarch ++e700000040f3 vaq VRR_VVV "vector add quad word" z13 zarch ++e700000000f1 vacc VRR_VVV0U "vector add compute carry" z13 zarch ++e700000000f1 vaccb VRR_VVV "vector add compute carry byte" z13 zarch ++e700000010f1 vacch VRR_VVV "vector add compute carry halfword" z13 zarch ++e700000020f1 vaccf VRR_VVV "vector add compute carry word" z13 zarch ++e700000030f1 vaccg VRR_VVV "vector add compute carry doubleword" z13 zarch ++e700000040f1 vaccq VRR_VVV "vector add compute carry quadword" z13 zarch ++e700000000bb vac VRR_VVVU0V "vector add with carry" z13 zarch ++e700040000bb vacq VRR_VVV0V "vector add with carry quadword" z13 zarch ++e700000000b9 vaccc VRR_VVVU0V "vector add with carry compute carry" z13 zarch ++e700040000b9 vacccq VRR_VVV0V "vector add with carry compute carry quadword" z13 zarch ++e70000000068 vn VRR_VVV "vector and" z13 zarch ++e70000000069 vnc VRR_VVV "vector and with complement" z13 zarch ++e700000000f2 vavg VRR_VVV0U "vector average" z13 zarch ++e700000000f2 vavgb VRR_VVV "vector average byte" z13 zarch ++e700000010f2 vavgh VRR_VVV "vector average half word" z13 zarch ++e700000020f2 vavgf VRR_VVV "vector average word" z13 zarch ++e700000030f2 vavgg VRR_VVV "vector average double word" z13 zarch ++e700000000f0 vavgl VRR_VVV0U "vector average logical" z13 zarch ++e700000000f0 vavglb VRR_VVV "vector average logical byte" z13 zarch ++e700000010f0 vavglh VRR_VVV "vector average logical half word" z13 zarch ++e700000020f0 vavglf VRR_VVV "vector average logical word" z13 zarch ++e700000030f0 vavglg VRR_VVV "vector average logical double word" z13 zarch ++e70000000066 vcksm VRR_VVV "vector checksum" z13 zarch ++e700000000db vec VRR_VV0U "vector element compare" z13 zarch ++e700000000db vecb VRR_VV "vector element compare byte" z13 zarch ++e700000010db vech VRR_VV "vector element compare half word" z13 zarch ++e700000020db vecf VRR_VV "vector element compare word" z13 zarch ++e700000030db vecg VRR_VV "vector element compare double word" z13 zarch ++e700000000d9 vecl VRR_VV0U "vector element compare logical" z13 zarch ++e700000000d9 veclb VRR_VV "vector element compare logical byte" z13 zarch ++e700000010d9 veclh VRR_VV "vector element compare logical half word" z13 zarch ++e700000020d9 veclf VRR_VV "vector element compare logical word" z13 zarch ++e700000030d9 veclg VRR_VV "vector element compare logical double word" z13 zarch ++e700000000f8 vceq VRR_VVV0U0U "vector compare equal" z13 zarch ++e700000000f8 vceqb VRR_VVV "vector compare equal byte" z13 zarch ++e700000010f8 vceqh VRR_VVV "vector compare equal half word" z13 zarch ++e700000020f8 vceqf VRR_VVV "vector compare equal word" z13 zarch ++e700000030f8 vceqg VRR_VVV "vector compare equal double word" z13 zarch ++e700001000f8 vceqbs VRR_VVV "vector compare equal byte" z13 zarch ++e700001010f8 vceqhs VRR_VVV "vector compare equal half word" z13 zarch ++e700001020f8 vceqfs VRR_VVV "vector compare equal word" z13 zarch ++e700001030f8 vceqgs VRR_VVV "vector compare equal double word" z13 zarch ++e700000000fb vch VRR_VVV0U0U "vector compare high" z13 zarch ++e700000000fb vchb VRR_VVV "vector compare high byte" z13 zarch ++e700000010fb vchh VRR_VVV "vector compare high half word" z13 zarch ++e700000020fb vchf VRR_VVV "vector compare high word" z13 zarch ++e700000030fb vchg VRR_VVV "vector compare high double word" z13 zarch ++e700001000fb vchbs VRR_VVV "vector compare high byte" z13 zarch ++e700001010fb vchhs VRR_VVV "vector compare high half word" z13 zarch ++e700001020fb vchfs VRR_VVV "vector compare high word" z13 zarch ++e700001030fb vchgs VRR_VVV "vector compare high double word" z13 zarch ++e700000000f9 vchl VRR_VVV0U0U "vector compare high logical" z13 zarch ++e700000000f9 vchlb VRR_VVV "vector compare high logical byte" z13 zarch ++e700000010f9 vchlh VRR_VVV "vector compare high logical half word" z13 zarch ++e700000020f9 vchlf VRR_VVV "vector compare high logical word" z13 zarch ++e700000030f9 vchlg VRR_VVV "vector compare high logical double word" z13 zarch ++e700001000f9 vchlbs VRR_VVV "vector compare high logical byte" z13 zarch ++e700001010f9 vchlhs VRR_VVV "vector compare high logical half word" z13 zarch ++e700001020f9 vchlfs VRR_VVV "vector compare high logical word" z13 zarch ++e700001030f9 vchlgs VRR_VVV "vector compare high logical double word" z13 zarch ++e70000000053 vclz VRR_VV0U "vector count leading zeros" z13 zarch ++e70000000053 vclzb VRR_VV "vector count leading zeros byte" z13 zarch ++e70000001053 vclzh VRR_VV "vector count leading zeros halfword" z13 zarch ++e70000002053 vclzf VRR_VV "vector count leading zeros word" z13 zarch ++e70000003053 vclzg VRR_VV "vector count leading zeros doubleword" z13 zarch ++e70000000052 vctz VRR_VV0U "vector count trailing zeros" z13 zarch ++e70000000052 vctzb VRR_VV "vector count trailing zeros byte" z13 zarch ++e70000001052 vctzh VRR_VV "vector count trailing zeros halfword" z13 zarch ++e70000002052 vctzf VRR_VV "vector count trailing zeros word" z13 zarch ++e70000003052 vctzg VRR_VV "vector count trailing zeros doubleword" z13 zarch ++e7000000006d vx VRR_VVV "vector exclusive or" z13 zarch ++e700000000b4 vgfm VRR_VVV0U "vector galois field multiply sum" z13 zarch ++e700000000b4 vgfmb VRR_VVV "vector galois field multiply sum byte" z13 zarch ++e700000010b4 vgfmh VRR_VVV "vector galois field multiply sum halfword" z13 zarch ++e700000020b4 vgfmf VRR_VVV "vector galois field multiply sum word" z13 zarch ++e700000030b4 vgfmg VRR_VVV "vector galois field multiply sum doubleword" z13 zarch ++e700000000bc vgfma VRR_VVVU0V "vector galois field multiply sum and accumulate" z13 zarch ++e700000000bc vgfmab VRR_VVV0V "vector galois field multiply sum and accumulate byte" z13 zarch ++e700010000bc vgfmah VRR_VVV0V "vector galois field multiply sum and accumulate halfword" z13 zarch ++e700020000bc vgfmaf VRR_VVV0V "vector galois field multiply sum and accumulate word" z13 zarch ++e700030000bc vgfmag VRR_VVV0V "vector galois field multiply sum and accumulate doubleword" z13 zarch ++e700000000de vlc VRR_VV0U "vector load complement" z13 zarch ++e700000000de vlcb VRR_VV "vector load complement byte" z13 zarch ++e700000010de vlch VRR_VV "vector load complement halfword" z13 zarch ++e700000020de vlcf VRR_VV "vector load complement word" z13 zarch ++e700000030de vlcg VRR_VV "vector load complement doubleword" z13 zarch ++e700000000df vlp VRR_VV0U "vector load positive" z13 zarch ++e700000000df vlpb VRR_VV "vector load positive byte" z13 zarch ++e700000010df vlph VRR_VV "vector load positive halfword" z13 zarch ++e700000020df vlpf VRR_VV "vector load positive word" z13 zarch ++e700000030df vlpg VRR_VV "vector load positive doubleword" z13 zarch ++e700000000ff vmx VRR_VVV0U "vector maximum" z13 zarch ++e700000000ff vmxb VRR_VVV "vector maximum byte" z13 zarch ++e700000010ff vmxh VRR_VVV "vector maximum halfword" z13 zarch ++e700000020ff vmxf VRR_VVV "vector maximum word" z13 zarch ++e700000030ff vmxg VRR_VVV "vector maximum doubleword" z13 zarch ++e700000000fd vmxl VRR_VVV0U "vector maximum logical" z13 zarch ++e700000000fd vmxlb VRR_VVV "vector maximum logical byte" z13 zarch ++e700000010fd vmxlh VRR_VVV "vector maximum logical halfword" z13 zarch ++e700000020fd vmxlf VRR_VVV "vector maximum logical word" z13 zarch ++e700000030fd vmxlg VRR_VVV "vector maximum logical doubleword" z13 zarch ++e700000000fe vmn VRR_VVV0U "vector minimum" z13 zarch ++e700000000fe vmnb VRR_VVV "vector minimum byte" z13 zarch ++e700000010fe vmnh VRR_VVV "vector minimum halfword" z13 zarch ++e700000020fe vmnf VRR_VVV "vector minimum word" z13 zarch ++e700000030fe vmng VRR_VVV "vector minimum doubleword" z13 zarch ++e700000000fc vmnl VRR_VVV0U "vector minimum logical" z13 zarch ++e700000000fc vmnlb VRR_VVV "vector minimum logical byte" z13 zarch ++e700000010fc vmnlh VRR_VVV "vector minimum logical halfword" z13 zarch ++e700000020fc vmnlf VRR_VVV "vector minimum logical word" z13 zarch ++e700000030fc vmnlg VRR_VVV "vector minimum logical doubleword" z13 zarch ++e700000000aa vmal VRR_VVVU0V "vector multiply and add low" z13 zarch ++e700000000aa vmalb VRR_VVV0V "vector multiply and add low byte" z13 zarch ++e700010000aa vmalhw VRR_VVV0V "vector multiply and add low halfword" z13 zarch ++e700020000aa vmalf VRR_VVV0V "vector multiply and add low word" z13 zarch ++e700000000ab vmah VRR_VVVU0V "vector multiply and add high" z13 zarch ++e700000000ab vmahb VRR_VVV0V "vector multiply and add high byte" z13 zarch ++e700010000ab vmahh VRR_VVV0V "vector multiply and add high halfword" z13 zarch ++e700020000ab vmahf VRR_VVV0V "vector multiply and add high word" z13 zarch ++e700000000a9 vmalh VRR_VVVU0V "vector multiply and add logical high" z13 zarch ++e700000000a9 vmalhb VRR_VVV0V "vector multiply and add logical high byte" z13 zarch ++e700010000a9 vmalhh VRR_VVV0V "vector multiply and add logical high halfword" z13 zarch ++e700020000a9 vmalhf VRR_VVV0V "vector multiply and add logical high word" z13 zarch ++e700000000ae vmae VRR_VVVU0V "vector multiply and add even" z13 zarch ++e700000000ae vmaeb VRR_VVV0V "vector multiply and add even byte" z13 zarch ++e700010000ae vmaeh VRR_VVV0V "vector multiply and add even halfword" z13 zarch ++e700020000ae vmaef VRR_VVV0V "vector multiply and add even word" z13 zarch ++e700000000ac vmale VRR_VVVU0V "vector multiply and add logical even" z13 zarch ++e700000000ac vmaleb VRR_VVV0V "vector multiply and add logical even byte" z13 zarch ++e700010000ac vmaleh VRR_VVV0V "vector multiply and add logical even halfword" z13 zarch ++e700020000ac vmalef VRR_VVV0V "vector multiply and add logical even word" z13 zarch ++e700000000af vmao VRR_VVVU0V "vector multiply and add odd" z13 zarch ++e700000000af vmaob VRR_VVV0V "vector multiply and add odd byte" z13 zarch ++e700010000af vmaoh VRR_VVV0V "vector multiply and add odd halfword" z13 zarch ++e700020000af vmaof VRR_VVV0V "vector multiply and add odd word" z13 zarch ++e700000000ad vmalo VRR_VVVU0V "vector multiply and add logical odd" z13 zarch ++e700000000ad vmalob VRR_VVV0V "vector multiply and add logical odd byte" z13 zarch ++e700010000ad vmaloh VRR_VVV0V "vector multiply and add logical odd halfword" z13 zarch ++e700020000ad vmalof VRR_VVV0V "vector multiply and add logical odd word" z13 zarch ++e700000000a3 vmh VRR_VVV0U "vector multiply high" z13 zarch ++e700000000a3 vmhb VRR_VVV "vector multiply high byte" z13 zarch ++e700000010a3 vmhh VRR_VVV "vector multiply high halfword" z13 zarch ++e700000020a3 vmhf VRR_VVV "vector multiply high word" z13 zarch ++e700000000a1 vmlh VRR_VVV0U "vector multiply logical high" z13 zarch ++e700000000a1 vmlhb VRR_VVV "vector multiply logical high byte" z13 zarch ++e700000010a1 vmlhh VRR_VVV "vector multiply logical high halfword" z13 zarch ++e700000020a1 vmlhf VRR_VVV "vector multiply logical high word" z13 zarch ++e700000000a2 vml VRR_VVV0U "vector multiply low" z13 zarch ++e700000000a2 vmlb VRR_VVV "vector multiply low byte" z13 zarch ++e700000010a2 vmlhw VRR_VVV "vector multiply low halfword" z13 zarch ++e700000020a2 vmlf VRR_VVV "vector multiply low word" z13 zarch ++e700000000a6 vme VRR_VVV0U "vector multiply even" z13 zarch ++e700000000a6 vmeb VRR_VVV "vector multiply even byte" z13 zarch ++e700000010a6 vmeh VRR_VVV "vector multiply even halfword" z13 zarch ++e700000020a6 vmef VRR_VVV "vector multiply even word" z13 zarch ++e700000000a4 vmle VRR_VVV0U "vector multiply logical even" z13 zarch ++e700000000a4 vmleb VRR_VVV "vector multiply logical even byte" z13 zarch ++e700000010a4 vmleh VRR_VVV "vector multiply logical even halfword" z13 zarch ++e700000020a4 vmlef VRR_VVV "vector multiply logical even word" z13 zarch ++e700000000a7 vmo VRR_VVV0U "vector multiply odd" z13 zarch ++e700000000a7 vmob VRR_VVV "vector multiply odd byte" z13 zarch ++e700000010a7 vmoh VRR_VVV "vector multiply odd halfword" z13 zarch ++e700000020a7 vmof VRR_VVV "vector multiply odd word" z13 zarch ++e700000000a5 vmlo VRR_VVV0U "vector multiply logical odd" z13 zarch ++e700000000a5 vmlob VRR_VVV "vector multiply logical odd byte" z13 zarch ++e700000010a5 vmloh VRR_VVV "vector multiply logical odd halfword" z13 zarch ++e700000020a5 vmlof VRR_VVV "vector multiply logical odd word" z13 zarch ++e7000000006b vno VRR_VVV "vector nor" z13 zarch ++e7000000006b vnot VRR_VVV2 "vector not" z13 zarch ++e7000000006a vo VRR_VVV "vector or" z13 zarch ++e70000000050 vpopct VRR_VV0U "vector population count" z13 zarch ++e70000000073 verllv VRR_VVV0U "vector element rotate left logical reg" z13 zarch ++e70000000073 verllvb VRR_VVV "vector element rotate left logical reg byte" z13 zarch ++e70000001073 verllvh VRR_VVV "vector element rotate left logical reg halfword" z13 zarch ++e70000002073 verllvf VRR_VVV "vector element rotate left logical reg word" z13 zarch ++e70000003073 verllvg VRR_VVV "vector element rotate left logical reg doubleword" z13 zarch ++e70000000033 verll VRS_VVRDU "vector element rotate left logical mem" z13 zarch ++e70000000033 verllb VRS_VVRD "vector element rotate left logical mem byte" z13 zarch ++e70000001033 verllh VRS_VVRD "vector element rotate left logical mem halfword" z13 zarch ++e70000002033 verllf VRS_VVRD "vector element rotate left logical mem word" z13 zarch ++e70000003033 verllg VRS_VVRD "vector element rotate left logical mem doubleword" z13 zarch ++e70000000072 verim VRI_VVV0UU "vector element rotate and insert under mask" z13 zarch ++e70000000072 verimb VRI_VVV0U "vector element rotate and insert under mask byte" z13 zarch ++e70000001072 verimh VRI_VVV0U "vector element rotate and insert under mask halfword" z13 zarch ++e70000002072 verimf VRI_VVV0U "vector element rotate and insert under mask word" z13 zarch ++e70000003072 verimg VRI_VVV0U "vector element rotate and insert under mask doubleword" z13 zarch ++e70000000070 veslv VRR_VVV0U "vector element shift left reg" z13 zarch ++e70000000070 veslvb VRR_VVV "vector element shift left reg byte" z13 zarch ++e70000001070 veslvh VRR_VVV "vector element shift left reg halfword" z13 zarch ++e70000002070 veslvf VRR_VVV "vector element shift left reg word" z13 zarch ++e70000003070 veslvg VRR_VVV "vector element shift left reg doubleword" z13 zarch ++e70000000030 vesl VRS_VVRDU "vector element shift left mem" z13 zarch ++e70000000030 veslb VRS_VVRD "vector element shift left mem byte" z13 zarch ++e70000001030 veslh VRS_VVRD "vector element shift left mem halfword" z13 zarch ++e70000002030 veslf VRS_VVRD "vector element shift left mem word" z13 zarch ++e70000003030 veslg VRS_VVRD "vector element shift left mem doubleword" z13 zarch ++e7000000007a vesrav VRR_VVV0U "vector element shift right arithmetic reg" z13 zarch ++e7000000007a vesravb VRR_VVV "vector element shift right arithmetic reg byte" z13 zarch ++e7000000107a vesravh VRR_VVV "vector element shift right arithmetic reg halfword" z13 zarch ++e7000000207a vesravf VRR_VVV "vector element shift right arithmetic reg word" z13 zarch ++e7000000307a vesravg VRR_VVV "vector element shift right arithmetic reg doubleword" z13 zarch ++e7000000003a vesra VRS_VVRDU "vector element shift right arithmetic mem" z13 zarch ++e7000000003a vesrab VRS_VVRD "vector element shift right arithmetic mem byte" z13 zarch ++e7000000103a vesrah VRS_VVRD "vector element shift right arithmetic mem halfword" z13 zarch ++e7000000203a vesraf VRS_VVRD "vector element shift right arithmetic mem word" z13 zarch ++e7000000303a vesrag VRS_VVRD "vector element shift right arithmetic mem doubleword" z13 zarch ++e70000000078 vesrlv VRR_VVV0U "vector element shift right logical reg" z13 zarch ++e70000000078 vesrlvb VRR_VVV "vector element shift right logical reg byte" z13 zarch ++e70000001078 vesrlvh VRR_VVV "vector element shift right logical reg halfword" z13 zarch ++e70000002078 vesrlvf VRR_VVV "vector element shift right logical reg word" z13 zarch ++e70000003078 vesrlvg VRR_VVV "vector element shift right logical reg doubleword" z13 zarch ++e70000000038 vesrl VRS_VVRDU "vector element shift right logical mem" z13 zarch ++e70000000038 vesrlb VRS_VVRD "vector element shift right logical mem byte" z13 zarch ++e70000001038 vesrlh VRS_VVRD "vector element shift right logical mem halfword" z13 zarch ++e70000002038 vesrlf VRS_VVRD "vector element shift right logical mem word" z13 zarch ++e70000003038 vesrlg VRS_VVRD "vector element shift right logical mem doubleword" z13 zarch ++e70000000074 vsl VRR_VVV "vector shift left" z13 zarch ++e70000000075 vslb VRR_VVV "vector shift left by byte" z13 zarch ++e70000000077 vsldb VRI_VVV0U "vector shift left double by byte" z13 zarch ++e7000000007e vsra VRR_VVV "vector shift right arithmetic" z13 zarch ++e7000000007f vsrab VRR_VVV "vector shift right arithmetic by byte" z13 zarch ++e7000000007c vsrl VRR_VVV "vector shift right logical" z13 zarch ++e7000000007d vsrlb VRR_VVV "vector shift right logical by byte" z13 zarch ++e700000000f7 vs VRR_VVV0U "vector subtract" z13 zarch ++e700000000f7 vsb VRR_VVV "vector subtract byte" z13 zarch ++e700000010f7 vsh VRR_VVV "vector subtract halfword" z13 zarch ++e700000020f7 vsf VRR_VVV "vector subtract word" z13 zarch ++e700000030f7 vsg VRR_VVV "vector subtract doubleword" z13 zarch ++e700000040f7 vsq VRR_VVV "vector subtract quadword" z13 zarch ++e700000000f5 vscbi VRR_VVV0U "vector subtract compute borrow indication" z13 zarch ++e700000000f5 vscbib VRR_VVV "vector subtract compute borrow indication byte" z13 zarch ++e700000010f5 vscbih VRR_VVV "vector subtract compute borrow indication halfword" z13 zarch ++e700000020f5 vscbif VRR_VVV "vector subtract compute borrow indication word" z13 zarch ++e700000030f5 vscbig VRR_VVV "vector subtract compute borrow indication doubleword" z13 zarch ++e700000040f5 vscbiq VRR_VVV "vector subtract compute borrow indication quadword" z13 zarch ++e700000000bf vsbi VRR_VVVU0V "vector subtract with borrow indication" z13 zarch ++e700040000bf vsbiq VRR_VVV0V "vector subtract with borrow indication quadword" z13 zarch ++e700000000bd vsbcbi VRR_VVVU0V "vector subtract with borrow compute borrow indication" z13 zarch ++e700040000bd vsbcbiq VRR_VVV0V "vector subtract with borrow compute borrow indication quadword" z13 zarch ++e70000000065 vsumg VRR_VVV0U "vector sum across doubleword" z13 zarch ++e70000001065 vsumgh VRR_VVV "vector sum across doubleword - halfword" z13 zarch ++e70000002065 vsumgf VRR_VVV "vector sum across doubleword - word" z13 zarch ++e70000000067 vsumq VRR_VVV0U "vector sum across quadword" z13 zarch ++e70000002067 vsumqf VRR_VVV "vector sum across quadword - word elements" z13 zarch ++e70000003067 vsumqg VRR_VVV "vector sum across quadword - doubleword elements" z13 zarch ++e70000000064 vsum VRR_VVV0U "vector sum across word" z13 zarch ++e70000000064 vsumb VRR_VVV "vector sum across word - byte elements" z13 zarch ++e70000001064 vsumh VRR_VVV "vector sum across word - halfword elements" z13 zarch ++e700000000d8 vtm VRR_VV "vector test under mask" z13 zarch ++ ++# Chapter 23 - Vector String Instructions ++e70000000082 vfae VRR_VVV0U0U "vector find any element equal" z13 zarch optparm ++e70000000082 vfaeb VRR_VVV0U0 "vector find any element equal byte" z13 zarch optparm ++e70000001082 vfaeh VRR_VVV0U0 "vector find any element equal halfword" z13 zarch optparm ++e70000002082 vfaef VRR_VVV0U0 "vector find any element equal word" z13 zarch optparm ++e70000100082 vfaebs VRR_VVV0U1 "vector find any element equal" z13 zarch optparm ++e70000101082 vfaehs VRR_VVV0U1 "vector find any element equal" z13 zarch optparm ++e70000102082 vfaefs VRR_VVV0U1 "vector find any element equal" z13 zarch optparm ++e70000200082 vfaezb VRR_VVV0U2 "vector find any element equal" z13 zarch optparm ++e70000201082 vfaezh VRR_VVV0U2 "vector find any element equal" z13 zarch optparm ++e70000202082 vfaezf VRR_VVV0U2 "vector find any element equal" z13 zarch optparm ++e70000300082 vfaezbs VRR_VVV0U3 "vector find any element equal" z13 zarch optparm ++e70000301082 vfaezhs VRR_VVV0U3 "vector find any element equal" z13 zarch optparm ++e70000302082 vfaezfs VRR_VVV0U3 "vector find any element equal" z13 zarch optparm ++e70000000080 vfee VRR_VVV0U0U "vector find element equal" z13 zarch optparm ++e70000000080 vfeeb VRR_VVV0U0 "vector find element equal byte" z13 zarch optparm ++e70000001080 vfeeh VRR_VVV0U0 "vector find element equal halfword" z13 zarch optparm ++e70000002080 vfeef VRR_VVV0U0 "vector find element equal word" z13 zarch optparm ++e70000100080 vfeebs VRR_VVV "vector find element equal byte" z13 zarch ++e70000101080 vfeehs VRR_VVV "vector find element equal halfword" z13 zarch ++e70000102080 vfeefs VRR_VVV "vector find element equal word" z13 zarch ++e70000200080 vfeezb VRR_VVV "vector find element equal byte" z13 zarch ++e70000201080 vfeezh VRR_VVV "vector find element equal halfword" z13 zarch ++e70000202080 vfeezf VRR_VVV "vector find element equal word" z13 zarch ++e70000300080 vfeezbs VRR_VVV "vector find element equal byte" z13 zarch ++e70000301080 vfeezhs VRR_VVV "vector find element equal halfword" z13 zarch ++e70000302080 vfeezfs VRR_VVV "vector find element equal word" z13 zarch ++e70000000081 vfene VRR_VVV0U0U "vector find element not equal" z13 zarch optparm ++e70000000081 vfeneb VRR_VVV0U0 "vector find element not equal byte" z13 zarch optparm ++e70000001081 vfeneh VRR_VVV0U0 "vector find element not equal halfword" z13 zarch optparm ++e70000002081 vfenef VRR_VVV0U0 "vector find element not equal word" z13 zarch optparm ++e70000100081 vfenebs VRR_VVV "vector find element not equal byte" z13 zarch ++e70000101081 vfenehs VRR_VVV "vector find element not equal halfword" z13 zarch ++e70000102081 vfenefs VRR_VVV "vector find element not equal word" z13 zarch ++e70000200081 vfenezb VRR_VVV "vector find element not equal byte" z13 zarch ++e70000201081 vfenezh VRR_VVV "vector find element not equal halfword" z13 zarch ++e70000202081 vfenezf VRR_VVV "vector find element not equal word" z13 zarch ++e70000300081 vfenezbs VRR_VVV "vector find element not equal byte" z13 zarch ++e70000301081 vfenezhs VRR_VVV "vector find element not equal halfword" z13 zarch ++e70000302081 vfenezfs VRR_VVV "vector find element not equal word" z13 zarch ++e7000000005c vistr VRR_VV0U0U "vector isolate string" z13 zarch optparm ++e7000000005c vistrb VRR_VV0U2 "vector isolate string byte" z13 zarch optparm ++e7000000105c vistrh VRR_VV0U2 "vector isolate string halfword" z13 zarch optparm ++e7000000205c vistrf VRR_VV0U2 "vector isolate string word" z13 zarch optparm ++e7000010005c vistrbs VRR_VV "vector isolate string byte" z13 zarch ++e7000010105c vistrhs VRR_VV "vector isolate string halfword" z13 zarch ++e7000010205c vistrfs VRR_VV "vector isolate string word" z13 zarch ++e7000000008a vstrc VRR_VVVUU0V "vector string range compare" z13 zarch optparm ++e7000000008a vstrcb VRR_VVVU0VB "vector string range compare byte" z13 zarch optparm ++e7000100008a vstrch VRR_VVVU0VB "vector string range compare halfword" z13 zarch optparm ++e7000200008a vstrcf VRR_VVVU0VB "vector string range compare word" z13 zarch optparm ++e7000010008a vstrcbs VRR_VVVU0VB1 "vector string range compare byte" z13 zarch optparm ++e7000110008a vstrchs VRR_VVVU0VB1 "vector string range compare halfword" z13 zarch optparm ++e7000210008a vstrcfs VRR_VVVU0VB1 "vector string range compare word" z13 zarch optparm ++e7000020008a vstrczb VRR_VVVU0VB2 "vector string range compare byte" z13 zarch optparm ++e7000120008a vstrczh VRR_VVVU0VB2 "vector string range compare halfword" z13 zarch optparm ++e7000220008a vstrczf VRR_VVVU0VB2 "vector string range compare word" z13 zarch optparm ++e7000030008a vstrczbs VRR_VVVU0VB3 "vector string range compare byte" z13 zarch optparm ++e7000130008a vstrczhs VRR_VVVU0VB3 "vector string range compare halfword" z13 zarch optparm ++e7000230008a vstrczfs VRR_VVVU0VB3 "vector string range compare word" z13 zarch optparm ++ ++# Chapter 24 ++e700000000e3 vfa VRR_VVV0UU "vector fp add" z13 zarch ++e700000030e3 vfadb VRR_VVV "vector fp add" z13 zarch ++e700000830e3 wfadb VRR_VVV "vector fp add" z13 zarch ++e700000000cb wfc VRR_VV0UU "vector fp compare scalar" z13 zarch ++e700000030cb wfcdb VRR_VV "vector fp compare scalar" z13 zarch ++e700000000ca wfk VRR_VV0UU "vector fp compare and signal scalar" z13 zarch ++e700000030ca wfkdb VRR_VV "vector fp compare and signal scalar" z13 zarch ++e700000000e8 vfce VRR_VVV "vector fp compare equal" z13 zarch ++e700000030e8 vfcedb VRR_VVV "vector fp compare equal" z13 zarch ++e700001030e8 vfcedbs VRR_VVV "vector fp compare equal" z13 zarch ++e700000830e8 wfcedb VRR_VVV "vector fp compare equal" z13 zarch ++e700001830e8 wfcedbs VRR_VVV "vector fp compare equal" z13 zarch ++e700000000eb vfch VRR_VVV0UUU "vector fp compare high" z13 zarch ++e700000030eb vfchdb VRR_VVV "vector fp compare high" z13 zarch ++e700001030eb vfchdbs VRR_VVV "vector fp compare high" z13 zarch ++e700000830eb wfchdb VRR_VVV "vector fp compare high" z13 zarch ++e700001830eb wfchdbs VRR_VVV "vector fp compare high" z13 zarch ++e700000000ea vfche VRR_VVV0UUU "vector fp compare high or equal" z13 zarch ++e700000030ea vfchedb VRR_VVV "vector fp compare high or equal" z13 zarch ++e700001030ea vfchedbs VRR_VVV "vector fp compare high or equal" z13 zarch ++e700000830ea wfchedb VRR_VVV "vector fp compare high or equal" z13 zarch ++e700001830ea wfchedbs VRR_VVV "vector fp compare high or equal" z13 zarch ++e700000000c3 vcdg VRR_VV0UUU "vector fp convert from fixed 64 bit" z13 zarch ++e700000030c3 vcdgb VRR_VV0UU "vector fp convert from fixed 64 bit" z13 zarch ++e700000830c3 wcdgb VRR_VV0UU8 "vector fp convert from fixed 64 bit" z13 zarch ++e700000000c1 vcdlg VRR_VV0UUU "vector fp convert from logical 64 bit" z13 zarch ++e700000030c1 vcdlgb VRR_VV0UU "vector fp convert from logical 64 bit" z13 zarch ++e700000830c1 wcdlgb VRR_VV0UU8 "vector fp convert from logical 64 bit" z13 zarch ++e700000000c2 vcgd VRR_VV0UUU "vector fp convert to fixed 64 bit" z13 zarch ++e700000030c2 vcgdb VRR_VV0UU "vector fp convert to fixed 64 bit" z13 zarch ++e700000830c2 wcgdb VRR_VV0UU8 "vector fp convert to fixed 64 bit" z13 zarch ++e700000000c0 vclgd VRR_VV0UUU "vector fp convert to logical 64 bit" z13 zarch ++e700000030c0 vclgdb VRR_VV0UU "vector fp convert to logical 64 bit" z13 zarch ++e700000830c0 wclgdb VRR_VV0UU8 "vector fp convert to logical 64 bit" z13 zarch ++e700000000e5 vfd VRR_VVV0UU "vector fp divide" z13 zarch ++e700000030e5 vfddb VRR_VVV "vector fp divide" z13 zarch ++e700000830e5 wfddb VRR_VVV "vector fp divide" z13 zarch ++e700000000c7 vfi VRR_VV0UUU "vector load fp integer" z13 zarch ++e700000030c7 vfidb VRR_VV0UU "vector load fp integer" z13 zarch ++e700000830c7 wfidb VRR_VV0UU8 "vector load fp integer" z13 zarch ++e700000000c4 vlde VRR_VV0UU "vector fp load lengthened" z13 zarch ++e700000020c4 vldeb VRR_VV "vector fp load lengthened" z13 zarch ++e700000820c4 wldeb VRR_VV "vector fp load lengthened" z13 zarch ++e700000000c5 vled VRR_VV0UUU "vector fp load rounded" z13 zarch ++e700000030c5 vledb VRR_VV0UU "vector fp load rounded" z13 zarch ++e700000830c5 wledb VRR_VV0UU8 "vector fp load rounded" z13 zarch ++e700000000e7 vfm VRR_VVV0UU "vector fp multiply" z13 zarch ++e700000030e7 vfmdb VRR_VVV "vector fp multiply" z13 zarch ++e700000830e7 wfmdb VRR_VVV "vector fp multiply" z13 zarch ++e7000000008f vfma VRR_VVVU0UV "vector fp multiply and add" z13 zarch ++e7000300008f vfmadb VRR_VVVV "vector fp multiply and add" z13 zarch ++e7000308008f wfmadb VRR_VVVV "vector fp multiply and add" z13 zarch ++e7000000008e vfms VRR_VVVU0UV "vector fp multiply and subtract" z13 zarch ++e7000300008e vfmsdb VRR_VVVV "vector fp multiply and subtract" z13 zarch ++e7000308008e wfmsdb VRR_VVVV "vector fp multiply and subtract" z13 zarch ++e700000000cc vfpso VRR_VV0UUU "vector fp perform sign operation" z13 zarch ++e700000030cc vfpsodb VRR_VV0U2 "vector fp perform sign operation" z13 zarch ++e700000830cc wfpsodb VRR_VV0U2 "vector fp perform sign operation" z13 zarch ++e700000030cc vflcdb VRR_VV "vector fp perform sign operation" z13 zarch ++e700000830cc wflcdb VRR_VV "vector fp perform sign operation" z13 zarch ++e700001030cc vflndb VRR_VV "vector fp perform sign operation" z13 zarch ++e700001830cc wflndb VRR_VV "vector fp perform sign operation" z13 zarch ++e700002030cc vflpdb VRR_VV "vector fp perform sign operation" z13 zarch ++e700002830cc wflpdb VRR_VV "vector fp perform sign operation" z13 zarch ++e700000000ce vfsq VRR_VV0UU "vector fp square root" z13 zarch ++e700000030ce vfsqdb VRR_VV "vector fp square root" z13 zarch ++e700000830ce wfsqdb VRR_VV "vector fp square root" z13 zarch ++e700000000e2 vfs VRR_VVV0UU "vector fp subtract" z13 zarch ++e700000030e2 vfsdb VRR_VVV "vector fp subtract" z13 zarch ++e700000830e2 wfsdb VRR_VVV "vector fp subtract" z13 zarch ++e7000000004a vftci VRI_VVUUU "vector fp test data class immediate" z13 zarch ++e7000000304a vftcidb VRI_VVU2 "vector fp test data class immediate" z13 zarch ++e7000008304a wftcidb VRI_VVU2 "vector fp test data class immediate" z13 zarch +-- +2.3.0 + diff --git a/0002-S-390-Add-check-for-length-field-operand.patch b/0002-S-390-Add-check-for-length-field-operand.patch new file mode 100644 index 0000000..2811564 --- /dev/null +++ b/0002-S-390-Add-check-for-length-field-operand.patch @@ -0,0 +1,34 @@ +From ae2046d38892cc42febb799141b2457f4e519fd0 Mon Sep 17 00:00:00 2001 +From: Andreas Krebbel +Date: Tue, 10 Mar 2015 12:41:57 +0100 +Subject: [PATCH 2/5] S/390: Add check for length field operand + +gas/ +2015-03-10 Andreas Krebbel + + * gas/config/tc-s390.c (md_gather_operands): Check for valid + length field operands. + +# Conflicts: +# gas/ChangeLog +--- + gas/config/tc-s390.c | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/gas/config/tc-s390.c b/gas/config/tc-s390.c +index 052baf1..a8394c5 100644 +--- a/gas/config/tc-s390.c ++++ b/gas/config/tc-s390.c +@@ -1216,6 +1216,9 @@ md_gather_operands (char *str, + } + else + { ++ if ((operand->flags & S390_OPERAND_LENGTH) ++ && ex.X_op != O_constant) ++ as_fatal (_("invalid length field specified")); + if ((operand->flags & S390_OPERAND_INDEX) + && ex.X_add_number == 0 + && warn_areg_zero) +-- +2.3.0 + diff --git a/0003-S-390-Add-more-IBM-z13-instructions.patch b/0003-S-390-Add-more-IBM-z13-instructions.patch new file mode 100644 index 0000000..a046038 --- /dev/null +++ b/0003-S-390-Add-more-IBM-z13-instructions.patch @@ -0,0 +1,365 @@ +From ac7c37a5eec4299bfae164839a04b03eae27b962 Mon Sep 17 00:00:00 2001 +From: Andreas Krebbel +Date: Tue, 10 Mar 2015 12:44:54 +0100 +Subject: [PATCH 3/5] S/390: Add more IBM z13 instructions + +opcodes/ +2015-03-10 Andreas Krebbel + + * s390-opc.c: Add new IBM z13 instructions. + * s390-opc.txt: Likewise. + +gas/testsuite/ +2015-03-10 Andreas Krebbel + + * gas/s390/zarch-z13.d: Add more z13 instructions. + * gas/s390/zarch-z13.s: Likewise. + +# Conflicts: +# gas/testsuite/ChangeLog +# opcodes/ChangeLog +--- + gas/testsuite/gas/s390/zarch-z13.d | 134 +++++++++++++++++++++++++++++++++++++ + gas/testsuite/gas/s390/zarch-z13.s | 134 +++++++++++++++++++++++++++++++++++++ + opcodes/s390-opc.c | 2 + + opcodes/s390-opc.txt | 23 +++++++ + 4 files changed, 293 insertions(+) + +diff --git a/gas/testsuite/gas/s390/zarch-z13.d b/gas/testsuite/gas/s390/zarch-z13.d +index f74b9f8..b2e010d 100644 +--- a/gas/testsuite/gas/s390/zarch-z13.d ++++ b/gas/testsuite/gas/s390/zarch-z13.d +@@ -546,3 +546,137 @@ Disassembly of section .text: + .*: e7 f1 ff db c4 4a [ ]*vftci %v15,%v17,4093,12,11 + .*: e7 f1 ff d0 34 4a [ ]*vftcidb %v15,%v17,4093 + .*: e7 f1 ff d8 34 4a [ ]*wftcidb %v15,%v17,4093 ++.*: ed fa 6f a0 3c ae [ ]*cdpt %f3,4000\(251,%r6\),12 ++.*: ed fa 6f a0 1c af [ ]*cxpt %f1,4000\(251,%r6\),12 ++.*: ed fa 6f a0 3c ac [ ]*cpdt %f3,4000\(251,%r6\),12 ++.*: ed fa 6f a0 1c ad [ ]*cpxt %f1,4000\(251,%r6\),12 ++.*: b9 e0 d0 69 [ ]*locfhrnh %r6,%r9 ++.*: b9 e0 10 69 [ ]*locfhro %r6,%r9 ++.*: b9 e0 20 69 [ ]*locfhrh %r6,%r9 ++.*: b9 e0 20 69 [ ]*locfhrh %r6,%r9 ++.*: b9 e0 30 69 [ ]*locfhrnle %r6,%r9 ++.*: b9 e0 40 69 [ ]*locfhrl %r6,%r9 ++.*: b9 e0 40 69 [ ]*locfhrl %r6,%r9 ++.*: b9 e0 50 69 [ ]*locfhrnhe %r6,%r9 ++.*: b9 e0 60 69 [ ]*locfhrlh %r6,%r9 ++.*: b9 e0 70 69 [ ]*locfhrne %r6,%r9 ++.*: b9 e0 70 69 [ ]*locfhrne %r6,%r9 ++.*: b9 e0 80 69 [ ]*locfhre %r6,%r9 ++.*: b9 e0 80 69 [ ]*locfhre %r6,%r9 ++.*: b9 e0 90 69 [ ]*locfhrnlh %r6,%r9 ++.*: b9 e0 a0 69 [ ]*locfhrhe %r6,%r9 ++.*: b9 e0 b0 69 [ ]*locfhrnl %r6,%r9 ++.*: b9 e0 b0 69 [ ]*locfhrnl %r6,%r9 ++.*: b9 e0 c0 69 [ ]*locfhrle %r6,%r9 ++.*: b9 e0 d0 69 [ ]*locfhrnh %r6,%r9 ++.*: b9 e0 d0 69 [ ]*locfhrnh %r6,%r9 ++.*: b9 e0 e0 69 [ ]*locfhrno %r6,%r9 ++.*: eb 6d 98 f0 fd e0 [ ]*locfhnh %r6,-10000\(%r9\) ++.*: eb 61 98 f0 fd e0 [ ]*locfho %r6,-10000\(%r9\) ++.*: eb 62 98 f0 fd e0 [ ]*locfhh %r6,-10000\(%r9\) ++.*: eb 62 98 f0 fd e0 [ ]*locfhh %r6,-10000\(%r9\) ++.*: eb 63 98 f0 fd e0 [ ]*locfhnle %r6,-10000\(%r9\) ++.*: eb 64 98 f0 fd e0 [ ]*locfhl %r6,-10000\(%r9\) ++.*: eb 64 98 f0 fd e0 [ ]*locfhl %r6,-10000\(%r9\) ++.*: eb 65 98 f0 fd e0 [ ]*locfhnhe %r6,-10000\(%r9\) ++.*: eb 66 98 f0 fd e0 [ ]*locfhlh %r6,-10000\(%r9\) ++.*: eb 67 98 f0 fd e0 [ ]*locfhne %r6,-10000\(%r9\) ++.*: eb 67 98 f0 fd e0 [ ]*locfhne %r6,-10000\(%r9\) ++.*: eb 68 98 f0 fd e0 [ ]*locfhe %r6,-10000\(%r9\) ++.*: eb 68 98 f0 fd e0 [ ]*locfhe %r6,-10000\(%r9\) ++.*: eb 69 98 f0 fd e0 [ ]*locfhnlh %r6,-10000\(%r9\) ++.*: eb 6a 98 f0 fd e0 [ ]*locfhhe %r6,-10000\(%r9\) ++.*: eb 6b 98 f0 fd e0 [ ]*locfhnl %r6,-10000\(%r9\) ++.*: eb 6b 98 f0 fd e0 [ ]*locfhnl %r6,-10000\(%r9\) ++.*: eb 6c 98 f0 fd e0 [ ]*locfhle %r6,-10000\(%r9\) ++.*: eb 6d 98 f0 fd e0 [ ]*locfhnh %r6,-10000\(%r9\) ++.*: eb 6d 98 f0 fd e0 [ ]*locfhnh %r6,-10000\(%r9\) ++.*: eb 6e 98 f0 fd e0 [ ]*locfhno %r6,-10000\(%r9\) ++.*: ec 6c 80 03 00 42 [ ]*lochile %r6,-32765 ++.*: ec 61 80 03 00 42 [ ]*lochio %r6,-32765 ++.*: ec 62 80 03 00 42 [ ]*lochih %r6,-32765 ++.*: ec 62 80 03 00 42 [ ]*lochih %r6,-32765 ++.*: ec 63 80 03 00 42 [ ]*lochinle %r6,-32765 ++.*: ec 64 80 03 00 42 [ ]*lochil %r6,-32765 ++.*: ec 64 80 03 00 42 [ ]*lochil %r6,-32765 ++.*: ec 65 80 03 00 42 [ ]*lochinhe %r6,-32765 ++.*: ec 66 80 03 00 42 [ ]*lochilh %r6,-32765 ++.*: ec 67 80 03 00 42 [ ]*lochine %r6,-32765 ++.*: ec 67 80 03 00 42 [ ]*lochine %r6,-32765 ++.*: ec 68 80 03 00 42 [ ]*lochie %r6,-32765 ++.*: ec 68 80 03 00 42 [ ]*lochie %r6,-32765 ++.*: ec 69 80 03 00 42 [ ]*lochinlh %r6,-32765 ++.*: ec 6a 80 03 00 42 [ ]*lochihe %r6,-32765 ++.*: ec 6b 80 03 00 42 [ ]*lochinl %r6,-32765 ++.*: ec 6b 80 03 00 42 [ ]*lochinl %r6,-32765 ++.*: ec 6c 80 03 00 42 [ ]*lochile %r6,-32765 ++.*: ec 6d 80 03 00 42 [ ]*lochinh %r6,-32765 ++.*: ec 6d 80 03 00 42 [ ]*lochinh %r6,-32765 ++.*: ec 6e 80 03 00 42 [ ]*lochino %r6,-32765 ++.*: ec 6c 80 03 00 46 [ ]*locghile %r6,-32765 ++.*: ec 61 80 03 00 46 [ ]*locghio %r6,-32765 ++.*: ec 62 80 03 00 46 [ ]*locghih %r6,-32765 ++.*: ec 62 80 03 00 46 [ ]*locghih %r6,-32765 ++.*: ec 63 80 03 00 46 [ ]*locghinle %r6,-32765 ++.*: ec 64 80 03 00 46 [ ]*locghil %r6,-32765 ++.*: ec 64 80 03 00 46 [ ]*locghil %r6,-32765 ++.*: ec 65 80 03 00 46 [ ]*locghinhe %r6,-32765 ++.*: ec 66 80 03 00 46 [ ]*locghilh %r6,-32765 ++.*: ec 67 80 03 00 46 [ ]*locghine %r6,-32765 ++.*: ec 67 80 03 00 46 [ ]*locghine %r6,-32765 ++.*: ec 68 80 03 00 46 [ ]*locghie %r6,-32765 ++.*: ec 68 80 03 00 46 [ ]*locghie %r6,-32765 ++.*: ec 69 80 03 00 46 [ ]*locghinlh %r6,-32765 ++.*: ec 6a 80 03 00 46 [ ]*locghihe %r6,-32765 ++.*: ec 6b 80 03 00 46 [ ]*locghinl %r6,-32765 ++.*: ec 6b 80 03 00 46 [ ]*locghinl %r6,-32765 ++.*: ec 6c 80 03 00 46 [ ]*locghile %r6,-32765 ++.*: ec 6d 80 03 00 46 [ ]*locghinh %r6,-32765 ++.*: ec 6d 80 03 00 46 [ ]*locghinh %r6,-32765 ++.*: ec 6e 80 03 00 46 [ ]*locghino %r6,-32765 ++.*: ec 6c 80 03 00 4e [ ]*lochhile %r6,-32765 ++.*: ec 61 80 03 00 4e [ ]*lochhio %r6,-32765 ++.*: ec 62 80 03 00 4e [ ]*lochhih %r6,-32765 ++.*: ec 62 80 03 00 4e [ ]*lochhih %r6,-32765 ++.*: ec 63 80 03 00 4e [ ]*lochhinle %r6,-32765 ++.*: ec 64 80 03 00 4e [ ]*lochhil %r6,-32765 ++.*: ec 64 80 03 00 4e [ ]*lochhil %r6,-32765 ++.*: ec 65 80 03 00 4e [ ]*lochhinhe %r6,-32765 ++.*: ec 66 80 03 00 4e [ ]*lochhilh %r6,-32765 ++.*: ec 67 80 03 00 4e [ ]*lochhine %r6,-32765 ++.*: ec 67 80 03 00 4e [ ]*lochhine %r6,-32765 ++.*: ec 68 80 03 00 4e [ ]*lochhie %r6,-32765 ++.*: ec 68 80 03 00 4e [ ]*lochhie %r6,-32765 ++.*: ec 69 80 03 00 4e [ ]*lochhinlh %r6,-32765 ++.*: ec 6a 80 03 00 4e [ ]*lochhihe %r6,-32765 ++.*: ec 6b 80 03 00 4e [ ]*lochhinl %r6,-32765 ++.*: ec 6b 80 03 00 4e [ ]*lochhinl %r6,-32765 ++.*: ec 6c 80 03 00 4e [ ]*lochhile %r6,-32765 ++.*: ec 6d 80 03 00 4e [ ]*lochhinh %r6,-32765 ++.*: ec 6d 80 03 00 4e [ ]*lochhinh %r6,-32765 ++.*: ec 6e 80 03 00 4e [ ]*lochhino %r6,-32765 ++.*: eb 6d 98 f0 fd e1 [ ]*stocfhnh %r6,-10000\(%r9\) ++.*: eb 61 98 f0 fd e1 [ ]*stocfho %r6,-10000\(%r9\) ++.*: eb 62 98 f0 fd e1 [ ]*stocfhh %r6,-10000\(%r9\) ++.*: eb 62 98 f0 fd e1 [ ]*stocfhh %r6,-10000\(%r9\) ++.*: eb 63 98 f0 fd e1 [ ]*stocfhnle %r6,-10000\(%r9\) ++.*: eb 64 98 f0 fd e1 [ ]*stocfhl %r6,-10000\(%r9\) ++.*: eb 64 98 f0 fd e1 [ ]*stocfhl %r6,-10000\(%r9\) ++.*: eb 65 98 f0 fd e1 [ ]*stocfhnhe %r6,-10000\(%r9\) ++.*: eb 66 98 f0 fd e1 [ ]*stocfhlh %r6,-10000\(%r9\) ++.*: eb 67 98 f0 fd e1 [ ]*stocfhne %r6,-10000\(%r9\) ++.*: eb 67 98 f0 fd e1 [ ]*stocfhne %r6,-10000\(%r9\) ++.*: eb 68 98 f0 fd e1 [ ]*stocfhe %r6,-10000\(%r9\) ++.*: eb 68 98 f0 fd e1 [ ]*stocfhe %r6,-10000\(%r9\) ++.*: eb 69 98 f0 fd e1 [ ]*stocfhnlh %r6,-10000\(%r9\) ++.*: eb 6a 98 f0 fd e1 [ ]*stocfhhe %r6,-10000\(%r9\) ++.*: eb 6b 98 f0 fd e1 [ ]*stocfhnl %r6,-10000\(%r9\) ++.*: eb 6b 98 f0 fd e1 [ ]*stocfhnl %r6,-10000\(%r9\) ++.*: eb 6c 98 f0 fd e1 [ ]*stocfhle %r6,-10000\(%r9\) ++.*: eb 6d 98 f0 fd e1 [ ]*stocfhnh %r6,-10000\(%r9\) ++.*: eb 6d 98 f0 fd e1 [ ]*stocfhnh %r6,-10000\(%r9\) ++.*: eb 6e 98 f0 fd e1 [ ]*stocfhno %r6,-10000\(%r9\) ++.*: e3 69 b8 f0 fd 3a [ ]*llzrgf %r6,-10000\(%r9,%r11\) ++.*: e3 69 b8 f0 fd 3b [ ]*lzrf %r6,-10000\(%r9,%r11\) ++.*: e3 69 b8 f0 fd 2a [ ]*lzrg %r6,-10000\(%r9,%r11\) ++.*: b9 ec 00 69 [ ]*ppno %r6,%r9 +diff --git a/gas/testsuite/gas/s390/zarch-z13.s b/gas/testsuite/gas/s390/zarch-z13.s +index 812e3e8..688020d 100644 +--- a/gas/testsuite/gas/s390/zarch-z13.s ++++ b/gas/testsuite/gas/s390/zarch-z13.s +@@ -540,3 +540,137 @@ foo: + vftci %v15,%v17,4093,12,11 + vftcidb %v15,%v17,4093 + wftcidb %v15,%v17,4093 ++ cdpt %f3,4000(251,%r6),12 ++ cxpt %f1,4000(251,%r6),12 ++ cpdt %f3,4000(251,%r6),12 ++ cpxt %f1,4000(251,%r6),12 ++ locfhr %r6,%r9,13 ++ locfhro %r6,%r9 ++ locfhrh %r6,%r9 ++ locfhrp %r6,%r9 ++ locfhrnle %r6,%r9 ++ locfhrl %r6,%r9 ++ locfhrm %r6,%r9 ++ locfhrnhe %r6,%r9 ++ locfhrlh %r6,%r9 ++ locfhrne %r6,%r9 ++ locfhrnz %r6,%r9 ++ locfhre %r6,%r9 ++ locfhrz %r6,%r9 ++ locfhrnlh %r6,%r9 ++ locfhrhe %r6,%r9 ++ locfhrnl %r6,%r9 ++ locfhrnm %r6,%r9 ++ locfhrle %r6,%r9 ++ locfhrnh %r6,%r9 ++ locfhrnp %r6,%r9 ++ locfhrno %r6,%r9 ++ locfh %r6,-10000(%r9),13 ++ locfho %r6,-10000(%r9) ++ locfhh %r6,-10000(%r9) ++ locfhp %r6,-10000(%r9) ++ locfhnle %r6,-10000(%r9) ++ locfhl %r6,-10000(%r9) ++ locfhm %r6,-10000(%r9) ++ locfhnhe %r6,-10000(%r9) ++ locfhlh %r6,-10000(%r9) ++ locfhne %r6,-10000(%r9) ++ locfhnz %r6,-10000(%r9) ++ locfhe %r6,-10000(%r9) ++ locfhz %r6,-10000(%r9) ++ locfhnlh %r6,-10000(%r9) ++ locfhhe %r6,-10000(%r9) ++ locfhnl %r6,-10000(%r9) ++ locfhnm %r6,-10000(%r9) ++ locfhle %r6,-10000(%r9) ++ locfhnh %r6,-10000(%r9) ++ locfhnp %r6,-10000(%r9) ++ locfhno %r6,-10000(%r9) ++ lochi %r6,-32765,12 ++ lochio %r6,-32765 ++ lochih %r6,-32765 ++ lochip %r6,-32765 ++ lochinle %r6,-32765 ++ lochil %r6,-32765 ++ lochim %r6,-32765 ++ lochinhe %r6,-32765 ++ lochilh %r6,-32765 ++ lochine %r6,-32765 ++ lochinz %r6,-32765 ++ lochie %r6,-32765 ++ lochiz %r6,-32765 ++ lochinlh %r6,-32765 ++ lochihe %r6,-32765 ++ lochinl %r6,-32765 ++ lochinm %r6,-32765 ++ lochile %r6,-32765 ++ lochinh %r6,-32765 ++ lochinp %r6,-32765 ++ lochino %r6,-32765 ++ locghi %r6,-32765,12 ++ locghio %r6,-32765 ++ locghih %r6,-32765 ++ locghip %r6,-32765 ++ locghinle %r6,-32765 ++ locghil %r6,-32765 ++ locghim %r6,-32765 ++ locghinhe %r6,-32765 ++ locghilh %r6,-32765 ++ locghine %r6,-32765 ++ locghinz %r6,-32765 ++ locghie %r6,-32765 ++ locghiz %r6,-32765 ++ locghinlh %r6,-32765 ++ locghihe %r6,-32765 ++ locghinl %r6,-32765 ++ locghinm %r6,-32765 ++ locghile %r6,-32765 ++ locghinh %r6,-32765 ++ locghinp %r6,-32765 ++ locghino %r6,-32765 ++ lochhi %r6,-32765,12 ++ lochhio %r6,-32765 ++ lochhih %r6,-32765 ++ lochhip %r6,-32765 ++ lochhinle %r6,-32765 ++ lochhil %r6,-32765 ++ lochhim %r6,-32765 ++ lochhinhe %r6,-32765 ++ lochhilh %r6,-32765 ++ lochhine %r6,-32765 ++ lochhinz %r6,-32765 ++ lochhie %r6,-32765 ++ lochhiz %r6,-32765 ++ lochhinlh %r6,-32765 ++ lochhihe %r6,-32765 ++ lochhinl %r6,-32765 ++ lochhinm %r6,-32765 ++ lochhile %r6,-32765 ++ lochhinh %r6,-32765 ++ lochhinp %r6,-32765 ++ lochhino %r6,-32765 ++ stocfh %r6,-10000(%r9),13 ++ stocfho %r6,-10000(%r9) ++ stocfhh %r6,-10000(%r9) ++ stocfhp %r6,-10000(%r9) ++ stocfhnle %r6,-10000(%r9) ++ stocfhl %r6,-10000(%r9) ++ stocfhm %r6,-10000(%r9) ++ stocfhnhe %r6,-10000(%r9) ++ stocfhlh %r6,-10000(%r9) ++ stocfhne %r6,-10000(%r9) ++ stocfhnz %r6,-10000(%r9) ++ stocfhe %r6,-10000(%r9) ++ stocfhz %r6,-10000(%r9) ++ stocfhnlh %r6,-10000(%r9) ++ stocfhhe %r6,-10000(%r9) ++ stocfhnl %r6,-10000(%r9) ++ stocfhnm %r6,-10000(%r9) ++ stocfhle %r6,-10000(%r9) ++ stocfhnh %r6,-10000(%r9) ++ stocfhnp %r6,-10000(%r9) ++ stocfhno %r6,-10000(%r9) ++ llzrgf %r6,-10000(%r9,%r11) ++ lzrf %r6,-10000(%r9,%r11) ++ lzrg %r6,-10000(%r9,%r11) ++ ppno %r6,%r9 +diff --git a/opcodes/s390-opc.c b/opcodes/s390-opc.c +index ca82ce5..6f66fd8 100644 +--- a/opcodes/s390-opc.c ++++ b/opcodes/s390-opc.c +@@ -311,6 +311,7 @@ const struct s390_operand s390_operands[] = + #define INSTR_RIE_R0I0 6, { R_8,I16_16,0,0,0,0 } /* e.g. citne */ + #define INSTR_RIE_R0UU 6, { R_8,U16_16,U4_32,0,0,0 } /* e.g. clfit */ + #define INSTR_RIE_R0U0 6, { R_8,U16_16,0,0,0,0 } /* e.g. clfitne */ ++#define INSTR_RIE_RUI0 6, { R_8,I16_16,U4_12,0,0,0 } /* e.g. lochi */ + #define INSTR_RIE_RRUUU 6, { R_8,R_12,U8_16,U8_24,U8_32,0 } /* e.g. rnsbg */ + #define INSTR_RIL_0P 6, { J32_16,0,0,0,0 } /* e.g. jg */ + #define INSTR_RIL_RP 6, { R_8,J32_16,0,0,0,0 } /* e.g. brasl */ +@@ -515,6 +516,7 @@ const struct s390_operand s390_operands[] = + #define MASK_RIE_R0I0 { 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff } + #define MASK_RIE_R0UU { 0xff, 0x0f, 0x00, 0x00, 0x0f, 0xff } + #define MASK_RIE_R0U0 { 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff } ++#define MASK_RIE_RUI0 { 0xff, 0x00, 0x00, 0x00, 0xff, 0xff } + #define MASK_RIE_RRUUU { 0xff, 0x00, 0x00, 0x00, 0x00, 0xff } + #define MASK_RIL_0P { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } + #define MASK_RIL_RP { 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00 } +diff --git a/opcodes/s390-opc.txt b/opcodes/s390-opc.txt +index 2a5e1dd..3429494 100644 +--- a/opcodes/s390-opc.txt ++++ b/opcodes/s390-opc.txt +@@ -1656,3 +1656,26 @@ e700000830e2 wfsdb VRR_VVV "vector fp subtract" z13 zarch + e7000000004a vftci VRI_VVUUU "vector fp test data class immediate" z13 zarch + e7000000304a vftcidb VRI_VVU2 "vector fp test data class immediate" z13 zarch + e7000008304a wftcidb VRI_VVU2 "vector fp test data class immediate" z13 zarch ++ ++ed00000000ae cdpt RSL_LRDFU "convert from packed to long dfp" z13 zarch ++ed00000000af cxpt RSL_LRDFEU "convert from packed to extended dfp" z13 zarch ++ed00000000ac cpdt RSL_LRDFU "convert from long dfp to packed" z13 zarch ++ed00000000ad cpxt RSL_LRDFEU "convert from extended dfp to packed" z13 zarch ++ ++b9e0 locfhr RRF_U0RR "load high on condition from gpr" z13 zarch ++b9e000000000 locfhr*16 RRF_00RR "load high on condition from gpr" z13 zarch ++eb00000000e0 locfh RSY_RURD2 "load high on condition from memory" z13 zarch ++eb00000000e0 locfh*12 RSY_R0RD "load high on condition from memory" z13 zarch ++ec0000000042 lochi RIE_RUI0 "load halfword immediate on condition into 32 bit gpr" z13 zarch ++ec0000000042 lochi*12 RIE_R0I0 "load halfword immediate on condition into 32 bit gpr" z13 zarch ++ec0000000046 locghi RIE_RUI0 "load halfword immediate on condition into 64 bit gpr" z13 zarch ++ec0000000046 locghi*12 RIE_R0I0 "load halfword immediate on condition into 64 bit gpr" z13 zarch ++ec000000004e lochhi RIE_RUI0 "load halfword high immediate on condition" z13 zarch ++ec000000004e lochhi*12 RIE_R0I0 "load halfword high immediate on condition" z13 zarch ++eb00000000e1 stocfh RSY_RURD2 "store high on condition" z13 zarch ++eb00000000e1 stocfh*12 RSY_R0RD "store high on condition" z13 zarch ++ ++e3000000003a llzrgf RXY_RRRD "load logical and zero rightmost bytes 32->64" z13 zarch ++e3000000003b lzrf RXY_RRRD "load and zero rightmost byte 32->32" z13 zarch ++e3000000002a lzrg RXY_RRRD "load and zero rightmost byte 64->64" z13 zarch ++b9ec ppno RRE_RR "perform pseudorandom number operation" z13 zarch +-- +2.3.0 + diff --git a/0004-S-390-Fixes-for-z13-instructions.patch b/0004-S-390-Fixes-for-z13-instructions.patch new file mode 100644 index 0000000..5d54962 --- /dev/null +++ b/0004-S-390-Fixes-for-z13-instructions.patch @@ -0,0 +1,135 @@ +From 29983261245edabe68ab379d8e8f7691de467a57 Mon Sep 17 00:00:00 2001 +From: Andreas Krebbel +Date: Mon, 27 Apr 2015 10:29:16 +0200 +Subject: [PATCH 4/5] S/390: Fixes for z13 instructions. + +opcodes/ + * s390-opc.c: New instruction type VV0UU2. + * s390-opc.txt: Fix instruction types for VFCE, VLDE, VFSQ, WFK, + and WFC. + +gas/testsuite/ + * gas/s390/zarch-z13.d: Fix tests for VFCE, VLDE, VFSQ, WFK, and + WFC. + * gas/s390/zarch-z13.s: Likewise. + +# Conflicts: +# gas/testsuite/ChangeLog +# opcodes/ChangeLog +--- + gas/testsuite/gas/s390/zarch-z13.d | 10 +++++----- + gas/testsuite/gas/s390/zarch-z13.s | 2 +- + opcodes/s390-opc.c | 2 ++ + opcodes/s390-opc.txt | 10 +++++----- + 4 files changed, 13 insertions(+), 11 deletions(-) + +diff --git a/gas/testsuite/gas/s390/zarch-z13.d b/gas/testsuite/gas/s390/zarch-z13.d +index b2e010d..66808d6 100644 +--- a/gas/testsuite/gas/s390/zarch-z13.d ++++ b/gas/testsuite/gas/s390/zarch-z13.d +@@ -476,11 +476,11 @@ Disassembly of section .text: + .*: e7 f1 40 0c d6 e3 [ ]*vfa %v15,%v17,%v20,13,12 + .*: e7 f1 40 00 36 e3 [ ]*vfadb %v15,%v17,%v20 + .*: e7 f1 40 08 36 e3 [ ]*wfadb %v15,%v17,%v20 +-.*: e7 f1 00 cd 04 cb [ ]*wfc %v15,%v17,13,12 ++.*: e7 f1 00 0c d4 cb [ ]*wfc %v15,%v17,13,12 + .*: e7 f1 00 00 34 cb [ ]*wfcdb %v15,%v17 +-.*: e7 f1 00 cd 04 ca [ ]*wfk %v15,%v17,13,12 ++.*: e7 f1 00 0c d4 ca [ ]*wfk %v15,%v17,13,12 + .*: e7 f1 00 00 34 ca [ ]*wfkdb %v15,%v17 +-.*: e7 f1 40 00 06 e8 [ ]*vfce %v15,%v17,%v20 ++.*: e7 f1 40 bc d6 e8 [ ]*vfce %v15,%v17,%v20,13,12,11 + .*: e7 f1 40 00 36 e8 [ ]*vfcedb %v15,%v17,%v20 + .*: e7 f1 40 10 36 e8 [ ]*vfcedbs %v15,%v17,%v20 + .*: e7 f1 40 08 36 e8 [ ]*wfcedb %v15,%v17,%v20 +@@ -513,7 +513,7 @@ Disassembly of section .text: + .*: e7 f1 00 bc d4 c7 [ ]*vfi %v15,%v17,13,12,11 + .*: e7 f1 00 cd 34 c7 [ ]*wfidb %v15,%v17,5,12 + .*: e7 f1 00 cd 34 c7 [ ]*wfidb %v15,%v17,5,12 +-.*: e7 f1 00 cd 04 c4 [ ]*vlde %v15,%v17,13,12 ++.*: e7 f1 00 0c d4 c4 [ ]*vlde %v15,%v17,13,12 + .*: e7 f1 00 00 24 c4 [ ]*vldeb %v15,%v17 + .*: e7 f1 00 08 24 c4 [ ]*wldeb %v15,%v17 + .*: e7 f1 00 bc d4 c5 [ ]*vled %v15,%v17,13,12,11 +@@ -537,7 +537,7 @@ Disassembly of section .text: + .*: e7 f1 00 18 34 cc [ ]*wflndb %v15,%v17 + .*: e7 f1 00 20 34 cc [ ]*vflpdb %v15,%v17 + .*: e7 f1 00 28 34 cc [ ]*wflpdb %v15,%v17 +-.*: e7 f1 00 cd 04 ce [ ]*vfsq %v15,%v17,13,12 ++.*: e7 f1 00 0c d4 ce [ ]*vfsq %v15,%v17,13,12 + .*: e7 f1 00 00 34 ce [ ]*vfsqdb %v15,%v17 + .*: e7 f1 00 08 34 ce [ ]*wfsqdb %v15,%v17 + .*: e7 f1 40 0c d6 e2 [ ]*vfs %v15,%v17,%v20,13,12 +diff --git a/gas/testsuite/gas/s390/zarch-z13.s b/gas/testsuite/gas/s390/zarch-z13.s +index 688020d..c2964d8 100644 +--- a/gas/testsuite/gas/s390/zarch-z13.s ++++ b/gas/testsuite/gas/s390/zarch-z13.s +@@ -474,7 +474,7 @@ foo: + wfcdb %v15,%v17 + wfk %v15,%v17,13,12 + wfkdb %v15,%v17 +- vfce %v15,%v17,%v20 ++ vfce %v15,%v17,%v20,13,12,11 + vfcedb %v15,%v17,%v20 + vfcedbs %v15,%v17,%v20 + wfcedb %v15,%v17,%v20 +diff --git a/opcodes/s390-opc.c b/opcodes/s390-opc.c +index 6f66fd8..9c557fa 100644 +--- a/opcodes/s390-opc.c ++++ b/opcodes/s390-opc.c +@@ -484,6 +484,7 @@ const struct s390_operand s390_operands[] = + #define INSTR_VRR_VV0U 6, { V_8,V_12,U4_32,0,0,0 } /* e.g. vseg */ + #define INSTR_VRR_VV0U2 6, { V_8,V_12,U4_24,0,0,0 } /* e.g. vistrb*/ + #define INSTR_VRR_VV0UU 6, { V_8,V_12,U4_28,U4_24,0,0 } /* e.g. vcdgb */ ++#define INSTR_VRR_VV0UU2 6, { V_8,V_12,U4_32,U4_28,0,0 } /* e.g. wfc */ + #define INSTR_VRR_VV0UU8 6, { V_8,V_12,U4_OR8_28,U4_24,0,0 } /* e.g. wcdgb */ + #define INSTR_VRR_VV 6, { V_8,V_12,0,0,0,0 } /* e.g. vsegb */ + #define INSTR_VRR_VVVUU0V 6, { V_8,V_12,V_16,V_32,U4_20,U4_24 } /* e.g. vstrc */ +@@ -690,6 +691,7 @@ const struct s390_operand s390_operands[] = + #define MASK_VRR_VV0U { 0xff, 0x00, 0xff, 0xff, 0x00, 0xff } + #define MASK_VRR_VV0U2 { 0xff, 0x00, 0xff, 0x0f, 0xf0, 0xff } + #define MASK_VRR_VV0UU { 0xff, 0x00, 0xff, 0x00, 0xf0, 0xff } ++#define MASK_VRR_VV0UU2 { 0xff, 0x00, 0xff, 0xf0, 0x00, 0xff } + #define MASK_VRR_VV0UU8 { 0xff, 0x00, 0xff, 0x08, 0xf0, 0xff } + #define MASK_VRR_VV { 0xff, 0x00, 0xff, 0xff, 0xf0, 0xff } + #define MASK_VRR_VVVUU0V { 0xff, 0x00, 0x00, 0x0f, 0x00, 0xff } +diff --git a/opcodes/s390-opc.txt b/opcodes/s390-opc.txt +index 3429494..b86da96 100644 +--- a/opcodes/s390-opc.txt ++++ b/opcodes/s390-opc.txt +@@ -1586,11 +1586,11 @@ e7000230008a vstrczfs VRR_VVVU0VB3 "vector string range compare word" z13 zarch + e700000000e3 vfa VRR_VVV0UU "vector fp add" z13 zarch + e700000030e3 vfadb VRR_VVV "vector fp add" z13 zarch + e700000830e3 wfadb VRR_VVV "vector fp add" z13 zarch +-e700000000cb wfc VRR_VV0UU "vector fp compare scalar" z13 zarch ++e700000000cb wfc VRR_VV0UU2 "vector fp compare scalar" z13 zarch + e700000030cb wfcdb VRR_VV "vector fp compare scalar" z13 zarch +-e700000000ca wfk VRR_VV0UU "vector fp compare and signal scalar" z13 zarch ++e700000000ca wfk VRR_VV0UU2 "vector fp compare and signal scalar" z13 zarch + e700000030ca wfkdb VRR_VV "vector fp compare and signal scalar" z13 zarch +-e700000000e8 vfce VRR_VVV "vector fp compare equal" z13 zarch ++e700000000e8 vfce VRR_VVV0UUU "vector fp compare equal" z13 zarch + e700000030e8 vfcedb VRR_VVV "vector fp compare equal" z13 zarch + e700001030e8 vfcedbs VRR_VVV "vector fp compare equal" z13 zarch + e700000830e8 wfcedb VRR_VVV "vector fp compare equal" z13 zarch +@@ -1623,7 +1623,7 @@ e700000830e5 wfddb VRR_VVV "vector fp divide" z13 zarch + e700000000c7 vfi VRR_VV0UUU "vector load fp integer" z13 zarch + e700000030c7 vfidb VRR_VV0UU "vector load fp integer" z13 zarch + e700000830c7 wfidb VRR_VV0UU8 "vector load fp integer" z13 zarch +-e700000000c4 vlde VRR_VV0UU "vector fp load lengthened" z13 zarch ++e700000000c4 vlde VRR_VV0UU2 "vector fp load lengthened" z13 zarch + e700000020c4 vldeb VRR_VV "vector fp load lengthened" z13 zarch + e700000820c4 wldeb VRR_VV "vector fp load lengthened" z13 zarch + e700000000c5 vled VRR_VV0UUU "vector fp load rounded" z13 zarch +@@ -1647,7 +1647,7 @@ e700001030cc vflndb VRR_VV "vector fp perform sign operation" z13 zarch + e700001830cc wflndb VRR_VV "vector fp perform sign operation" z13 zarch + e700002030cc vflpdb VRR_VV "vector fp perform sign operation" z13 zarch + e700002830cc wflpdb VRR_VV "vector fp perform sign operation" z13 zarch +-e700000000ce vfsq VRR_VV0UU "vector fp square root" z13 zarch ++e700000000ce vfsq VRR_VV0UU2 "vector fp square root" z13 zarch + e700000030ce vfsqdb VRR_VV "vector fp square root" z13 zarch + e700000830ce wfsqdb VRR_VV "vector fp square root" z13 zarch + e700000000e2 vfs VRR_VVV0UU "vector fp subtract" z13 zarch +-- +2.3.0 + diff --git a/0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch b/0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch new file mode 100644 index 0000000..e07acb7 --- /dev/null +++ b/0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch @@ -0,0 +1,289 @@ +From d77ae458893b48e4e4ad5aa74a94023dff4ec4e1 Mon Sep 17 00:00:00 2001 +From: Andreas Krebbel +Date: Mon, 27 Apr 2015 10:32:23 +0200 +Subject: [PATCH 5/5] S/390: z13 use GNU attribute to indicate vector ABI + +bfd/ + * elf-s390-common.c (elf_s390_merge_obj_attributes): New function. + * elf32-s390.c (elf32_s390_merge_private_bfd_data): Call + elf_s390_merge_obj_attributes. + * elf64-s390.c (elf64_s390_merge_private_bfd_data): New function. + +binutils/ + * readelf.c (display_s390_gnu_attribute): New function. + (process_s390_specific): New function. + (process_arch_specific): Call process_s390_specific. + +gas/ + * doc/as.texinfo: Document Tag_GNU_S390_ABI_Vector. + +include/elf/ + * s390.h: Define Tag_GNU_S390_ABI_Vector. + +# Conflicts: +# bfd/ChangeLog +# binutils/ChangeLog +# gas/testsuite/ChangeLog +# include/elf/ChangeLog + +# Conflicts: +# bfd/elf-s390-common.c +--- + bfd/elf-s390-common.c | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++ + bfd/elf32-s390.c | 9 ++++++++ + bfd/elf64-s390.c | 18 +++++++++++++++- + binutils/readelf.c | 46 ++++++++++++++++++++++++++++++++++++++++ + gas/doc/as.texinfo | 16 ++++++++++++++ + include/elf/s390.h | 15 +++++++++++-- + 6 files changed, 159 insertions(+), 3 deletions(-) + +diff --git a/bfd/elf-s390-common.c b/bfd/elf-s390-common.c +index c74883c..de87ff8 100644 +--- a/bfd/elf-s390-common.c ++++ b/bfd/elf-s390-common.c +@@ -242,3 +242,61 @@ elf_s390_add_symbol_hook (bfd *abfd, + + return TRUE; + } ++ ++/* Merge object attributes from IBFD into OBFD. Raise an error if ++ there are conflicting attributes. */ ++static bfd_boolean ++elf_s390_merge_obj_attributes (bfd *ibfd, bfd *obfd) ++{ ++ obj_attribute *in_attr, *in_attrs; ++ obj_attribute *out_attr, *out_attrs; ++ ++ if (!elf_known_obj_attributes_proc (obfd)[0].i) ++ { ++ /* This is the first object. Copy the attributes. */ ++ _bfd_elf_copy_obj_attributes (ibfd, obfd); ++ ++ /* Use the Tag_null value to indicate the attributes have been ++ initialized. */ ++ elf_known_obj_attributes_proc (obfd)[0].i = 1; ++ ++ return TRUE; ++ } ++ ++ in_attrs = elf_known_obj_attributes (ibfd)[OBJ_ATTR_GNU]; ++ out_attrs = elf_known_obj_attributes (obfd)[OBJ_ATTR_GNU]; ++ ++ /* Check for conflicting Tag_GNU_S390_ABI_Vector attributes and ++ merge non-conflicting ones. */ ++ in_attr = &in_attrs[Tag_GNU_S390_ABI_Vector]; ++ out_attr = &out_attrs[Tag_GNU_S390_ABI_Vector]; ++ ++ if (in_attr->i > 2) ++ _bfd_error_handler ++ (_("Warning: %B uses unknown vector ABI %d"), ibfd, ++ in_attr->i); ++ else if (out_attr->i > 2) ++ _bfd_error_handler ++ (_("Warning: %B uses unknown vector ABI %d"), obfd, ++ out_attr->i); ++ else if (in_attr->i != out_attr->i) ++ { ++ out_attr->type = ATTR_TYPE_FLAG_INT_VAL; ++ ++ if (in_attr->i && out_attr->i) ++ { ++ const char abi_str[3][9] = { "none", "software", "hardware" }; ++ ++ _bfd_error_handler ++ (_("Warning: %B uses vector %s ABI, %B uses %s ABI"), ++ ibfd, obfd, abi_str[in_attr->i], abi_str[out_attr->i]); ++ } ++ if (in_attr->i > out_attr->i) ++ out_attr->i = in_attr->i; ++ } ++ ++ /* Merge Tag_compatibility attributes and any common GNU ones. */ ++ _bfd_elf_merge_object_attributes (ibfd, obfd); ++ ++ return TRUE; ++} +diff --git a/bfd/elf32-s390.c b/bfd/elf32-s390.c +index ebcb028..64819b9 100644 +--- a/bfd/elf32-s390.c ++++ b/bfd/elf32-s390.c +@@ -3980,9 +3980,18 @@ elf_s390_plt_sym_val (bfd_vma i, const asection *plt, + return plt->vma + PLT_FIRST_ENTRY_SIZE + i * PLT_ENTRY_SIZE; + } + ++/* Merge backend specific data from an object file to the output ++ object file when linking. */ ++ + static bfd_boolean + elf32_s390_merge_private_bfd_data (bfd *ibfd, bfd *obfd) + { ++ if (!is_s390_elf (ibfd) || !is_s390_elf (obfd)) ++ return TRUE; ++ ++ if (!elf_s390_merge_obj_attributes (ibfd, obfd)) ++ return FALSE; ++ + elf_elfheader (obfd)->e_flags |= elf_elfheader (ibfd)->e_flags; + return TRUE; + } +diff --git a/bfd/elf64-s390.c b/bfd/elf64-s390.c +index b2f1aa5..bbdee31 100644 +--- a/bfd/elf64-s390.c ++++ b/bfd/elf64-s390.c +@@ -3766,6 +3766,21 @@ elf_s390_plt_sym_val (bfd_vma i, const asection *plt, + return plt->vma + PLT_FIRST_ENTRY_SIZE + i * PLT_ENTRY_SIZE; + } + ++/* Merge backend specific data from an object file to the output ++ object file when linking. */ ++ ++static bfd_boolean ++elf64_s390_merge_private_bfd_data (bfd *ibfd, bfd *obfd) ++{ ++ if (!is_s390_elf (ibfd) || !is_s390_elf (obfd)) ++ return TRUE; ++ ++ if (!elf_s390_merge_obj_attributes (ibfd, obfd)) ++ return FALSE; ++ ++ return TRUE; ++} ++ + /* Why was the hash table entry size definition changed from + ARCH_SIZE/8 to 4? This breaks the 64 bit dynamic linker and + this is the only reason for the s390_elf64_size_info structure. */ +@@ -3824,7 +3839,8 @@ const struct elf_size_info s390_elf64_size_info = + #define bfd_elf64_bfd_is_local_label_name elf_s390_is_local_label_name + #define bfd_elf64_bfd_link_hash_table_create elf_s390_link_hash_table_create + #define bfd_elf64_bfd_reloc_type_lookup elf_s390_reloc_type_lookup +-#define bfd_elf64_bfd_reloc_name_lookup elf_s390_reloc_name_lookup ++#define bfd_elf64_bfd_reloc_name_lookup elf_s390_reloc_name_lookup ++#define bfd_elf64_bfd_merge_private_bfd_data elf64_s390_merge_private_bfd_data + + #define elf_backend_adjust_dynamic_symbol elf_s390_adjust_dynamic_symbol + #define elf_backend_check_relocs elf_s390_check_relocs +diff --git a/binutils/readelf.c b/binutils/readelf.c +index 0c00b2f..9ae3cc6 100644 +--- a/binutils/readelf.c ++++ b/binutils/readelf.c +@@ -12273,6 +12273,41 @@ display_power_gnu_attribute (unsigned char * p, + return display_tag_value (tag & 1, p, end); + } + ++static unsigned char * ++display_s390_gnu_attribute (unsigned char * p, ++ int tag, ++ const unsigned char * const end) ++{ ++ unsigned int len; ++ int val; ++ ++ if (tag == Tag_GNU_S390_ABI_Vector) ++ { ++ val = read_uleb128 (p, &len, end); ++ p += len; ++ printf (" Tag_GNU_S390_ABI_Vector: "); ++ ++ switch (val) ++ { ++ case 0: ++ printf (_("any\n")); ++ break; ++ case 1: ++ printf (_("software\n")); ++ break; ++ case 2: ++ printf (_("hardware\n")); ++ break; ++ default: ++ printf ("??? (%d)\n", val); ++ break; ++ } ++ return p; ++ } ++ ++ return display_tag_value (tag & 1, p, end); ++} ++ + static void + display_sparc_hwcaps (int mask) + { +@@ -13044,6 +13079,13 @@ process_power_specific (FILE * file) + } + + static int ++process_s390_specific (FILE * file) ++{ ++ return process_attributes (file, NULL, SHT_GNU_ATTRIBUTES, NULL, ++ display_s390_gnu_attribute); ++} ++ ++static int + process_sparc_specific (FILE * file) + { + return process_attributes (file, NULL, SHT_GNU_ATTRIBUTES, NULL, +@@ -14803,6 +14845,10 @@ process_arch_specific (FILE * file) + case EM_PPC: + return process_power_specific (file); + break; ++ case EM_S390: ++ case EM_S390_OLD: ++ return process_s390_specific (file); ++ break; + case EM_SPARC: + case EM_SPARC32PLUS: + case EM_SPARCV9: +diff --git a/gas/doc/as.texinfo b/gas/doc/as.texinfo +index 2c7d71e..21e11c4 100644 +--- a/gas/doc/as.texinfo ++++ b/gas/doc/as.texinfo +@@ -7086,6 +7086,22 @@ The vector ABI used by this object file. The value will be: + @end itemize + @end table + ++@subsection IBM z Systems Attributes ++ ++@table @r ++@item Tag_GNU_S390_ABI_Vector (8) ++The vector ABI used by this object file. The value will be: ++ ++@itemize @bullet ++@item ++0 for files not affected by the vector ABI. ++@item ++1 for files using software vector ABI. ++@item ++2 for files using hardware vector ABI. ++@end itemize ++@end table ++ + @node Defining New Object Attributes + @section Defining New Object Attributes + +diff --git a/include/elf/s390.h b/include/elf/s390.h +index 02e1db2..2aea3bb 100644 +--- a/include/elf/s390.h ++++ b/include/elf/s390.h +@@ -129,6 +129,17 @@ START_RELOC_NUMBERS (elf_s390_reloc_type) + RELOC_NUMBER (R_390_GNU_VTENTRY, 251) + END_RELOC_NUMBERS (R_390_max) + +-#endif /* _ELF_390_H */ +- ++/* Object attribute tags. */ ++enum ++{ ++ /* 0-3 are generic. */ ++ /* 4 is reserved for the FP ABI. */ ++ ++ /* Vector ABI: ++ 0 = not affected by the vector ABI, or not tagged. ++ 1 = software vector ABI being used ++ 2 = hardware vector ABI being used. */ ++ Tag_GNU_S390_ABI_Vector = 8, ++}; + ++#endif /* _ELF_390_H */ +-- +2.3.0 + diff --git a/binutils.changes b/binutils.changes index a27901d..3f603ee 100644 --- a/binutils.changes +++ b/binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/binutils.spec b/binutils.spec index 019ca48..d94b1c1 100644 --- a/binutils.spec +++ b/binutils.spec @@ -98,6 +98,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -170,6 +175,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index a27901d..3f603ee 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index 49dc799..0afb2e9 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -101,6 +101,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -173,6 +178,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index a27901d..3f603ee 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index 7ba289f..cd9cd90 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -101,6 +101,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -173,6 +178,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index a27901d..3f603ee 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index 6e08c5c..ee0ac01 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -101,6 +101,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -173,6 +178,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-epiphany-binutils.changes b/cross-epiphany-binutils.changes index a27901d..3f603ee 100644 --- a/cross-epiphany-binutils.changes +++ b/cross-epiphany-binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index d8435d7..2a7877b 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -101,6 +101,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -173,6 +178,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index a27901d..3f603ee 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index 71153fd..e3ddc12 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -101,6 +101,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -173,6 +178,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index a27901d..3f603ee 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index a341802..5313985 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -101,6 +101,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -173,6 +178,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index a27901d..3f603ee 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index 5cc5a74..13b81c7 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -101,6 +101,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -173,6 +178,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index a27901d..3f603ee 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index 68f3033..ffa25b0 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -101,6 +101,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -173,6 +178,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-m68k-binutils.changes b/cross-m68k-binutils.changes index a27901d..3f603ee 100644 --- a/cross-m68k-binutils.changes +++ b/cross-m68k-binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index 51f1419..cbdd729 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -101,6 +101,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -173,6 +178,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index a27901d..3f603ee 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index 3688cb7..0d5522f 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -101,6 +101,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -173,6 +178,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index a27901d..3f603ee 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index 293fa7d..0572c3c 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -101,6 +101,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -173,6 +178,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index a27901d..3f603ee 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index d192ca8..4cf3434 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -101,6 +101,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -173,6 +178,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-ppc64le-binutils.changes b/cross-ppc64le-binutils.changes index a27901d..3f603ee 100644 --- a/cross-ppc64le-binutils.changes +++ b/cross-ppc64le-binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index b7a97e5..317c436 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -101,6 +101,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -173,6 +178,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index a27901d..3f603ee 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index 9278ccb..940f77f 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -101,6 +101,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -173,6 +178,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index a27901d..3f603ee 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index 454ec57..685ba22 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -101,6 +101,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -173,6 +178,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index a27901d..3f603ee 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index 6315c3b..ef7e05e 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -101,6 +101,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -173,6 +178,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index a27901d..3f603ee 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index a85594f..4ea122f 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -101,6 +101,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -173,6 +178,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index a27901d..3f603ee 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index c38f028..3c6b7c9 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -101,6 +101,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -173,6 +178,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index a27901d..3f603ee 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -3,6 +3,13 @@ Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de - Update to 2.25 branch at 2f5b97b4f (changes binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . ------------------------------------------------------------------- Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index da1bfab..430c8bd 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -101,6 +101,11 @@ Patch18: gold-depend-on-opcodes.diff Patch22: binutils-bfd_h.patch Patch23: binutils-fix-gold-aarch64.diff Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch @@ -173,6 +178,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch22 %patch23 %patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 From 347c51db60226d4bcf06437921b9d0107989c2760852c1b03a2b28bab5756d8f Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Thu, 9 Jul 2015 14:47:53 +0000 Subject: [PATCH 10/13] Meeh, refresh patch with fuzz. OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=190 --- ...GNU-attribute-to-indicate-vector-ABI.patch | 76 +++++++++---------- 1 file changed, 36 insertions(+), 40 deletions(-) diff --git a/0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch b/0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch index e07acb7..38ed1a8 100644 --- a/0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch +++ b/0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch @@ -37,13 +37,13 @@ include/elf/ include/elf/s390.h | 15 +++++++++++-- 6 files changed, 159 insertions(+), 3 deletions(-) -diff --git a/bfd/elf-s390-common.c b/bfd/elf-s390-common.c -index c74883c..de87ff8 100644 ---- a/bfd/elf-s390-common.c -+++ b/bfd/elf-s390-common.c -@@ -242,3 +242,61 @@ elf_s390_add_symbol_hook (bfd *abfd, - - return TRUE; +Index: binutils-2.25.0/bfd/elf-s390-common.c +=================================================================== +--- binutils-2.25.0.orig/bfd/elf-s390-common.c 2015-07-09 16:44:50.000000000 +0200 ++++ binutils-2.25.0/bfd/elf-s390-common.c 2015-07-09 16:44:51.000000000 +0200 +@@ -254,3 +254,61 @@ elf_s390_elf_sort_relocs_p (asection *se + { + return (sec->flags & SEC_CODE) == 0; } + +/* Merge object attributes from IBFD into OBFD. Raise an error if @@ -103,11 +103,11 @@ index c74883c..de87ff8 100644 + + return TRUE; +} -diff --git a/bfd/elf32-s390.c b/bfd/elf32-s390.c -index ebcb028..64819b9 100644 ---- a/bfd/elf32-s390.c -+++ b/bfd/elf32-s390.c -@@ -3980,9 +3980,18 @@ elf_s390_plt_sym_val (bfd_vma i, const asection *plt, +Index: binutils-2.25.0/bfd/elf32-s390.c +=================================================================== +--- binutils-2.25.0.orig/bfd/elf32-s390.c 2015-07-09 16:44:50.000000000 +0200 ++++ binutils-2.25.0/bfd/elf32-s390.c 2015-07-09 16:44:51.000000000 +0200 +@@ -4001,9 +4001,18 @@ elf_s390_plt_sym_val (bfd_vma i, const a return plt->vma + PLT_FIRST_ENTRY_SIZE + i * PLT_ENTRY_SIZE; } @@ -126,11 +126,11 @@ index ebcb028..64819b9 100644 elf_elfheader (obfd)->e_flags |= elf_elfheader (ibfd)->e_flags; return TRUE; } -diff --git a/bfd/elf64-s390.c b/bfd/elf64-s390.c -index b2f1aa5..bbdee31 100644 ---- a/bfd/elf64-s390.c -+++ b/bfd/elf64-s390.c -@@ -3766,6 +3766,21 @@ elf_s390_plt_sym_val (bfd_vma i, const asection *plt, +Index: binutils-2.25.0/bfd/elf64-s390.c +=================================================================== +--- binutils-2.25.0.orig/bfd/elf64-s390.c 2015-07-09 16:44:50.000000000 +0200 ++++ binutils-2.25.0/bfd/elf64-s390.c 2015-07-09 16:44:51.000000000 +0200 +@@ -3766,6 +3766,21 @@ elf_s390_plt_sym_val (bfd_vma i, const a return plt->vma + PLT_FIRST_ENTRY_SIZE + i * PLT_ENTRY_SIZE; } @@ -152,7 +152,7 @@ index b2f1aa5..bbdee31 100644 /* Why was the hash table entry size definition changed from ARCH_SIZE/8 to 4? This breaks the 64 bit dynamic linker and this is the only reason for the s390_elf64_size_info structure. */ -@@ -3824,7 +3839,8 @@ const struct elf_size_info s390_elf64_size_info = +@@ -3824,7 +3839,8 @@ const struct elf_size_info s390_elf64_si #define bfd_elf64_bfd_is_local_label_name elf_s390_is_local_label_name #define bfd_elf64_bfd_link_hash_table_create elf_s390_link_hash_table_create #define bfd_elf64_bfd_reloc_type_lookup elf_s390_reloc_type_lookup @@ -162,11 +162,11 @@ index b2f1aa5..bbdee31 100644 #define elf_backend_adjust_dynamic_symbol elf_s390_adjust_dynamic_symbol #define elf_backend_check_relocs elf_s390_check_relocs -diff --git a/binutils/readelf.c b/binutils/readelf.c -index 0c00b2f..9ae3cc6 100644 ---- a/binutils/readelf.c -+++ b/binutils/readelf.c -@@ -12273,6 +12273,41 @@ display_power_gnu_attribute (unsigned char * p, +Index: binutils-2.25.0/binutils/readelf.c +=================================================================== +--- binutils-2.25.0.orig/binutils/readelf.c 2015-07-09 16:44:50.000000000 +0200 ++++ binutils-2.25.0/binutils/readelf.c 2015-07-09 16:44:51.000000000 +0200 +@@ -12462,6 +12462,41 @@ display_power_gnu_attribute (unsigned ch return display_tag_value (tag & 1, p, end); } @@ -208,7 +208,7 @@ index 0c00b2f..9ae3cc6 100644 static void display_sparc_hwcaps (int mask) { -@@ -13044,6 +13079,13 @@ process_power_specific (FILE * file) +@@ -13233,6 +13268,13 @@ process_power_specific (FILE * file) } static int @@ -222,7 +222,7 @@ index 0c00b2f..9ae3cc6 100644 process_sparc_specific (FILE * file) { return process_attributes (file, NULL, SHT_GNU_ATTRIBUTES, NULL, -@@ -14803,6 +14845,10 @@ process_arch_specific (FILE * file) +@@ -15046,6 +15088,10 @@ process_arch_specific (FILE * file) case EM_PPC: return process_power_specific (file); break; @@ -233,11 +233,11 @@ index 0c00b2f..9ae3cc6 100644 case EM_SPARC: case EM_SPARC32PLUS: case EM_SPARCV9: -diff --git a/gas/doc/as.texinfo b/gas/doc/as.texinfo -index 2c7d71e..21e11c4 100644 ---- a/gas/doc/as.texinfo -+++ b/gas/doc/as.texinfo -@@ -7086,6 +7086,22 @@ The vector ABI used by this object file. The value will be: +Index: binutils-2.25.0/gas/doc/as.texinfo +=================================================================== +--- binutils-2.25.0.orig/gas/doc/as.texinfo 2015-07-09 16:44:51.000000000 +0200 ++++ binutils-2.25.0/gas/doc/as.texinfo 2015-07-09 16:44:51.000000000 +0200 +@@ -7086,6 +7086,22 @@ The vector ABI used by this object file. @end itemize @end table @@ -260,22 +260,21 @@ index 2c7d71e..21e11c4 100644 @node Defining New Object Attributes @section Defining New Object Attributes -diff --git a/include/elf/s390.h b/include/elf/s390.h -index 02e1db2..2aea3bb 100644 ---- a/include/elf/s390.h -+++ b/include/elf/s390.h -@@ -129,6 +129,17 @@ START_RELOC_NUMBERS (elf_s390_reloc_type) +Index: binutils-2.25.0/include/elf/s390.h +=================================================================== +--- binutils-2.25.0.orig/include/elf/s390.h 2015-01-15 09:57:57.000000000 +0100 ++++ binutils-2.25.0/include/elf/s390.h 2015-07-09 16:44:51.000000000 +0200 +@@ -129,6 +129,17 @@ START_RELOC_NUMBERS (elf_s390_reloc_type RELOC_NUMBER (R_390_GNU_VTENTRY, 251) END_RELOC_NUMBERS (R_390_max) -#endif /* _ELF_390_H */ -- +/* Object attribute tags. */ +enum +{ + /* 0-3 are generic. */ + /* 4 is reserved for the FP ABI. */ -+ + + /* Vector ABI: + 0 = not affected by the vector ABI, or not tagged. + 1 = software vector ABI being used @@ -284,6 +283,3 @@ index 02e1db2..2aea3bb 100644 +}; +#endif /* _ELF_390_H */ --- -2.3.0 - From 6f8caac7e7d3ff27b9245170d41acf086c35e6f50188b5d3f2d99e25292d19fa Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Fri, 10 Jul 2015 21:02:31 +0000 Subject: [PATCH 11/13] Accepting request 315982 from home:AndreasSchwab:f - Work around qemu bug OBS-URL: https://build.opensuse.org/request/show/315982 OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=191 --- binutils.changes | 5 +++++ binutils.spec | 6 +++++- cross-aarch64-binutils.changes | 5 +++++ cross-aarch64-binutils.spec | 6 +++++- cross-arm-binutils.changes | 5 +++++ cross-arm-binutils.spec | 6 +++++- cross-avr-binutils.changes | 5 +++++ cross-avr-binutils.spec | 6 +++++- cross-epiphany-binutils.changes | 5 +++++ cross-epiphany-binutils.spec | 6 +++++- cross-hppa-binutils.changes | 5 +++++ cross-hppa-binutils.spec | 6 +++++- cross-hppa64-binutils.changes | 5 +++++ cross-hppa64-binutils.spec | 6 +++++- cross-i386-binutils.changes | 5 +++++ cross-i386-binutils.spec | 6 +++++- cross-ia64-binutils.changes | 5 +++++ cross-ia64-binutils.spec | 6 +++++- cross-m68k-binutils.changes | 5 +++++ cross-m68k-binutils.spec | 6 +++++- cross-mips-binutils.changes | 5 +++++ cross-mips-binutils.spec | 6 +++++- cross-ppc-binutils.changes | 5 +++++ cross-ppc-binutils.spec | 6 +++++- cross-ppc64-binutils.changes | 5 +++++ cross-ppc64-binutils.spec | 6 +++++- cross-ppc64le-binutils.changes | 5 +++++ cross-ppc64le-binutils.spec | 6 +++++- cross-s390-binutils.changes | 5 +++++ cross-s390-binutils.spec | 6 +++++- cross-s390x-binutils.changes | 5 +++++ cross-s390x-binutils.spec | 6 +++++- cross-sparc-binutils.changes | 5 +++++ cross-sparc-binutils.spec | 6 +++++- cross-sparc64-binutils.changes | 5 +++++ cross-sparc64-binutils.spec | 6 +++++- cross-spu-binutils.changes | 5 +++++ cross-spu-binutils.spec | 6 +++++- cross-x86_64-binutils.changes | 5 +++++ cross-x86_64-binutils.spec | 6 +++++- 40 files changed, 200 insertions(+), 20 deletions(-) diff --git a/binutils.changes b/binutils.changes index 3f603ee..fe7647a 100644 --- a/binutils.changes +++ b/binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/binutils.spec b/binutils.spec index d94b1c1..0730310 100644 --- a/binutils.spec +++ b/binutils.spec @@ -1,7 +1,7 @@ # # spec file for package binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -189,6 +189,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index 3f603ee..fe7647a 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index 0afb2e9..6a432f6 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-aarch64-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -192,6 +192,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index 3f603ee..fe7647a 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index cd9cd90..531e2c6 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-arm-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -192,6 +192,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index 3f603ee..fe7647a 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index ee0ac01..46d001e 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-avr-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -192,6 +192,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-epiphany-binutils.changes b/cross-epiphany-binutils.changes index 3f603ee..fe7647a 100644 --- a/cross-epiphany-binutils.changes +++ b/cross-epiphany-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index 2a7877b..8dc5208 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-epiphany-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -192,6 +192,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index 3f603ee..fe7647a 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index e3ddc12..5043c96 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-hppa-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -192,6 +192,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index 3f603ee..fe7647a 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index 5313985..7a33abc 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-hppa64-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -192,6 +192,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index 3f603ee..fe7647a 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index 13b81c7..32afc47 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-i386-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -192,6 +192,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index 3f603ee..fe7647a 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index ffa25b0..ad4de4e 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-ia64-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -192,6 +192,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-m68k-binutils.changes b/cross-m68k-binutils.changes index 3f603ee..fe7647a 100644 --- a/cross-m68k-binutils.changes +++ b/cross-m68k-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index cbdd729..6720813 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-m68k-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -192,6 +192,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index 3f603ee..fe7647a 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index 0d5522f..0cd682b 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-mips-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -192,6 +192,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index 3f603ee..fe7647a 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index 0572c3c..4630d0e 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-ppc-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -192,6 +192,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index 3f603ee..fe7647a 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index 4cf3434..ace3a5b 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-ppc64-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -192,6 +192,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-ppc64le-binutils.changes b/cross-ppc64le-binutils.changes index 3f603ee..fe7647a 100644 --- a/cross-ppc64le-binutils.changes +++ b/cross-ppc64le-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index 317c436..44f479a 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-ppc64le-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -192,6 +192,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index 3f603ee..fe7647a 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index 940f77f..880fdd8 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-s390-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -192,6 +192,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index 3f603ee..fe7647a 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index 685ba22..720bbe4 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-s390x-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -192,6 +192,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index 3f603ee..fe7647a 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index ef7e05e..39ed3e6 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-sparc-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -192,6 +192,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index 3f603ee..fe7647a 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index 4ea122f..61b1938 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-sparc64-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -192,6 +192,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index 3f603ee..fe7647a 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index 3c6b7c9..5b2055c 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-spu-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -192,6 +192,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index 3f603ee..fe7647a 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + ------------------------------------------------------------------- Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index 430c8bd..842dcec 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -1,7 +1,7 @@ # # spec file for package cross-x86_64-binutils # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -192,6 +192,10 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif %build sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h From 757d724436504fbd6c865193e9adab77e4965ef4965fb1202cf703919d56d222 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Mon, 13 Jul 2015 14:13:27 +0000 Subject: [PATCH 12/13] Accepting request 316400 from home:a_faerber:rx Add cross-rx-binutils package for Renesas RX OBS-URL: https://build.opensuse.org/request/show/316400 OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=192 --- binutils.changes | 5 + binutils.spec | 4 +- cross-aarch64-binutils.changes | 5 + cross-aarch64-binutils.spec | 4 +- cross-arm-binutils.changes | 5 + cross-arm-binutils.spec | 4 +- cross-avr-binutils.changes | 5 + cross-avr-binutils.spec | 4 +- cross-epiphany-binutils.changes | 5 + cross-epiphany-binutils.spec | 4 +- cross-hppa-binutils.changes | 5 + cross-hppa-binutils.spec | 4 +- cross-hppa64-binutils.changes | 5 + cross-hppa64-binutils.spec | 4 +- cross-i386-binutils.changes | 5 + cross-i386-binutils.spec | 4 +- cross-ia64-binutils.changes | 5 + cross-ia64-binutils.spec | 4 +- cross-m68k-binutils.changes | 5 + cross-m68k-binutils.spec | 4 +- cross-mips-binutils.changes | 5 + cross-mips-binutils.spec | 4 +- cross-ppc-binutils.changes | 5 + cross-ppc-binutils.spec | 4 +- cross-ppc64-binutils.changes | 5 + cross-ppc64-binutils.spec | 4 +- cross-ppc64le-binutils.changes | 5 + cross-ppc64le-binutils.spec | 4 +- cross-rx-binutils.changes | 2740 +++++++++++++++++++++++++++++++ cross-rx-binutils.spec | 483 ++++++ cross-s390-binutils.changes | 5 + cross-s390-binutils.spec | 4 +- cross-s390x-binutils.changes | 5 + cross-s390x-binutils.spec | 4 +- cross-sparc-binutils.changes | 5 + cross-sparc-binutils.spec | 4 +- cross-sparc64-binutils.changes | 5 + cross-sparc64-binutils.spec | 4 +- cross-spu-binutils.changes | 5 + cross-spu-binutils.spec | 4 +- cross-x86_64-binutils.changes | 5 + cross-x86_64-binutils.spec | 4 +- pre_checkin.sh | 2 +- 43 files changed, 3364 insertions(+), 41 deletions(-) create mode 100644 cross-rx-binutils.changes create mode 100644 cross-rx-binutils.spec diff --git a/binutils.changes b/binutils.changes index fe7647a..c46876c 100644 --- a/binutils.changes +++ b/binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/binutils.spec b/binutils.spec index 0730310..be945fe 100644 --- a/binutils.spec +++ b/binutils.spec @@ -292,8 +292,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index fe7647a..c46876c 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index 6a432f6..aeb7143 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -295,8 +295,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index fe7647a..c46876c 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index 531e2c6..12af642 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -295,8 +295,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index fe7647a..c46876c 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index 46d001e..4b56dd0 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -295,8 +295,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/cross-epiphany-binutils.changes b/cross-epiphany-binutils.changes index fe7647a..c46876c 100644 --- a/cross-epiphany-binutils.changes +++ b/cross-epiphany-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index 8dc5208..e9c20c4 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -295,8 +295,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index fe7647a..c46876c 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index 5043c96..6387c1f 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -295,8 +295,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index fe7647a..c46876c 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index 7a33abc..cb5075d 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -295,8 +295,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index fe7647a..c46876c 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index 32afc47..d780a6d 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -295,8 +295,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index fe7647a..c46876c 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index ad4de4e..53af0aa 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -295,8 +295,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/cross-m68k-binutils.changes b/cross-m68k-binutils.changes index fe7647a..c46876c 100644 --- a/cross-m68k-binutils.changes +++ b/cross-m68k-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index 6720813..5cd527d 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -295,8 +295,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index fe7647a..c46876c 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index 0cd682b..d3a2122 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -295,8 +295,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index fe7647a..c46876c 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index 4630d0e..a1d017a 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -295,8 +295,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index fe7647a..c46876c 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index ace3a5b..82d42dd 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -295,8 +295,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/cross-ppc64le-binutils.changes b/cross-ppc64le-binutils.changes index fe7647a..c46876c 100644 --- a/cross-ppc64le-binutils.changes +++ b/cross-ppc64le-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index 44f479a..f7087d4 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -295,8 +295,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/cross-rx-binutils.changes b/cross-rx-binutils.changes new file mode 100644 index 0000000..c46876c --- /dev/null +++ b/cross-rx-binutils.changes @@ -0,0 +1,2740 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + +------------------------------------------------------------------- +Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org + +- Work around qemu bug + +------------------------------------------------------------------- +Thu Jul 9 14:26:13 UTC 2015 - matz@suse.de + +- Update to 2.25 branch at 2f5b97b4f (changes + binutils-2.25-branch.diff.gz) fixes PR 18481, gas/18541. +- Add patches for s390 z13 support (backports from + to-be 2.26): + 0001-S-390-Add-support-for-IBM-z13.patch + 0002-S-390-Add-check-for-length-field-operand.patch + 0003-S-390-Add-more-IBM-z13-instructions.patch + 0004-S-390-Fixes-for-z13-instructions.patch + 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch . + +------------------------------------------------------------------- +Tue Jul 7 11:00:42 UTC 2015 - afaerber@suse.de + +- Fix %TARGET vs. $TARGET_OS inconsistencies by turning $TARGET_OS + into %TARGET_OS for reuse in install and file sections. + This fixes the assumption that $TARGET_OS will match %{TARGET}*. + +------------------------------------------------------------------- +Wed Jun 10 07:55:29 UTC 2015 - dmueller@suse.com + +- enable gold for aarch64 + +------------------------------------------------------------------- +Mon May 18 15:26:32 UTC 2015 - matz@suse.de + +- Move sed call from %prep to %build to not disturb quilt. +- Add binutils-2.25-branch.diff.gz: + Update to 2.25 branch at 8fe8994c, fixing many bugs: + PR ld/15228, binutils/17512, 17165, binutils/17531, ld/17615, 17666, + ld/17709, gas/17753, 17755, 17817, ld/17827, 17842, binutils/17926, + 17954, 18010, ld/18167, ld/18222, ld/18270. +- Remove eh-frame-hdr-on-shared-lib-bfd.patch: Included already. +- Remove gold-opd-visibility.patch: Included already. + +------------------------------------------------------------------- +Mon May 18 06:38:32 UTC 2015 - meissner@suse.com + +- move info deinstall to preun section + +------------------------------------------------------------------- +Sat May 16 15:05:17 UTC 2015 - hrvoje.senjan@gmail.com + +- Added binutils-fix--dynamic-list.patch: + Fixes https://sourceware.org/bugzilla/show_bug.cgi?id=13577 and + https://sourceware.org/bugzilla/show_bug.cgi?id=16992 + +------------------------------------------------------------------- +Thu Feb 19 09:22:54 UTC 2015 - schwab@suse.de + +- gold-opd-visibility.patch: Set default visibility on discarded .opd + symbols + +------------------------------------------------------------------- +Wed Jan 21 09:15:34 UTC 2015 - schwab@suse.de + +- eh-frame-hdr-on-shared-lib-bfd.patch: Don't create .eh_frame_hdr on + shared lib bfd, fixes building libgcj on ppc64 + +------------------------------------------------------------------- +Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com + +- Update to binutils 2.25 release. + * Add --data option to strings to only print strings in loadable, initialized + data sections. Change the default behaviour to be --all, but add a new + configure time option of --disable-default-strings-all to restore the old + default behaviour. + * Add --include-all-whitespace to strings. + * Add --dump-section option to objcopy. + * Add support for the Andes NDS32. + * PE binaries now once again contain real timestamps by default. To disable + the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp + command line option. + * Replace support for openrisc and or32 with support for or1k. + * Add support for the --build-id command line option to COFF based targets. + * x86/x86_64 pe-coff now supports the --build-id option. + * Add support for the AVR Tiny microcontrollers. + * Enhanced the ARM port to accept the assembler output from the CodeComposer + Studio tool. Support is enabled via the new command line option -mccs. +- Update to 2.25 branch head. + * Pulls PIE fixes. + +------------------------------------------------------------------- +Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org + +- Minor fix on the usage of update-alternatives + https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines + +------------------------------------------------------------------- +Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de + +- Update to current 2.25 pre-release branch, at 127a4644. +- binutils-fix-gold-aarch64.diff: fixing build temporarily broken + on brach. +- Remove obsolete patches: binutils-2.24-branch.diff.gz, + pie-m68k.patch, binutils-2.24-auto-plugin.diff, ld-testsuite.patch, + binutils-2.24-bso16746.diff . + +------------------------------------------------------------------- +Fri Oct 31 10:49:03 UTC 2014 - afaerber@suse.de + +- Enable Adapteva Epiphany target + +------------------------------------------------------------------- +Tue May 6 14:02:26 UTC 2014 - rguenther@suse.com + +- binutils-2.24-bso16746.diff: Fix bso#16746, spurious warnings + for warn annotated symbols with LTO. + +------------------------------------------------------------------- +Sun Apr 6 18:48:22 UTC 2014 - schwab@linux-m68k.org + +- ld-dtags.diff: update testsuite for --enable-new-dtags default +- ld-testsuite.patch: fix spurious failures in ld-plugin/lto.exp + +------------------------------------------------------------------- +Thu Apr 3 10:56:19 UTC 2014 - rguenther@suse.com + +- binutils-2.24-auto-plugin.diff: Update from git commit that went + to trunk. + +------------------------------------------------------------------- +Wed Mar 26 15:29:34 UTC 2014 - matz@suse.de + +- Update to current 2.24 branch at 25f1c421: + AVX512 fixes, new x86 instructions clflushopt, xsaves, xsavec, xrstors. + aarch64: linker fixes for PLT stubs, correct float const 0.0 parsing, + support ifunc in static links. + Fix ld/16643 (problem with GCed sections). + powerpc64le: fix ld segfault with --emit-relocs. + Fix buffer underrun in x86 disassembler. + Fix merging of skipped weak symbols. [bnc #863764] + +------------------------------------------------------------------- +Mon Mar 24 13:58:29 UTC 2014 - rguenther@suse.com + +- Add binutils-2.24-auto-plugin.diff to make plugin auto-load work + for GCC LTO objects. [bso#14698] + +------------------------------------------------------------------- +Fri Feb 21 16:59:02 UTC 2014 - matz@suse.de + +- Disable --enable-deterministic-archives again, as it breaks + valid Makefiles. + +------------------------------------------------------------------- +Mon Feb 10 23:07:23 UTC 2014 - subchaser1@gmail.com + +- cross-avr-size.patch: AVR-style output in avr-size utility + +------------------------------------------------------------------- +Mon Jan 27 05:43:48 UTC 2014 - crrodriguez@opensuse.org + +- build with --enable-deterministic-archives so ar and ranlib + cooperate in the creation of reproducible builds. + +------------------------------------------------------------------- +Mon Dec 9 15:10:27 UTC 2013 - matz@suse.de + +- Update to 2.24 release and to branch at 9177510e: + * Add support for the Texas Instruments MSP430X processor. + * Add support for Altera Nios II. + * Add support for the V850E3V5 architecture. + * Add support for the Imagination Technologies Meta processor. + * --enable-new-dtags no longer generates old dtags in addition to new dtags. + * Remove assembler and linker support for MIPS ECOFF targets. + * Remove assembler support for MIPS ECOFF targets. + * Add ALIGN_WITH_INPUT to the linker script language to force the + alignment of an output section to use the maximum alignment of + all its input sections. + * Add -gdwarf-sections command line option to enable per-code-section + generation of DWARF .debug_line sections. + * Objcopy now supports wildcard characters in command line options that take + section names. + +------------------------------------------------------------------- +Fri Nov 29 14:59:52 UTC 2013 - matz@suse.de + +- Update to 2.23.92 prerelease, mostly for ppc64le support. +- Add cross-ppc64le-binutils. + +------------------------------------------------------------------- +Mon Oct 28 15:53:03 UTC 2013 - schwab@suse.de + +- Add cross-m68k-binutils + +------------------------------------------------------------------- +Wed Oct 9 08:55:16 UTC 2013 - schwab@suse.de + +- pie-m68k.patch: Emit DT_DEBUG also for PIE + +------------------------------------------------------------------- +Fri Sep 20 15:53:55 UTC 2013 - matz@suse.de + +- Update to 2.23.90 prerelease, remove patches that + are upstream ( aarch64-biarch.patch, aarch64-dynamic-placement.patch, + aarch64-execstack.patch, aarch64-gc-section-support.patch, + aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff, + aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff, + binutils-2.22-objalloc.patch, + binutils-2.23.52.0.1-64-bit-thin-archives.patch, + s390-machinemode.patch, warning-symbol-sections.patch). + +------------------------------------------------------------------- +Sat Aug 31 13:11:36 UTC 2013 - idonmez@suse.com + +- Add binutils-2.23.52.0.1-64-bit-thin-archives.patch to fix thin + archive creation on 64bit systems. This is rh#915411 and should + also fix webkitgtk on s390x. + +------------------------------------------------------------------- +Mon Jul 29 18:13:43 UTC 2013 - schwab@suse.de + +- warning-symbol-sections.patch: correct test in last change + +------------------------------------------------------------------- +Mon Jul 22 07:18:33 UTC 2013 - schwab@suse.de + +- warning-symbol-sections.patch: don't clobber warning sections from + shared libraries + +------------------------------------------------------------------- +Mon Jul 1 08:18:22 UTC 2013 - schwab@suse.de + +- aarch64-dynamic-placement.patch: Correct placement of &_DYNAMIC + +------------------------------------------------------------------- +Wed Jun 26 22:32:43 UTC 2013 - dmueller@suse.com + +- add armv6l to target list + +------------------------------------------------------------------- +Tue Jun 11 14:36:31 UTC 2013 - dmueller@suse.com + +- add aarch64-support-1796bf893c4729d5c523502318d72cae78495d6c.diff +- add aarch64-support-f426901e1be0f58fe4e9386cada50ca57d0a4f36.diff + +------------------------------------------------------------------- +Wed May 15 11:25:50 UTC 2013 - rguenther@suse.com + +- Drop cross-alpha-binutils. Adjust pre-checkin.sh to remove + all cross packages before re-generating them. + +------------------------------------------------------------------- +Tue May 14 15:31:59 UTC 2013 - schwab@suse.de + +- Tell bfd ELF backend that aarch64 defaults to non-exec stack + +------------------------------------------------------------------- +Wed Apr 3 13:08:47 UTC 2013 - rguenther@suse.com + +- Re-instantiate patch to warn about non-PIC code in shared objects + on s390x. + +------------------------------------------------------------------- +Thu Mar 28 12:46:09 UTC 2013 - rguenther@suse.com + +- Update to binutils 2.23.2. + * various bugfixes +- Refresh no longer applying patch. + +------------------------------------------------------------------- +Tue Mar 5 20:05:50 UTC 2013 - schwab@suse.de + +- Add aarch64 support for --gc-sections + (from http://sourceware.org/ml/binutils/2013-02/msg00285.html) + +------------------------------------------------------------------- +Wed Dec 19 10:52:46 UTC 2012 - schwab@suse.de + +- Backport s390 .machinemode pseudo insn + +------------------------------------------------------------------- +Fri Nov 30 12:46:35 UTC 2012 - rguenther@suse.com + +- Revert upstream change to error on bfd.h usage without first + including some config.h + +------------------------------------------------------------------- +Wed Nov 28 10:56:12 UTC 2012 - rguenther@suse.com + +- Change update-alternative priorities to always prefer GNU ld + +------------------------------------------------------------------- +Tue Nov 27 15:30:41 UTC 2012 - jengelh@inai.de + +- Implement update-alternatives service for gold + +------------------------------------------------------------------- +Tue Nov 27 12:44:19 UTC 2012 - adrian@suse.de + +- update to version 2.23.1 release +- add aarch64 biarch patch + +------------------------------------------------------------------- +Sat Nov 24 02:05:34 UTC 2012 - adrian@suse.de + +- add cross-aarch64-binutils + +------------------------------------------------------------------- +Thu Nov 22 19:38:33 UTC 2012 - jengelh@inai.de + +- Have pre_checkin.sh create cross-sparc64-binutils + +------------------------------------------------------------------- +Wed Oct 24 11:03:16 UTC 2012 - rguenther@suse.com + +- Update to binutils 2.23 branch head. + * Includes binutils 2.23 release. + +------------------------------------------------------------------- +Mon Sep 17 13:57:11 UTC 2012 - rguenther@suse.com + +- Update to binutils 2.23 release candidate. +- Remove no longer applying AVR patch. + +------------------------------------------------------------------- +Fri Sep 7 12:42:18 UTC 2012 - coolo@suse.com + +- add makeinfo as explicit buildrequire + +------------------------------------------------------------------- +Mon Sep 3 09:59:53 UTC 2012 - idonmez@suse.com + +- Enable threaded linking in gold. + +------------------------------------------------------------------- +Mon Sep 3 09:03:59 UTC 2012 - rguenther@suse.com + +- Add patch to fix libiberty integer overflow. [bnc#776968] + +------------------------------------------------------------------- +Thu Jun 21 08:43:29 UTC 2012 - adrian@suse.de + +- fix default elf format for arm cross tools + +------------------------------------------------------------------- +Tue Jun 19 05:09:40 UTC 2012 - factory-maintainer@kulow.org + +- fix stupid typo + +------------------------------------------------------------------- +Mon Jun 18 11:06:01 UTC 2012 - coolo@suse.com + +- the previous fix was not good enough, another iteration of the same + +------------------------------------------------------------------- +Thu Jun 14 11:53:56 UTC 2012 - coolo@suse.com + +- exclude our target arch for cross compiling - this is just not cross + +------------------------------------------------------------------- +Thu Apr 19 11:28:41 UTC 2012 - rguenther@suse.com + +- Consistently use $target-suse-linux triplets. + +------------------------------------------------------------------- +Wed Feb 15 11:32:14 UTC 2012 - rguenther@suse.com + +- Drop the new spec files again, instead move the cross-$arch-binutils + contents to /usr, away from /opt. + +------------------------------------------------------------------- +Tue Feb 14 17:53:08 UTC 2012 - max@suse.com + +- Add spec files that build variants for arm and avr that install + under /usr rather than /opt/cross. +- Add avr-binutils-relocs.patch to fix a crash in avr-ld. + http://sourceware.org/bugzilla/show_bug.cgi?id=12161 + +------------------------------------------------------------------- +Thu Jan 26 10:36:33 UTC 2012 - rguenther@suse.com + +- Fix package licenses to follow SPDX format, adjust to reality. + +------------------------------------------------------------------- +Wed Jan 25 14:12:40 UTC 2012 - rguenther@suse.com + +- Amend patch to fix arm unwind table corruption. [bso#13449] + +------------------------------------------------------------------- +Wed Jan 4 12:31:02 UTC 2012 - rguenther@suse.com + +- Add patch to fix arm unwind table corruption. [bso#13449] +- Canonicalize arm targets. +- Enable gold for arm. + +------------------------------------------------------------------- +Tue Jan 3 14:42:59 UTC 2012 - rguenther@suse.com + +- Add patch to fix build-id issues. [bso#12451] + +------------------------------------------------------------------- +Tue Dec 6 10:48:16 UTC 2011 - rguenther@suse.com + +- Update to final binutils 2.22 release. + +------------------------------------------------------------------- +Wed Nov 2 09:27:38 UTC 2011 - rguenther@suse.com + +- Update to binutils-2_22-branch head. + * Adds support for LDPT_GET_SYMBOLS_V2. + * Drop patches that have been applied upstream. + +------------------------------------------------------------------- +Fri Sep 30 11:25:38 UTC 2011 - tserong@suse.com + +- Fix --gc-sections failure with symbol versioning [bso#13195] + +------------------------------------------------------------------- +Wed Sep 28 13:08:07 UTC 2011 - rguenther@suse.com + +- Update to binutils-2_22-branch head. + * Drop patches that have been applied upstream. + * Drop patches that no longer apply. + +------------------------------------------------------------------- +Thu Sep 22 09:59:07 UTC 2011 - adrian@suse.de + +- use -gnueabi extension to switch to new abi for arm + +------------------------------------------------------------------- +Thu Sep 22 06:54:34 CEST 2011 - dmueller@suse.de + +- Add support for arm-*-gnueabihf targets (PR ld/12643) + +------------------------------------------------------------------- +Wed Sep 21 21:44:12 UTC 2011 - adrian@suse.de + +- add arm targets + +------------------------------------------------------------------- +Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com + +- Fix XLC object linker complaints. [bnc#713504] + +------------------------------------------------------------------- +Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de + +- Make --no-copy-dt-needed-entries the default for ld. + +------------------------------------------------------------------- +Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com + +- Add patch for bogus executable stack setting with -flto. [bso#12982] + +------------------------------------------------------------------- +Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com + +- BuildRequire glibc-devel-static to fix static linking tests. + +------------------------------------------------------------------- +Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de + +- Add patch to fix a readelf endless loop bug. [bso#12855] + +------------------------------------------------------------------- +Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com + +- Update to binutils 2.21.1 release. + * Add --interleave-width option to objcopy to allowing copying a range + of bytes from the input to the output with the --interleave option. + * Add support for the TMS320C6000 (TI C6X) processor family. + * Readelf can now display ARM unwind tables (.ARM.exidx / .ARM.extab) + using the -u / --unwind option. + * Add --dyn-syms to readelf to dump dynamic symbol table. + * A new tool - elfedit - has been added to directly manipulate ELF + format binaries. + * Add to dlltool .def file feature of aliasing PE internal symbol name + by '== ' option. + * Add a new command line option -a / --addresses to addr2line to display + the address before function name or source filename. + * Add a new command line option -p / --pretty-print to addr2line to have + a more human readable output. + * The hppa/som targets can now be compiled on any host. +- Add dependency to opcodes from gold. + +------------------------------------------------------------------- +Fri Jun 17 15:23:21 CEST 2011 - matz@suse.de + +- Add support for x86_64-pep target [needed for Xen fate #311376] + +------------------------------------------------------------------- +Thu Jun 9 14:20:07 UTC 2011 - matz@novell.com + +- Add patch to support AMD Bulldozer v2 [fate #312149] + +------------------------------------------------------------------- +Tue Jun 7 11:03:12 UTC 2011 - rguenther@novell.com + +- Update to binutils-2_21-branch head. [bnc#698346] + +------------------------------------------------------------------- +Fri May 27 13:46:53 UTC 2011 - rguenther@novell.com + +- Disable cross-sh4-binutils. + +------------------------------------------------------------------- +Wed May 4 08:47:15 UTC 2011 - rguenther@novell.com + +- Update to binutils-2_21-branch head. [bnc#691290] + +------------------------------------------------------------------- +Tue Apr 19 12:43:11 UTC 2011 - rguenther@novell.com + +- Update to binutils-2_21-branch head. [fate#311554] [fate#311972] + +------------------------------------------------------------------- +Mon Jan 10 16:51:10 UTC 2011 - rguenther@novell.com + +- Update to binutils 2.21. + * linker plugin support + * AMD Bulldozer enablement +- Disable package fail when testsuite failures occur for now + because of gold (testsuite) issues. + +------------------------------------------------------------------- +Tue Jul 27 11:43:24 UTC 2010 - rguenther@novell.com + +- drop cross-avr-binutils + +------------------------------------------------------------------- +Tue Jul 27 11:23:20 UTC 2010 - coolo@novell.com + +- split the gold build into 2 make steps to avoid random + build failures (ugly work around in fact) + +------------------------------------------------------------------- +Thu Jul 8 05:28:53 UTC 2010 - jengelh@medozas.de + +- Default to creating ELF64 objects under sparc64 + +------------------------------------------------------------------- +Mon Jun 28 06:38:35 UTC 2010 - jengelh@medozas.de + +- use %_smp_mflags + +------------------------------------------------------------------- +Mon Apr 12 13:34:27 CEST 2010 - matz@suse.de + +- Initialize memory for MALLOC_PERTURB on ppc. [PR gas/11486] + + Rewrite history by including this: + Wed Mar 24 17:23:32 CET 2010 - matz@suse.de + + - Fix testcase breaking with MALLOC_PERTURB. [bnc #590820] + + Sat Feb 13 17:52:11 CET 2010 - rguenther@suse.de + + - Drop build counter from the libbfd and libopcode SONAMEs. + + Fri Jan 22 15:31:06 CET 2010 - matz@suse.de + + - Update to current binutils-2_20-branch. [bnc #561142, #573019] + + Wed Jan 13 15:16:44 CET 2010 - matz@novell.com + + - Fix removal of unwanted files (man,info,libiberty) on the + cross binutils. + + Sat Dec 12 19:09:40 CET 2009 - jengelh@medozas.de + + - add baselibs.conf as a source + + Mon Dec 7 16:14:27 CET 2009 - jengelh@medozas.de + + - SPARC build support for binutils + + Wed Nov 4 15:44:30 CET 2009 - matz@suse.de + + - Copy from SLE11 SP1. Compared to that add --as-needed by default + patch again. + + Mon Oct 19 11:15:51 CEST 2009 - rguenther@suse.de + + - Update to binutils 2.20 snapshot. + * disable patches that no longer apply + * disable make check handling everywhere + +------------------------------------------------------------------- +Fri Apr 9 14:42:48 CEST 2010 - matz@suse.de + +- Fix encoding of LWP instructions, and get rid of 16bit forms. + +------------------------------------------------------------------- +Fri Feb 12 16:46:42 CET 2010 - matz@suse.de + +- Add more aliases for VPCOM* instructions, xsave64, xrstor64, + and vpermil2p (XOP support). + +------------------------------------------------------------------- +Tue Feb 9 13:46:35 CET 2010 - matz@suse.de + +- Add support for AMD XOP instructions. [bnc #578249] + +------------------------------------------------------------------- +Fri Jan 22 15:40:21 CET 2010 - matz@suse.de + +- Update to current binutils-2_20-branch. [bnc #561142, #573019] + +------------------------------------------------------------------- +Wed Nov 4 15:44:30 CET 2009 - matz@suse.de + +- Update to binutils 2.20 branch, remove patches that went upstream. + Don't activate --as-needed by default for SLE11 SP1. + [fate #306880, #307034] + [bnc #546106, #483978] + +------------------------------------------------------------------- +Mon Oct 12 15:11:44 CEST 2009 - rguenther@suse.de + +- enable gold plugins, fix build on older distros. + +------------------------------------------------------------------- +Wed Oct 7 13:09:04 UTC 2009 - coolo@novell.com + +- obsolete binutils-32bit, it can't be left around + +------------------------------------------------------------------- +Mon Aug 24 16:53:13 CEST 2009 - rguenther@suse.de + +- disable gold build before openSUSE 11.0. + +------------------------------------------------------------------- +Thu Aug 20 11:20:43 CEST 2009 - rguenther@suse.de + +- add patch to drop .gnu.lto_* sections + +------------------------------------------------------------------- +Fri Jun 12 18:18:21 CEST 2009 - coolo@novell.com + +- follow only SUSE_ASNEEDED + +------------------------------------------------------------------- +Tue Jun 9 14:48:40 CEST 2009 - matz@suse.de + +- Use --as-needed by default in the build system. + +------------------------------------------------------------------- +Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de + +- Update to head of trunk. +- Add patch to fix gold build with glibc 2.10, gcc 4.4. + +------------------------------------------------------------------- +Fri Mar 27 14:39:32 CET 2009 - rguenther@suse.de + +- Update to head of trunk. +- Add zlib-devel-static BuildRequires to fix testsuite. +- Package gold locales. + +------------------------------------------------------------------- +Mon Feb 16 11:50:04 CET 2009 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Mon Feb 16 11:33:53 CET 2009 - rguenther@suse.de + +- Update to 2.19.51 snapshot. Fixes build with GCC 4.4. + +------------------------------------------------------------------- +Tue Jan 27 17:51:43 CET 2009 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Thu Jan 22 14:20:16 CET 2009 - schwab@suse.de + +- Adjust list of extra targets. + +------------------------------------------------------------------- +Mon Jan 19 18:19:30 CET 2009 - schwab@suse.de + +- Update to head of trunk. +- Add gold. + +------------------------------------------------------------------- +Thu Jan 15 16:42:33 CET 2009 - schwab@suse.de + +- Use consistent label names. + +------------------------------------------------------------------- +Thu Jan 15 08:01:02 CET 2009 - olh@suse.de + +- remove Requires: binutils-XXbit in binutils-devel-XXbit package + +------------------------------------------------------------------- +Fri Jan 9 14:42:24 CET 2009 - schwab@suse.de + +- Fix last change. + +------------------------------------------------------------------- +Fri Jan 9 12:44:44 CET 2009 - olh@suse.de + +- build binutils and binutils-devel -XXbit packages (bnc#445037) + +------------------------------------------------------------------- +Wed Dec 10 12:34:56 CET 2008 - olh@suse.de + +- use Obsoletes: -XXbit only for ppc64 to help solver during distupgrade + (bnc#437293) + +------------------------------------------------------------------- +Thu Dec 4 17:34:07 CET 2008 - schwab@suse.de + +- Update symbol visibility checks during linking on s390. + +------------------------------------------------------------------- +Wed Dec 3 13:13:25 CET 2008 - schwab@suse.de + +- Fix corner case during link relaxing. + +------------------------------------------------------------------- +Thu Nov 27 16:55:54 CET 2008 - schwab@suse.de + +- Fix disassembler bug. +- Help some devel users. + +------------------------------------------------------------------- +Fri Nov 21 15:03:27 CET 2008 - schwab@suse.de + +- Import bugfixes from 2.19 branch. + +------------------------------------------------------------------- +Wed Nov 19 17:50:52 CET 2008 - schwab@suse.de + +- Fix handling of DW_CFA_advance_loc* in the assembler. + +------------------------------------------------------------------- +Mon Nov 10 15:29:56 CET 2008 - schwab@suse.de + +- Update last change. + +------------------------------------------------------------------- +Fri Nov 7 11:41:37 CET 2008 - schwab@suse.de + +- Fix crash in strip. + +------------------------------------------------------------------- +Thu Nov 6 11:16:14 CET 2008 - rguenther@suse.de + +- build cross-spu-binutils with a /usr/spu sysroot + +------------------------------------------------------------------- +Thu Oct 30 12:34:56 CET 2008 - olh@suse.de + +- obsolete old -XXbit packages (bnc#437293) + +------------------------------------------------------------------- +Mon Oct 20 13:21:04 CEST 2008 - schwab@suse.de + +- Update to binutils 2.19. + * Added -wL switch to dump decoded contents of .debug_line. + * Added support for "thin" archives which contain pathnames pointing to + object files rather than the files themselves and which contain a + flattened symbol index for all objects, and archives, which have been + added to the archive. + * Added -F switch to objdump to include file offsets in the disassembly. + * Added -c switch to readelf to allow string dumps of archive symbol index. + * Support for SSE5 has been added to the i386 port. + * Added -p switch to readelf to allow string dumps of sections. + * New pseudo op .cfi_val_encoded_addr, to record constant addresses in unwind + tables without runtime relocation. + * New command line option, -h-tick-hex, for sh, m32c, and h8/300 targets, which + adds compatibility with H'00 style hex constants. + * New command line option, -msse-check=[none|error|warning], for x86 + targets. + * New sub-option added to the assembler's -a command line switch to + generate a listing output. The 'g' sub-option will insert into the listing + various information about the assembly, such as assembler version, the + command line options used, and a time stamp. + * New command line option -msse2avx for x86 target to encode SSE + instructions with VEX prefix. + * Add Intel XSAVE, EPT, MOVBE, AES, PCLMUL, AVX/FMA support for x86 target. + * New command line options, -march=CPU[,+EXTENSION...], -mtune=CPU, + -mmnemonic=[att|intel], -msyntax=[att|intel], -mindex-reg, + -mnaked-reg and -mold-gcc, for x86 targets. + * Support for generating wide character strings has been added via the new + pseudo ops: .string16, .string32 and .string64. + * Support for SSE5 has been added to the i386 port. + * Linker scripts support a new INSERT command that makes it easier to + augment the default script. + * Linker script input section filespecs may now specify a file within an + archive by writing "archive:file". + * The --sort-common switch now has an optional argument which specifies the + direction of sorting. + * The M68K linker now supports multiple GOT generation schemes controlled via + the --got= command line option. + * The ARM EABI linker will now generate stubs for function calls to symbols + that are too far away. The placement of the stubs is controlled by a new + linker command line option: --stub-group-size=N. + +------------------------------------------------------------------- +Thu Oct 9 11:18:47 CEST 2008 - schwab@suse.de + +- Bug fixes. + +------------------------------------------------------------------- +Tue Oct 7 17:35:29 CEST 2008 - jblunck@suse.de + +- bfd-assign_file_positions_for_load_sections-STRIP_NONDEBUG-fix.diff: + Do not only look at the first section in a segment to decide if it has + contents or not. This fixes the "section ... can't be allocated in segment" + errors when using objcopy --only-keep-debug to create the *.debug files. + +------------------------------------------------------------------- +Wed Sep 17 13:22:44 CEST 2008 - schwab@suse.de + +- Update to binutils 2.18.91 snapshot. + +------------------------------------------------------------------- +Fri Sep 12 12:00:03 CEST 2008 - schwab@suse.de + +- Update to head of 2.19 branch. + +------------------------------------------------------------------- +Thu Sep 4 11:00:48 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Fri Aug 8 11:09:38 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Fri Jul 18 15:08:23 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Sun Jul 13 16:57:36 CEST 2008 - olh@suse.de + +- enable targets i386-macos10, powerpc-macos, powerpc-macos10, + spu-elf unconditionally in binutils + +------------------------------------------------------------------- +Fri Jul 11 12:02:45 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Wed Jun 18 16:07:36 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Thu Apr 10 12:54:45 CEST 2008 - ro@suse.de + +- added baselibs.conf file to build xxbit packages + for multilib support + +------------------------------------------------------------------- +Wed Apr 9 16:24:43 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Tue Mar 25 10:12:29 CET 2008 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Fri Mar 7 11:25:29 CET 2008 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Mon Feb 25 14:21:11 CET 2008 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Fri Feb 15 13:58:17 CET 2008 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Sun Feb 10 09:46:31 CET 2008 - schwab@suse.de + +- Allow R_S390_PC32DBL against protected function symbols. + +------------------------------------------------------------------- +Fri Feb 1 13:14:45 CET 2008 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Fri Jan 25 15:52:43 CET 2008 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Thu Jan 17 16:31:57 CET 2008 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Thu Jan 10 11:01:46 CET 2008 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Mon Nov 12 16:21:08 CET 2007 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Tue Oct 2 12:55:06 CEST 2007 - schwab@suse.de + +- Update to head of trunk. +- Add hppa64 target. + +------------------------------------------------------------------- +Mon Sep 3 15:51:39 CEST 2007 - schwab@suse.de + +- Add fix for PR4888. + +------------------------------------------------------------------- +Thu Jul 26 12:24:59 CEST 2007 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Fri Jul 13 11:28:31 CEST 2007 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Fri Jun 29 14:34:18 CEST 2007 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Fri Jun 22 11:48:38 CEST 2007 - schwab@suse.de + +- Update to head of trunk. +- Drop Bdirect patches. + +------------------------------------------------------------------- +Mon Jun 11 15:57:58 CEST 2007 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Sat Jun 2 21:35:09 CEST 2007 - schwab@suse.de + +- Allow only static linking of lib{bfd,opcodes} outside binutils. + +------------------------------------------------------------------- +Tue May 15 12:42:02 CEST 2007 - schwab@suse.de + +- Update to head of trunk. + +------------------------------------------------------------------- +Fri May 4 11:27:27 CEST 2007 - schwab@suse.de + +- Update to binutils CVS HEAD. +- Remove obsolete obsoletes. + +------------------------------------------------------------------- +Mon Apr 23 14:55:49 CEST 2007 - olh@suse.de + +- Fix POWER6 floating point disassembling [#266874] + +------------------------------------------------------------------- +Thu Apr 12 22:08:48 CEST 2007 - schwab@suse.de + +- Build cross tools with sysroot. + +------------------------------------------------------------------- +Thu Apr 5 10:45:44 CEST 2007 - schwab@suse.de + +- Update to binutils CVS HEAD. +- Add spu to the list of cross targets. + +------------------------------------------------------------------- +Mon Mar 26 15:45:04 CEST 2007 - rguenther@suse.de + +- Add bison and flex BuildRequires. + +------------------------------------------------------------------- +Wed Mar 21 11:37:06 CET 2007 - schwab@suse.de + +- Update to binutils CVS HEAD. + +------------------------------------------------------------------- +Fri Mar 16 19:36:12 CET 2007 - schwab@suse.de + +- Update to binutils CVS HEAD. + +------------------------------------------------------------------- +Sun Feb 25 10:37:56 CET 2007 - schwab@suse.de + +- Add mips to the list of extra targets. + +------------------------------------------------------------------- +Tue Feb 20 16:37:22 CET 2007 - schwab@suse.de + +- Avoid build failure with interface change. + +------------------------------------------------------------------- +Mon Feb 19 16:30:51 CET 2007 - schwab@suse.de + +- Update to binutils CVS HEAD. + +------------------------------------------------------------------- +Tue Feb 6 16:42:43 CET 2007 - rguenther@suse.de + +- Add sh4 to the list of cross targets. + +------------------------------------------------------------------- +Fri Feb 2 22:09:16 CET 2007 - schwab@suse.de + +- Switch to hashtype=both by default. + +------------------------------------------------------------------- +Mon Jan 29 20:50:48 CET 2007 - schwab@suse.de + +- Update to binutils CVS HEAD. + +------------------------------------------------------------------- +Wed Jan 24 19:39:20 CET 2007 - jw@suse.de + +- fixed memory corruption in ld -m avr2 --oformat ihex a + sourceware bugzilla#3874 + +------------------------------------------------------------------- +Tue Jan 23 11:46:28 CET 2007 - schwab@suse.de + +- Update to binutils CVS HEAD. + +------------------------------------------------------------------- +Mon Jan 15 23:36:27 CET 2007 - jw@suse.de + +- bin/avr-nesc-as symlinked as avr/bin/nesc-as + +------------------------------------------------------------------- +Fri Jan 12 01:11:51 CET 2007 - jw@suse.de + +- Added avr-nesc-as support (rschiele@gmail.com) + +------------------------------------------------------------------- +Mon Jan 8 14:53:45 CET 2007 - schwab@suse.de + +- Update to binutils 2.17.50.0.9. + 1. Update from binutils 2007 0103. + 2. Fix --wrap linker bug. + 3. Improve handling ELF binaries generated by foreign ELF linkers. + 4. Various ELF M68K bug fixes. + 5. Score bug fixes. + 6. Don't read past end of archive elements. PR 3704. + 7. Improve .eh_frame_hdr section handling. + 8. Fix symbol visibility with comdat/linkonce sections in ELF linker. + PR 3666. + 9. Fix 4 operand instruction handling in x86 assembler. + 10. Properly check the 4th operand in x86 assembler. PR 3712. + 11. Fix .cfi_endproc handling in assembler. PR 3607. + 12. Various ARM bug fixes. + 13. Various PE linker fixes. + 14. Improve x86 dissassembler for cmpxchg8b. +- Split off binutils-devel. + +------------------------------------------------------------------- +Mon Dec 4 14:09:23 CET 2006 - schwab@suse.de + +- Update to binutils 2.17.50.0.8. + 1. Update from binutils 2006 1201. + 2. Fix "objcopy --only-keep-debug" crash. PR 3609. + 3. Fix various ARM ELF bugs. + 4. Fix various xtensa bugs. + 5. Update x86 disassembler. + +------------------------------------------------------------------- +Mon Oct 16 19:24:08 CEST 2006 - schwab@suse.de + +- Fix overflow in addend_compare [#209807]. + +------------------------------------------------------------------- +Fri Oct 13 13:46:42 CEST 2006 - schwab@suse.de + +- Update last change. + +------------------------------------------------------------------- +Tue Oct 10 13:36:32 CEST 2006 - schwab@suse.de + +- Fix invalid debug info. + +------------------------------------------------------------------- +Fri Oct 6 18:50:43 CEST 2006 - aj@suse.de + +- Improve last patch. + +------------------------------------------------------------------- +Fri Oct 6 15:52:28 CEST 2006 - aj@suse.de + +- Fix PR210331 (wrong size of empty loadable sections). + +------------------------------------------------------------------- +Thu Sep 28 10:56:02 CEST 2006 - schwab@suse.de + +- Update to binutils 2.17.50.0.5. + 1. Update from binutils 2006 0927. + 2. Fix linker regressions of section address and section relative symbol + with empty output section. PR 3223/3267. + 3. Fix "strings -T". PR 3257. + 4. Fix "objcopy --only-keep-debug". PR 3262. + 5. Add Intell iwmmxt2 support. + 6. Fix an x86 disassembler bug. PR 3100. + +------------------------------------------------------------------- +Wed Sep 27 16:19:16 CEST 2006 - schwab@suse.de + +- Fix uninitialized memory. + +------------------------------------------------------------------- +Mon Sep 25 11:35:32 CEST 2006 - schwab@suse.de + +- Update to binutils 2.17.50.0.4. + 1. Update from binutils 2006 0924. + 2. Speed up linker on .o files with debug info on linkonce sections. + PR 3111. + 3. Added x86-64 PE support. + 4. Fix objcopy/strip on .o files with section groups. PR 3181. + 5. Fix "ld --hash-style=gnu" crash with gcc 3.4.6. PR 3197. + 6. Fix "strip --strip-debug" on .o files generated with + "gcc -feliminate-dwarf2-dups". PR 3186. + 7. Fix "ld -r" on .o files generated with "gcc -feliminate-dwarf2-dups". + PR 3249. + 8. Add --dynamic-list to linker to make global symbols dynamic. + 9. Fix magic number for EFI ia64. PR 3171. + 10. Remove PT_NULL segment for "ld -z relro". PR 3015. + 11. Make objcopy to perserve the file formats in archive elements. + PR 3110. + 12. Optimize x86-64 assembler and fix disassembler for + "add32 mov xx,$eax". PR 3235. + 13. Improve linker diagnostics. PR 3107. + 14. Fix "ld --sort-section name". PR 3009. + 15. Updated an x86 disassembler bug. PR 3000. + 16. Various updates for PPC, ARM, MIPS, SH, Xtensa. + 17. Added Score support. + +------------------------------------------------------------------- +Thu Sep 21 12:43:26 CEST 2006 - schwab@suse.de + +- Add support for --dynamic-list. + +------------------------------------------------------------------- +Wed Aug 9 13:05:01 CEST 2006 - schwab@suse.de + +- Enable -zrelro by default. + +------------------------------------------------------------------- +Wed Jul 26 17:53:23 CEST 2006 - schwab@suse.de + +- Fix bad gp value [#190362]. + +------------------------------------------------------------------- +Mon Jul 17 10:48:04 CEST 2006 - schwab@suse.de + +- Update to binutils 2.17.50.0.3. + 1. Update from binutils 2006 0715. + 2. Add --hash-style to ELF linker with DT_GNU_HASH and SHT_GNU_HASH. + 3. Fix a visibility bug in ELF linker (PR 2884). + 4. Properly fix the i386 TLS linker bug (PR 2513). + 5. Add assembler and dissassembler support for Pentium Pro nops. + 6. Optimize x86 nops for Pentium Pro and above. + 7. Add -march=/-mtune= to x86 assembler. + 8. Fix an ELF linker with TLS common symbols. + 9. Improve program header allocation in ELF linker. + 10. Improve MIPS, M68K and ARM support. + 11. Fix an ELF linker crash when reporting alignment change (PR 2735). + 12. Remove unused ELF section symbols (PR 2723). + 13. Add --localize-hidden to objcopy. + 14. Add AMD SSE4a and ABM new instruction support. + 15. Properly handle illegal x86 instructions in group 11 (PR 2829). + 16. Add "-z max-page-size=" and "-z common-page-size=" to ELF linker. + 17. Fix objcopy for .tbss sections. + +------------------------------------------------------------------- +Tue Jun 13 17:14:41 CEST 2006 - schwab@suse.de + +- Handle hash resizing during as-needed processing. + +------------------------------------------------------------------- +Fri Jun 9 15:27:49 CEST 2006 - schwab@suse.de + +- Disable hash resizing. + +------------------------------------------------------------------- +Sat Jun 3 09:49:27 CEST 2006 - schwab@suse.de + +- Fix DT_NEEDED search with --as-needed libraries. +- Fix bfd_hash_lookup. + +------------------------------------------------------------------- +Fri May 26 21:38:06 CEST 2006 - schwab@suse.de + +- Update to binutils 2.17.50.0.2. + +------------------------------------------------------------------- +Mon May 15 13:20:56 CEST 2006 - schwab@suse.de + +- Update to binutils 2.17.50.0.1. + +------------------------------------------------------------------- +Mon May 8 15:21:55 CEST 2006 - hare@suse.de + +- Fix invalid exeception on S/390 when calling res_init() + [#172700 - LTC23600] + +------------------------------------------------------------------- +Fri May 5 16:32:26 CEST 2006 - schwab@suse.de + +- Fix huge link times [#167593]. + +------------------------------------------------------------------- +Tue Apr 11 11:44:13 CEST 2006 - schwab@suse.de + +- PR ld/2442: fix quadratic behaviour with many relocations [#157119]. +- PR ld/2513: fix invalid TLS reloc merging [#162901]. + +------------------------------------------------------------------- +Mon Apr 3 13:07:29 CEST 2006 - schwab@suse.de + +- Add various bug fix backports collected by Alan Modra. Fixes the + following binutils bugs: + * PR ld/2443 + * PR ld/2462 + * PR ld/2267 + * incompatibilities between REL{32,24,14} + * ld -r on ppc64 + * -msecure-plt vs TLS + +------------------------------------------------------------------- +Fri Mar 31 16:10:44 CEST 2006 - schwab@suse.de + +- Fix build race. + +------------------------------------------------------------------- +Fri Mar 31 15:49:12 CEST 2006 - matz@suse.de + +- Also disallow linking non-PIC .o files into shared libraries on + s390x. + +------------------------------------------------------------------- +Fri Mar 31 15:33:39 CEST 2006 - schwab@suse.de + +- Fix bfd_find_nearest_line so that gcc -frepo works again. + +------------------------------------------------------------------- +Wed Feb 15 17:06:44 CET 2006 - matz@suse.de + +- Update -Bdirect and -zdynsort patches. + +------------------------------------------------------------------- +Mon Feb 6 19:19:23 CET 2006 - matz@suse.de + +- Adjust testsuite for s390 -march=z900 default. +- Disallow linking non-PIC .o files into shared libraries on s390. + +------------------------------------------------------------------- +Wed Jan 25 21:30:00 CET 2006 - mls@suse.de + +- converted neededforbuild to BuildRequires + +------------------------------------------------------------------- +Wed Jan 18 18:26:59 CET 2006 - matz@suse.de + +- Add large model patch. + +------------------------------------------------------------------- +Tue Jan 17 01:33:51 CET 2006 - schwab@suse.de + +- Add patch to fix --gc-sections on ppc64. +- Fix side effect of --enable-targets=arm. + +------------------------------------------------------------------- +Wed Jan 11 12:12:30 CET 2006 - schwab@suse.de + +- Update to binutils 2.16.91.0.5. + +------------------------------------------------------------------- +Tue Jan 10 11:06:32 CET 2006 - rguenther@suse.de + +- Don't error out for testsuite failures on hppa. + +------------------------------------------------------------------- +Tue Jan 3 10:04:06 CET 2006 - dmueller@suse.de + +- Don't create empty rpath components when stripping + +------------------------------------------------------------------- +Wed Dec 7 18:35:28 CET 2005 - schwab@suse.de + +- Fix handling of SHF_LINK_ORDER links for objcopy. + +------------------------------------------------------------------- +Wed Dec 7 15:46:47 CET 2005 - coolo@suse.de + +- New -Bdirect patch. + +------------------------------------------------------------------- +Fri Dec 2 15:52:28 CET 2005 - schwab@suse.de + +- Add experimental -Bdirect patch. + +------------------------------------------------------------------- +Thu Nov 24 11:48:11 CET 2005 - schwab@suse.de + +- Fix aliasing warning. + +------------------------------------------------------------------- +Sun Nov 13 20:27:57 CET 2005 - schwab@suse.de + +- Update to binutils 2.16.91.0.4. + +------------------------------------------------------------------- +Wed Nov 9 14:48:41 CET 2005 - schwab@suse.de + +- Fixes from CVS: + * Don't strip local absolute symbols from linker output. + * Allow equating local symbols to undefined symbols. + +------------------------------------------------------------------- +Fri Nov 4 17:16:58 CET 2005 - schwab@suse.de + +- Fix more warnings. + +------------------------------------------------------------------- +Wed Nov 2 13:26:25 CET 2005 - schwab@suse.de + +- Fix warnings. + +------------------------------------------------------------------- +Thu Oct 27 13:12:06 CEST 2005 - aj@suse.de + +- Spell fix. + +------------------------------------------------------------------- +Wed Sep 28 17:13:27 CEST 2005 - schwab@suse.de + +- Add target i386-pe on ix86 and x86_64. + +------------------------------------------------------------------- +Fri Sep 16 17:10:52 CEST 2005 - schwab@suse.de + +- Update to binutils 2.16.91.0.3. + +------------------------------------------------------------------- +Thu Sep 1 14:05:00 CEST 2005 - schwab@suse.de + +- Fix objdump -adjust-vma on non-relocatable object [#114666]. + +------------------------------------------------------------------- +Wed Aug 10 13:37:20 CEST 2005 - schwab@suse.de + +- Replace last change by a simpler fix. + +------------------------------------------------------------------- +Sat Aug 6 15:00:51 CEST 2005 - schwab@suse.de + +- Add hook for resetting GP after each relaxing pass. + +------------------------------------------------------------------- +Fri Aug 5 10:51:30 CEST 2005 - matz@suse.de + +- Fix alpha again. + +------------------------------------------------------------------- +Wed Aug 3 16:00:40 CEST 2005 - schwab@suse.de + +- Don't warn on overflow in the assembler if emitting a reloc on ppc + [#100189]. +- Fix handling of discarded linkonce sections [#84608]. + +------------------------------------------------------------------- +Tue Aug 2 15:27:47 CEST 2005 - schwab@suse.de + +- Avoid generating R_IA64_NONE. + +------------------------------------------------------------------- +Tue Aug 2 12:58:30 CEST 2005 - uli@suse.de + +- disabled make check on ARM (one test fills up the hard disk; + not a QEMU problem, happens on real hardware, too) + +------------------------------------------------------------------- +Mon Jul 25 14:29:41 CEST 2005 - schwab@suse.de + +- Fix syntax error in libtool library files [#98185]. + +------------------------------------------------------------------- +Thu Jul 21 22:35:11 CEST 2005 - schwab@suse.de + +- Update to binutils 2.16.91.0.2. + +------------------------------------------------------------------- +Thu Jun 23 13:26:37 CEST 2005 - schwab@suse.de + +- Update to binutils 2.16.91.0.1. + +------------------------------------------------------------------- +Wed Jun 22 10:05:27 CEST 2005 - schwab@suse.de + +- Add patch to properly handle indirect symbols. + +------------------------------------------------------------------- +Fri May 20 11:48:01 CEST 2005 - schwab@suse.de + +- Fix ld testsuite. + +------------------------------------------------------------------- +Tue May 17 22:12:33 CEST 2005 - schwab@suse.de + +- Fix overflows in BFD library [#81821]. + +------------------------------------------------------------------- +Wed May 11 10:47:00 CEST 2005 - schwab@suse.de + +- Update to binutils 2.16.90.0.3. +- Build with -Wno-error in beta. + +------------------------------------------------------------------- +Sat May 7 23:34:32 CEST 2005 - schwab@suse.de + +- Add patch to properly put unwind sections into section groups. +- Fix avr assembler. + +------------------------------------------------------------------- +Sat May 7 20:37:24 CEST 2005 - matz@suse.de + +- added alpha cross target. + +------------------------------------------------------------------- +Tue May 3 21:08:16 CEST 2005 - jw@suse.de + +- added target avr. + +------------------------------------------------------------------- +Sun May 1 12:29:44 CEST 2005 - schwab@suse.de + +- Update to binutils 2.16.90.0.2. + +------------------------------------------------------------------- +Thu Apr 28 13:51:22 CEST 2005 - schwab@suse.de + +- Update patch for last change. + +------------------------------------------------------------------- +Mon Apr 25 10:01:33 CEST 2005 - matz@suse.de + +- Fix breakage on alpha + +------------------------------------------------------------------- +Wed Apr 20 13:01:06 CEST 2005 - bg@suse.de + +- remove additional target hppa64 +- remove obsolete hppa patch +- enable tests + +------------------------------------------------------------------- +Sun Apr 17 23:45:12 CEST 2005 - schwab@suse.de + +- Accept empty symbol names. +- Fix bugs related to section groups. + +------------------------------------------------------------------- +Wed Apr 13 16:38:52 CEST 2005 - schwab@suse.de + +- Fix mips assembler. + +------------------------------------------------------------------- +Mon Apr 11 20:41:38 CEST 2005 - schwab@suse.de + +- Add patch to fix AS_NEEDED. + +------------------------------------------------------------------- +Sun Apr 10 22:02:45 CEST 2005 - schwab@suse.de + +- Update to binutils 2.16.90.0.1. + +------------------------------------------------------------------- +Wed Apr 6 18:15:54 CEST 2005 - schwab@suse.de + +- Cleanup neededforbuild. +- Fix compilation with gcc4. + +------------------------------------------------------------------- +Wed Apr 6 06:52:20 CEST 2005 - meissner@suse.de + +- Added gettext-devel to neededforbuild. + +------------------------------------------------------------------- +Wed Apr 6 00:12:43 CEST 2005 - schwab@suse.de + +- Revert last change (don't disable parallel build). + +------------------------------------------------------------------- +Tue Apr 5 23:03:47 CEST 2005 - meissner@suse.de + +- Added gettext-devel to neededforbuild. + +------------------------------------------------------------------- +Wed Mar 30 13:50:59 CEST 2005 - schwab@suse.de + +- Support AS_NEEDED in linker script. + +------------------------------------------------------------------- +Fri Feb 18 11:30:31 CET 2005 - schwab@suse.de + +- Update to binutils 2.15.94.0.2.2. + +------------------------------------------------------------------- +Thu Feb 3 18:41:14 CET 2005 - schwab@suse.de + +- Fix ld testsuite for gcc4. + +------------------------------------------------------------------- +Mon Jan 31 00:56:51 CET 2005 - schwab@suse.de + +- Add patch to properly handle protected functions for ia32 and x86_64. + +------------------------------------------------------------------- +Thu Jan 20 02:11:31 CET 2005 - schwab@suse.de + +- Fix last change. + +------------------------------------------------------------------- +Wed Jan 19 20:52:29 CET 2005 - schwab@suse.de + +- Handle biarch targets also for cross binutils. + +------------------------------------------------------------------- +Sat Jan 8 21:42:54 CET 2005 - schwab@suse.de + +- Update to binutils 2.15.94.0.2. +- Enable more targets. + +------------------------------------------------------------------- +Tue Nov 23 13:27:34 CET 2004 - schwab@suse.de + +- Update to binutils 2.15.94.0.1. + +------------------------------------------------------------------- +Thu Oct 14 02:59:16 CEST 2004 - schwab@suse.de + +- Remove broken check. + +------------------------------------------------------------------- +Wed Oct 13 14:08:46 CEST 2004 - schwab@suse.de + +- Fix ppc asm operand parsing. + +------------------------------------------------------------------- +Fri Oct 8 15:25:40 CEST 2004 - schwab@suse.de + +- Update to binutils 2.15.92.0.2. + +------------------------------------------------------------------- +Thu Sep 9 22:22:46 CEST 2004 - schwab@suse.de + +- Fix last change. + +------------------------------------------------------------------- +Thu Sep 2 17:36:46 CEST 2004 - schwab@suse.de + +- Fix relro alignment. + +------------------------------------------------------------------- +Sat Aug 21 19:47:27 CEST 2004 - coolo@suse.de + +- also build cross binutils for ppc64 + +------------------------------------------------------------------- +Fri Aug 6 16:17:54 CEST 2004 - schwab@suse.de + +- Fix crash in ld [#43550]. + +------------------------------------------------------------------- +Wed Aug 4 17:17:40 CEST 2004 - schwab@suse.de + +- Add patch for PR binutils/290. + +------------------------------------------------------------------- +Sun Aug 1 14:39:04 CEST 2004 - schwab@suse.de + +- Make error about relocs against discarded sections non-fatal for now. + +------------------------------------------------------------------- +Wed Jul 28 22:04:22 CEST 2004 - schwab@suse.de + +- Update to binutils 2.15.91.0.2. + +------------------------------------------------------------------- +Sat Jun 5 01:26:59 CEST 2004 - schwab@suse.de + +- Update to binutils 2.15.91.0.1. + +------------------------------------------------------------------- +Tue May 4 09:50:23 CEST 2004 - coolo@suse.de + +- created cross-*-binutils in the same directory reusing create-cross.sh + as pre_checkin.sh + +------------------------------------------------------------------- +Fri Apr 16 08:09:43 CEST 2004 - aj@suse.de + +- Fix some offset expressions. + +------------------------------------------------------------------- +Thu Apr 15 20:07:08 CEST 2004 - aj@suse.de + +- Update to binutils 2.15.90.0.3. + +------------------------------------------------------------------- +Wed Apr 14 09:23:08 CEST 2004 - aj@suse.de + +- Update to binutils 2.15.90.0.2. + +------------------------------------------------------------------- +Fri Mar 26 12:25:38 CET 2004 - meissner@suse.de + +- Added ppc64 patch to drop excess symbols in shared libraries. + +------------------------------------------------------------------- +Tue Mar 23 13:43:53 CET 2004 - schwab@suse.de + +- Fix --wrap on PPC64 [#34903]. + +------------------------------------------------------------------- +Tue Mar 16 16:17:36 CET 2004 - mludvig@suse.cz + +- Added support for VIA PadLock. +- Merged obsolete fix-clflush.patch into opcode-i386.diff + +------------------------------------------------------------------- +Fri Mar 12 10:20:18 CET 2004 - aj@suse.de + +- Fix sysenter. +- Fix x86 clflush disassembly. + +------------------------------------------------------------------- +Wed Mar 10 13:16:57 CET 2004 - schwab@suse.de + +- Fix a possible race in the PLT. + +------------------------------------------------------------------- +Mon Mar 8 19:55:36 CET 2004 - aj@suse.de + +- Fix cfi testsuite on s390x. + +------------------------------------------------------------------- +Mon Mar 8 16:19:38 CET 2004 - hare@suse.de + +- Enable s390 biarch backend. +- Fix Invalid .insn from gas on s390. + +------------------------------------------------------------------- +Mon Mar 8 10:11:11 CET 2004 - aj@suse.de + +- Fix fde alignment. + +------------------------------------------------------------------- +Sat Mar 6 07:42:23 CET 2004 - aj@suse.de + +- Update to binutils-2.15.90.0.1.1 which incorporates the last two + changes. + +------------------------------------------------------------------- +Fri Mar 5 11:56:08 CET 2004 - schwab@suse.de + +- Fix align handling. + +------------------------------------------------------------------- +Thu Mar 4 18:48:23 CET 2004 - aj@suse.de + +- Install as manpage. + +------------------------------------------------------------------- +Thu Mar 4 06:35:51 CET 2004 - aj@suse.de + +- Update to binutils-2.15.90.0.1. + +------------------------------------------------------------------- +Fri Feb 27 13:42:36 CET 2004 - schwab@suse.de + +- Support POSIX-compatible argument parsing in ar [#33775]. +- Fix textrel patch. + +------------------------------------------------------------------- +Thu Feb 26 15:37:22 CET 2004 - schwab@suse.de + +- Fix spurious DT_TEXTREL. + +------------------------------------------------------------------- +Wed Feb 25 09:11:33 CET 2004 - matz@suse.de + +- Enable new dtags by default. + +------------------------------------------------------------------- +Fri Feb 13 12:40:15 CET 2004 - hare@suse.de + +- Fix memcmp bug in gas/dwarf2dbg.c + +------------------------------------------------------------------- +Thu Feb 12 08:14:30 CET 2004 - bg@suse.de + +- Workaround for ICE in elf32_hppa_relocate_section. + +------------------------------------------------------------------- +Thu Jan 15 14:02:08 CET 2004 - aj@suse.de + +- Fix common page size on ppc. +- Update to binutils 2.14.90.0.8. + +------------------------------------------------------------------- +Mon Jan 12 08:14:24 CET 2004 - aj@suse.de + +- Fix PPC64 TLS bug. + +------------------------------------------------------------------- +Fri Dec 12 23:17:58 CET 2003 - schwab@suse.de + +- Fix file list. + +------------------------------------------------------------------- +Tue Dec 2 16:34:40 CET 2003 - schwab@suse.de + +- Fix last change for ia64. + +------------------------------------------------------------------- +Mon Nov 24 18:13:54 CET 2003 - aj@suse.de + +- Fix handling of '/' in gas on x86 platforms. + +------------------------------------------------------------------- +Thu Oct 30 06:23:28 CET 2003 - aj@suse.de + +- Update to binutils 2.14.90.0.7: + 1. Update from binutils 2003 1029. + 2. Allow type changes for undefined symbols. + 3. Fix EH frame optimization. + 4. Fix the check for undefined versioned symbol with wildcard. + 5. Support generating code for Itanium. + 6. Detect and warn bad symbol index. + 7. Update IPF assemebler DV check. + +------------------------------------------------------------------- +Fri Oct 17 22:48:27 CEST 2003 - schwab@suse.de + +- Update dv warning patch once more. +- Disable -Wunused during testsuite. + +------------------------------------------------------------------- +Fri Oct 17 12:15:22 CEST 2003 - schwab@suse.de + +- Update dv warning patch. + +------------------------------------------------------------------- +Wed Oct 15 15:38:54 CEST 2003 - aj@suse.de + +- Build as non-root user. + +------------------------------------------------------------------- +Fri Oct 3 13:18:19 CEST 2003 - kukuk@suse.de + +- Remove tetex from neededforbuild + +------------------------------------------------------------------- +Wed Oct 1 15:44:01 CEST 2003 - schwab@suse.de + +- Fix spurious dv conflict warning. +- Don't ignore testsuite failures on ia64. + +------------------------------------------------------------------- +Fri Sep 26 15:56:12 CEST 2003 - aj@suse.de + +- Update to binutils-2.14.90.0.6. + +------------------------------------------------------------------- +Fri Aug 29 11:41:46 CEST 2003 - aj@suse.de + +- Add patch to speed up linker. + +------------------------------------------------------------------- +Tue Aug 19 10:31:43 CEST 2003 - aj@suse.de + +- disable unit-at-a-time for some tests so that they pass (otherwise + some sections are reordered). + +------------------------------------------------------------------- +Fri Aug 8 19:52:50 CEST 2003 - schwab@suse.de + +- Fix generation of efi-app binaries. + +------------------------------------------------------------------- +Tue Jul 29 13:22:40 CEST 2003 - meissner@suse.de + +- Fix ppc64 bitmask detection (from current CVS). + +------------------------------------------------------------------- +Fri Jul 25 17:07:18 CEST 2003 - schwab@suse.de + +- Readd workaround for missing DESTDIR support. + +------------------------------------------------------------------- +Thu Jul 24 12:05:59 CEST 2003 - aj@suse.de + +- Update to binutils 2.14.90.0.5. + +------------------------------------------------------------------- +Wed Jul 16 15:01:59 CEST 2003 - mludvig@suse.cz + +- Reverted Alan Modra's patch for .debug_line generation. + http://sources.redhat.com/ml/binutils/2003-07/msg00294.html + +------------------------------------------------------------------- +Fri Jul 4 07:17:27 CEST 2003 - olh@suse.de + +- update to binutils-2.14.90.0.4-cvs20030704.diff.bz2 + +------------------------------------------------------------------- +Wed Jul 2 12:59:30 CEST 2003 - olh@suse.de + +- add binutils-ppc64-mminimal-toc.patch + --disable-nls in cross-binutils, remove man and info to + avoid file conflicts with multiple cross-binutils packages + +------------------------------------------------------------------- +Wed Jul 2 08:45:19 CEST 2003 - aj@suse.de + +- Support z990 instructions. + +------------------------------------------------------------------- +Mon Jun 30 07:30:02 CEST 2003 - olh@suse.de + +- add binutils_x86_64_bfd_c90.patch + +------------------------------------------------------------------- +Fri Jun 27 17:04:18 CEST 2003 - olh@suse.de + +- update to binutils-2.14.90.0.4-cvs20030627.diff.bz2 + use DESTDIR + +------------------------------------------------------------------- +Tue Jun 24 07:54:01 CEST 2003 - coolo@suse.de + +- ignore rpaths only for > 8.2 + +------------------------------------------------------------------- +Mon Jun 23 12:42:43 CEST 2003 - coolo@suse.de + +- removed %ifarch mips + +------------------------------------------------------------------- +Wed Jun 18 21:06:52 CEST 2003 - aj@suse.de + +- Fix CFI alignment bugs. + +------------------------------------------------------------------- +Wed Jun 18 09:01:07 CEST 2003 - olh@suse.de + +- update to binutils-2.14.90.0.4-cvs20030618.diff.bz2 +- provide an option to test a vanilla binutils release, + provide an option to not apply patches that break the testsuite + +------------------------------------------------------------------- +Tue Jun 17 09:18:43 CEST 2003 - coolo@suse.de + +- apply the cvs diff on all architectures and sort out the other + patches +- use %find_lang +- apply objcopy.c patch to add --only-keep-debug option to strip + and objcopy + +------------------------------------------------------------------- +Fri Jun 13 08:10:01 CEST 2003 - olh@suse.de + +- use binutils-2.14.90.0.4-cvs20030613.diff.bz2 on ppc/ppc64 + to remove the -mminimal-toc requirement on ppc64 + +------------------------------------------------------------------- +Thu Jun 12 14:03:50 CEST 2003 - aj@suse.de + +- Fix directory file list. + +------------------------------------------------------------------- +Thu Jun 5 11:04:04 CEST 2003 - ro@suse.de + +- fix dangling ldscripts symlink for lib64 platforms + +------------------------------------------------------------------- +Thu Jun 5 09:56:58 CEST 2003 - aj@suse.de + +- Fix typo in CFI calculation. +- Make .eh_frame section read-only. +- Add more CFI directives. + +------------------------------------------------------------------- +Thu Jun 5 08:30:12 CEST 2003 - coolo@suse.de + +- integrating patch to ignore rpaths listed in a file specified + by $SUSE_IGNORED_RPATHS (supposed to be set to /etc/ld.so.conf) + +------------------------------------------------------------------- +Mon Jun 2 16:13:36 CEST 2003 - aj@suse.de + +- Fix addend relocation with CFI. + +------------------------------------------------------------------- +Sat May 31 21:49:33 CEST 2003 - aj@suse.de + +- Handle GOT with more than 8191 entries corect on PowerPC. +- Fix dwarf2 CFI bugs. + +------------------------------------------------------------------- +Fri May 30 13:19:13 CEST 2003 - aj@suse.de + +- Update to binutils 2.14.90.0.4. +- Improve cfi support. + +------------------------------------------------------------------- +Wed May 21 09:45:36 CEST 2003 - aj@suse.de + +- Fix cfi build problems on ia64 and add latest revision of patch. + +------------------------------------------------------------------- +Tue May 20 15:10:19 CEST 2003 - aj@suse.de + +- Fix elf visibility problem. +- Add cfi directives. + +------------------------------------------------------------------- +Sat May 17 11:52:31 CEST 2003 - aj@suse.de + +- Update to binutils 2.14.90.0.2. + +------------------------------------------------------------------- +Thu May 15 13:44:59 CEST 2003 - aj@suse.de + +- Allow testsuite to fail on sparc. + +------------------------------------------------------------------- +Wed May 14 22:43:19 CEST 2003 - schwab@suse.de + +- Workaround lack of DESTDIR support. +- Make sure libbfd is installed before libopcodes. + +------------------------------------------------------------------- +Wed May 14 16:13:43 CEST 2003 - aj@suse.de + +- Link libopcodes against libbfd. +- Fix package list. + +------------------------------------------------------------------- +Mon May 12 17:29:55 CEST 2003 - aj@suse.de + +- Fix bugs and testsuite on s390. + +------------------------------------------------------------------- +Wed May 7 09:28:28 CEST 2003 - aj@suse.de + +- Fix bugs in creation of large files. + +------------------------------------------------------------------- +Tue May 6 08:26:21 CEST 2003 - aj@suse.de + +- Update to version 2.14.90.0.1. + +------------------------------------------------------------------- +Mon Apr 28 23:05:08 CEST 2003 - schwab@suse.de + +- Update ia64 relaxation bug fix. + +------------------------------------------------------------------- +Fri Apr 25 17:16:57 CEST 2003 - aj@suse.de + +- Fix ia64 relaxation bugs. + +------------------------------------------------------------------- +Thu Apr 24 19:11:20 CEST 2003 - olh@suse.de + +- add binutils-2.13-ppc32-ld-symbol-version.patch + add binutils-2.13-ppc32-fPIC.patch + fail to link shared libs compiled without -fPIC + run make check with -k after this change + +------------------------------------------------------------------- +Thu Apr 24 12:20:23 CEST 2003 - ro@suse.de + +- fix install_info --delete call and move from preun to postun + +------------------------------------------------------------------- +Tue Apr 8 10:06:59 CEST 2003 - adrian@suse.de + +- fix build for mips + +------------------------------------------------------------------- +Sat Mar 22 15:38:36 CET 2003 - aj@suse.de + +- Update to 2.13.0.90.20. + +------------------------------------------------------------------- +Wed Mar 19 10:22:19 CET 2003 - aj@suse.de + +- Do not depend on binutils installation. + +------------------------------------------------------------------- +Wed Mar 19 08:48:02 CET 2003 - aj@suse.de + +- Fix crash in ld with overly long command lines (#23743). + +------------------------------------------------------------------- +Thu Feb 27 14:37:15 CET 2003 - aj@suse.de + +- Package all libiberty include files. + +------------------------------------------------------------------- +Wed Feb 19 17:00:07 CET 2003 - stepan@suse.de + +- add create-cross.sh to easily create cross-binutils packages. + +------------------------------------------------------------------- +Tue Feb 18 12:23:41 CET 2003 - aj@suse.de + +- Run testsuite. + +------------------------------------------------------------------- +Fri Feb 14 07:34:52 CET 2003 - aj@suse.de + +- Fix symbol relocations with versioning. + +------------------------------------------------------------------- +Mon Feb 10 09:10:12 CET 2003 - aj@suse.de + +- Fix real.plt on s390. + +------------------------------------------------------------------- +Fri Feb 7 10:03:11 CET 2003 - aj@suse.de + +- Fix dwarf2 filenames. + +------------------------------------------------------------------- +Thu Feb 6 17:13:05 CET 2003 - aj@suse.de + +- Fix frame header sign extension bug (#23318) +- Fix library path for 64-bit platforms +- Fix x86-64 disassembler. + +------------------------------------------------------------------- +Thu Feb 6 14:25:21 CET 2003 - stepan@suse.de + +- Add alpha TLS patch + +------------------------------------------------------------------- +Sat Feb 1 12:36:50 CET 2003 - aj@suse.de + +- Add sparc TLS patch. + +------------------------------------------------------------------- +Sat Jan 25 21:45:26 CET 2003 - aj@suse.de + +- Update to binutils 2.13.90.0.18 which includes: + * Fix some ia64 gas bugs. + * Fix TLS bugs. + * Fix ELF/ppc bugs. + +------------------------------------------------------------------- +Tue Jan 14 18:28:58 CET 2003 - bg@suse.de + +- add hppa relocation patch from "John David Anglin" + + +------------------------------------------------------------------- +Sat Dec 14 13:28:40 CET 2002 - adrian@suse.de + +- add additional mips64 target on mips +- use mips patches which came with the tar ball on mips +- disable "make check" on mips for now + +------------------------------------------------------------------- +Fri Dec 6 17:19:03 CET 2002 - schwab@suse.de + +- Update to binutils 2.13.90.0.16. + +------------------------------------------------------------------- +Wed Dec 4 12:26:40 CET 2002 - olh@suse.de + +- add ppc64-binutils-ld-makecheck.diff, enable make check on ppc64 + +------------------------------------------------------------------- +Sat Nov 23 14:10:57 CET 2002 - olh@suse.de + +- add ppc64-binutils-ld-no256mbsegments.diff + revert the binutils change that moved text and data into separate + 256M address ranges, at least until the glibc dynamic loader + can handle such binaries gracefully. + +------------------------------------------------------------------- +Tue Nov 5 15:10:21 CET 2002 - bg@suse.de + +- Enable hppa build +- Add support for hppa64 + +------------------------------------------------------------------- +Thu Oct 24 08:21:16 CEST 2002 - aj@suse.de + +- Fix allocation of orphaned sections to aviod problems with strip. +- Fix another problem on alpha with orphaned sections. + +------------------------------------------------------------------- +Tue Oct 15 16:34:44 CEST 2002 - aj@suse.de + +- Install libiberty.h [Fixes #20941]. + +------------------------------------------------------------------- +Mon Oct 14 10:51:17 CEST 2002 - aj@suse.de + +- Update to binutils-2.13.90.0.10. + +------------------------------------------------------------------- +Tue Oct 1 09:17:02 CEST 2002 - aj@suse.de + +- Update to binutils-2.13.90.0.5. +- Add tls support for x86-64. +- Fix tls support for i386. + +------------------------------------------------------------------- +Mon Sep 16 16:52:08 CEST 2002 - schwab@suse.de + +- Enable use of brl for out of range branch fixup. + +------------------------------------------------------------------- +Sun Sep 1 10:58:27 CEST 2002 - aj@suse.de + +- Fix LIB_PATH for x86_64. + +------------------------------------------------------------------- +Fri Aug 30 21:04:01 CEST 2002 - bk@suse.de + +- enable s390 as additional target on s390x +- fix LIB_PATH for elf_s390 emulation to not use lib64 paths +- fix LIB_PATH for elf64_s390 to include /usr/local/lib64 and /lib64 +- delete -fsigned-char for binutils on s390/s390x + +------------------------------------------------------------------- +Tue Aug 27 14:46:14 CEST 2002 - aj@suse.de + +- Fix x86-64 gotpcrel generation. +- Add fix for bugs in gas on i386 where GOT references where + miscompiled and fix problem with absolute section. +- Fix reference counting on various platforms. +- Fix counting of definitions in shared objects + +------------------------------------------------------------------- +Fri Jul 19 12:57:07 CEST 2002 - schwab@suse.de + +- Update to binutils 2.12.90.0.15. + +------------------------------------------------------------------- +Sat Jul 13 18:51:24 CEST 2002 - schwab@suse.de + +- Add fix for ia64 indirect call encoding bug. + +------------------------------------------------------------------- +Thu Jul 11 10:24:41 CEST 2002 - aj@suse.de + +- Fix generation of nops for x86-64. + +------------------------------------------------------------------- +Wed Jul 10 09:02:57 CEST 2002 - aj@suse.de + +- Fix -ffunction sections. + +------------------------------------------------------------------- +Tue Jul 9 19:08:51 CEST 2002 - olh@suse.de + +- add patches for gas biarch support on ppc + binutils-2.12.90.0.14-cvs.diff 20020709 + binutils_ppc_biarch_gas.diff + binutils_ppc_biarch_gas_weaksym.diff + +------------------------------------------------------------------- +Fri Jul 5 11:04:48 CEST 2002 - kukuk@suse.de + +- Use %ix86 macro + +------------------------------------------------------------------- +Wed Jul 3 20:21:22 CEST 2002 - aj@suse.de + +- Update to binutils 2.12.90.0.14. +- Remove patches that have been integrated. + +------------------------------------------------------------------- +Tue Jul 2 19:28:43 CEST 2002 - bk@suse.de + +- add fixes for s390(x) - should make this version work for s390. + +------------------------------------------------------------------- +Wed Jun 26 09:10:38 CEST 2002 - aj@suse.de + +- Do not discard empty sections (otherwise the kernel build will + break). + +------------------------------------------------------------------- +Thu Jun 20 21:57:05 CEST 2002 - adrian@suse.de + +- Update to binutils 2.12.90.0.12. + * Update from binutils 2002 0618. + * Fix an mips assembler bug. +- remove s390-testsuite.patch, it is inside 2.12.90.0.12 now + +------------------------------------------------------------------- +Mon Jun 17 16:26:14 CEST 2002 - aj@suse.de + +- Abort with error message if shared libs are build without -fPIC + on x86-64 (in cases where this can be detected). +- Remove ld -Y patch. + +------------------------------------------------------------------- +Fri Jun 14 22:50:11 CEST 2002 - olh@suse.de + +- use _target_cpu in diff packagelist + +------------------------------------------------------------------- +Wed Jun 12 08:50:16 CEST 2002 - aj@suse.de + +- Update to binutils 2.12.90.0.11. +- Better handle ld -Y with multilibs. +- Do not link 32-bit and 64-bit objects togethers when searching libs + via ld.so.conf. +- Add x86-64 as target for i386. + +------------------------------------------------------------------- +Fri May 31 10:38:01 CEST 2002 - olh@suse.de + +- update cvs patch to 20020531, obsolets ppc64_binutils.diff + disable make check on ppc64 + +------------------------------------------------------------------- +Thu May 30 20:06:10 CEST 2002 - olh@suse.de + +- add binutils_x86_64_testsuite.diff, selective[1245] xfail on x86-64 + +------------------------------------------------------------------- +Wed May 29 10:40:31 CEST 2002 - olh@suse.de + +- add ppc64_binutils.diff, for libtool + nm -B output, use D instead of ? for function descriptors + +------------------------------------------------------------------- +Mon May 27 10:55:20 CEST 2002 - olh@suse.de + +- update cvs patch to 20020527 + +------------------------------------------------------------------- +Thu May 23 10:28:30 CEST 2002 - olh@suse.de + +- add cvs 20020523 diff for ppc/ppc64 + put readelf manpage in filelist + +------------------------------------------------------------------- +Sun May 19 13:21:38 CEST 2002 - olh@suse.de + +- handle elf64 (powerpc64-suse-linux) on ppc32 + +------------------------------------------------------------------- +Fri May 17 21:22:21 CEST 2002 - adrian@suse.de + +- fix build for s390x and mips + (added pic config file) +- do not ignore return value of "make check" on mips anymore + +------------------------------------------------------------------- +Fri May 17 18:20:08 CEST 2002 - schwab@suse.de + +- Add gprof docs. +- Add message catalogues. + +------------------------------------------------------------------- +Fri May 17 11:50:36 CEST 2002 - uli@suse.de + +- added gprof to file list + +------------------------------------------------------------------- +Mon May 13 18:59:34 CEST 2002 - schwab@suse.de + +- Add PIC configuration for x86-64. + +------------------------------------------------------------------- +Mon May 13 09:22:41 CEST 2002 - olh@suse.de + +- update to 2.12.90.0.7 + +------------------------------------------------------------------- +Sun May 12 19:48:50 CEST 2002 - schwab@suse.de + +- Install the PIC libiberty.a. + +------------------------------------------------------------------- +Fri May 10 11:53:33 CEST 2002 - meissner@suse.de + +- x86-64 relocation conversion should not just convert to + 64bit relocations since we sometimes do have 32bit ones. + (Patch from Andreas Schwab.) + +------------------------------------------------------------------- +Tue Apr 23 10:38:38 CEST 2002 - aj@suse.de + +- Fix a bug with --eh-frame-hdr that occured on sparc. + +------------------------------------------------------------------- +Mon Apr 22 10:16:30 CEST 2002 - aj@suse.de + +- Fix testsuite for alpha and s390. +- Fix --eh-frame-hdr. +- Update x86-64 assembler patch. + +------------------------------------------------------------------- +Sat Apr 20 22:34:23 CEST 2002 - schwab@suse.de + +- Fix pcrel handling in x86-64 assembler. + +------------------------------------------------------------------- +Wed Apr 17 13:06:40 CEST 2002 - aj@suse.de + +- Fix merging of s390 sections. + +------------------------------------------------------------------- +Mon Apr 15 11:37:32 CEST 2002 - aj@suse.de + +- Fix PPC linker bug. + +------------------------------------------------------------------- +Fri Apr 12 12:52:35 CEST 2002 - aj@suse.de + +- Update to binutils-2.12.90.0.4: + * Contains x86-64 fix + * Fixes S390 ld failure + * Fixes for sparc + +------------------------------------------------------------------- +Mon Apr 8 12:02:29 CEST 2002 - aj@suse.de + +- Add fix for pcrel relocations for x86-64. + +------------------------------------------------------------------- +Tue Apr 2 10:57:07 CEST 2002 - aj@suse.de + +- Change platforms where testsuite is run. + +------------------------------------------------------------------- +Mon Mar 25 11:01:58 CET 2002 - schwab@suse.de + +- Update to binutils-2.12.90.0.3. + +------------------------------------------------------------------- +Sun Mar 10 18:10:07 CET 2002 - schwab@suse.de + +- Update to binutils-2.12.90.0.1. +- gprof now supported on MIPS. + +------------------------------------------------------------------- +Thu Feb 28 14:24:42 CET 2002 - stepan@suse.de + +- add data segment alignment patches. + +------------------------------------------------------------------- +Mon Feb 25 15:59:10 CET 2002 - schwab@suse.de + +- Add fix for elf64-ia64 linker scripts. + +------------------------------------------------------------------- +Mon Feb 18 20:12:11 CET 2002 - schwab@suse.de + +- Fix broken patch. + +------------------------------------------------------------------- +Mon Feb 18 16:35:20 CET 2002 - aj@suse.de + +- Update to binutils-2.11.93.0.2. + +------------------------------------------------------------------- +Thu Feb 14 11:21:28 CET 2002 - aj@suse.de + +- Fix bug in handling of version maps by ld. This is needed for + GCC 3.1. + +------------------------------------------------------------------- +Mon Nov 26 08:37:33 CET 2001 - aj@suse.de + +- gprof is not supported on MIPS, don't try to package it. + +------------------------------------------------------------------- +Thu Nov 15 14:08:39 CET 2001 - adrian@suse.de + +- ignore known problem on mips in testsuite +- disable combreloc patch for mips + +------------------------------------------------------------------- +Wed Nov 14 12:33:14 CET 2001 - ro@suse.de + +- added include file symcat.h to filelist + +------------------------------------------------------------------- +Mon Nov 12 13:25:10 CET 2001 - aj@suse.de + +- Update to binutils-2.11.92.0.10. + +------------------------------------------------------------------- +Sun Sep 30 19:58:17 CEST 2001 - schwab@suse.de + +- Update to binutils 2.11.90.0.31. +- Add support for @iplt and .data16 on ia64. + +------------------------------------------------------------------- +Mon Sep 3 09:45:11 CEST 2001 - aj@suse.de + +- Fix relative relocations on Alpha. + +------------------------------------------------------------------- +Thu Aug 30 09:38:44 CEST 2001 - aj@suse.de + +- Update to binutils 2.11.90.0.29. It includes support for 64-bit + PowerPC. + +------------------------------------------------------------------- +Mon Aug 27 13:45:25 MEST 2001 - aj@suse.de + +- Update to current CVS version and include patch to always enable + sorting of relocations. Together with the new glibc this reduces + relocation processing at program startup significantly. + +------------------------------------------------------------------- +Wed Aug 22 14:13:14 MEST 2001 - aj@suse.de + +- Use AltiVec/PPC patch. +- Revert objdump patch that causes sparc kernel build failure. +- Add missing s390 jump instructions. +- Fix bug with unaligned accesses in the sparc assembler. + +------------------------------------------------------------------- +Fri Aug 17 19:52:32 MEST 2001 - egger@suse.de + +- Added patch for missing AltiVec/PPC opcodes. + +------------------------------------------------------------------- +Mon Aug 16 09:40:05 MEST 2001 - aj@suse.de + +- Update to 2.11.90.0.27, fix s390 relocation generation. + +------------------------------------------------------------------- +Tue Jul 17 13:16:25 CEST 2001 - aj@suse.de + +- Update to binutils 2.11.90.0.24. + +------------------------------------------------------------------- +Wed Jul 11 10:10:59 CEST 2001 - aj@suse.de + +- Update to binutils 2.11.90.0.23. + +------------------------------------------------------------------- +Wed Jun 13 10:49:07 MEST 2001 - aj@suse.de + +- Run testsuite on s390. + +------------------------------------------------------------------- +Tue Jun 12 09:57:59 CEST 2001 - aj@suse.de + +- Update to binutils 2.11.90.0.15. + +------------------------------------------------------------------- +Mon May 14 09:43:37 CEST 2001 - aj@suse.de + +- Update to binutils 2.11.90.0.8. + +------------------------------------------------------------------- +Mon May 7 14:54:33 CEST 2001 - aj@suse.de + +- Update to latest version. + +------------------------------------------------------------------- +Thu Mar 29 08:33:46 CEST 2001 - aj@suse.de + +- Fix a relaxation bug on ia32 that occurs while building GCC. + +------------------------------------------------------------------- +Tue Mar 27 11:54:09 CEST 2001 - aj@suse.de + +- Test for alpha instead of axp. + +------------------------------------------------------------------- +Mon Mar 26 18:27:12 CEST 2001 - aj@suse.de + +- Add patch for S390 to fix relocs. + +------------------------------------------------------------------- +Mon Mar 26 09:58:15 CEST 2001 - aj@suse.de + +- The testsuite is broken on axp, disable it. + +------------------------------------------------------------------- +Thu Mar 8 11:17:22 CET 2001 - aj@suse.de + +- Use separate build directory, don't run testsuite on sparc. + +------------------------------------------------------------------- +Mon Mar 5 11:59:42 CET 2001 - aj@suse.de + +- Update to 2.10.91.0.4. + +------------------------------------------------------------------- +Thu Feb 22 14:32:36 CET 2001 - aj@suse.de + +- Run the testsuite on some platforms. + +------------------------------------------------------------------- +Tue Feb 20 09:48:19 CET 2001 - aj@suse.de + +- Add sparc fix for weak symbols. + +------------------------------------------------------------------- +Mon Feb 19 15:25:26 CET 2001 - aj@suse.de + +- Update to 2.10.91.0.2. + +------------------------------------------------------------------- +Thu Nov 16 12:02:19 CET 2000 - aj@suse.de + +- Added an alpha patch to fix glibc problems. + +------------------------------------------------------------------- +Mon Oct 23 11:16:02 CEST 2000 - aj@suse.de + +- Update to 2.10.0.33. +- Remove PPC patch since it's solved better in .33. + +------------------------------------------------------------------- +Sun Oct 15 14:56:09 CEST 2000 - kukuk@suse.de + +- Update to binutils 2.10.0.31 +- Port s390 patches +- Add PPC patch to fix glibc 2.2 problems + +------------------------------------------------------------------- +Thu Sep 14 11:56:12 CEST 2000 - kukuk@suse.de + +- Use macros in spec file + +------------------------------------------------------------------- +Tue Aug 29 12:30:48 CEST 2000 - aj@suse.de + +- New version 2.10.0.24 with additional s390 patches. + +------------------------------------------------------------------- +Mon Apr 17 01:20:20 CEST 2000 - ro@suse.de + +- added alpha3.dif to fix another problem with compaq compilers + +------------------------------------------------------------------- +Sat Mar 18 12:35:56 CET 2000 - aj@suse.de + +- Fix problems with Compaq compiler, see: + http://sourceware.cygnus.com/ml/binutils/2000-03/msg00226.html + http://sourceware.cygnus.com/ml/binutils/2000-03/msg00160.html + +------------------------------------------------------------------- +Mon Mar 13 22:44:35 CET 2000 - aj@suse.de + +- Added readelf to file list. + +------------------------------------------------------------------- +Mon Feb 28 17:31:41 CET 2000 - ro@suse.de + +- fix HOST macro +- added alpha fix from Andrea + +------------------------------------------------------------------- +Thu Jan 20 10:55:37 CET 2000 - aj@suse.de + +- New version 2.9.5.0.24. + +------------------------------------------------------------------- +Thu Dec 9 18:10:28 CET 1999 - ro@suse.de + +- leave targets for now + +------------------------------------------------------------------- +Wed Dec 8 19:49:15 CET 1999 - kasal@suse.de + +- added buildroot + (it required a patch to target ld/Makefile.am, target install-data-local) + +------------------------------------------------------------------- +Tue Nov 23 15:30:52 CET 1999 - kasal@suse.de + +- backported sparc patch from cvs version of binutils +- added note that geo@suse.cz can make NLMs + +------------------------------------------------------------------- +Tue Nov 16 10:41:15 MET 1999 - kukuk@suse.de + +- Remove broken Sparc as patch, add bfd patch for sparc32 + +------------------------------------------------------------------- +Wed Nov 10 11:27:03 MET 1999 - kukuk@suse.de + +- spec file cleanup, add support for Sparc +- Remove dependency for bin86, not longer necessary + +------------------------------------------------------------------- +Tue Nov 9 15:44:57 CET 1999 - uli@suse.de + +- added PPC-specific files to %files section + +------------------------------------------------------------------- +Mon Sep 13 17:23:57 CEST 1999 - bs@suse.de + +- ran old prepare_spec on spec file to switch to new prepare_spec. + +------------------------------------------------------------------- +Tue Aug 24 15:30:01 MEST 1999 - uli@suse.de + +- fixed Makefile.Linux for PPC + +------------------------------------------------------------------- +Fri May 28 17:41:32 MEST 1999 - ro@suse.de + +- update to .25 + +------------------------------------------------------------------- +Thu Apr 8 22:49:56 MEST 1999 - ro@suse.de + +- update to .23 + +------------------------------------------------------------------- +Mon Mar 29 12:33:59 MEST 1999 - ro@suse.de + +- remove hacks and install libiberty.a in /usr/lib + +------------------------------------------------------------------- +Sun Mar 14 20:12:39 MET 1999 - ro@suse.de + +- libtool tries to be smart dropping the link -liberty + try to be smarter: changed "-liberty" to "../libiberty/libiberty.a" + +------------------------------------------------------------------- +Fri Mar 5 01:06:36 MET 1999 - ro@suse.de + +- update to 2.9.1.0.22b FOR NOW AXP ONLY +- libnaming changed + +------------------------------------------------------------------- +Fri Feb 19 16:18:40 MET 1999 - ro@suse.de + +- update to 2.9.1.0.20 + +------------------------------------------------------------------- +Tue Jan 11 18:23:52 MET 1999 - ro@suse.de + +- adapted specfile to build on alpha, too +- added ansidecl.h to filelist for glibc + +------------------------------------------------------------------- +Mon Nov 2 15:18:48 MET 1998 - ro@suse.de + +- update to 2.9.1.0.15 + +------------------------------------------------------------------- +Fri Sep 11 15:29:04 MEST 1998 - ro@suse.de + +- switch detection of GLIBC to automake + +------------------------------------------------------------------- +Tue Jul 7 18:16:31 MEST 1998 - ro@suse.de + +- pack files depending on used libc / compile a.out for libc5 + +------------------------------------------------------------------- +Wed May 20 23:16:18 MEST 1998 - bs@suse.de + +- took c++filt off from file list (is included in egcs) + +---------------------------------------------------------------------------- +Wed May 6 14:21:33 MEST 1998 - florian@suse.de + + +- update to binutils 2.9.1.0.4 + + +---------------------------------------------------------------------------- +Tue Jul 29 10:59:13 MEST 1997 - florian@suse.de + + +- the a.out-assembler was not installed correctly by "make install" + + +---------------------------------------------------------------------------- +Wed Jun 25 11:28:39 MEST 1997 - florian@suse.de + + +- add bug-fixes from gnu.utils.bugs + + + +---------------------------------------------------------------------------- +Sun Jun 8 17:32:03 MEST 1997 - florian@suse.de + + +- always remove /usr/bin/encaps + + +---------------------------------------------------------------------------- +Sun Jun 8 17:32:03 MEST 1997 - florian@suse.de + + +- update to version 2.8.1 with fixes by H.J. Lu + +---------------------------------------------------------------------------- +Wed Oct 16 17:46:33 MET DST 1996 - florian@suse.de + + +- Update auf Version 2.7.0.3. Sollte jetzt als normales binutils-Paket + installiert sein. 2.6.* hoechstens unter unsorted... + + diff --git a/cross-rx-binutils.spec b/cross-rx-binutils.spec new file mode 100644 index 0000000..95cca6e --- /dev/null +++ b/cross-rx-binutils.spec @@ -0,0 +1,483 @@ +# +# spec file for package cross-rx-binutils +# +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + +Name: cross-rx-binutils +ExcludeArch: rx +%define cross 1 +%define TARGET rx +BuildRequires: bison +BuildRequires: dejagnu +BuildRequires: flex +BuildRequires: gcc-c++ +# for the testsuite +%if 0%{suse_version} >= 1210 +BuildRequires: glibc-devel-static +%endif +%if 0%{suse_version} > 1220 +BuildRequires: makeinfo +%endif +# for some gold tests +BuildRequires: bc +%if 0%{suse_version} > 1110 +BuildRequires: zlib-devel-static +%else +BuildRequires: zlib-devel +%endif +Version: 2.25.0 +Release: 0 +# +# RUN_TESTS +%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) +# check the vanilla binutils, with no patches applied +# TEST_VANILLA +%define test_vanilla %(test ! -f %_sourcedir/TEST_VANILLA ; echo $?) +# +# handle test suite failures +# +%ifarch alpha %arm aarch64 hppa mips sh4 %sparc +%define make_check_handling true +%else +# XXX check again +# XXX disabled because gold is seriously broken for now +%define make_check_handling true +%endif +# let make check fail anyway if RUN_TESTS was requested +%if %{run_tests} +%define make_check_handling false +%endif +# handle all binary object formats supported by SuSE (and a few more) +%ifarch %ix86 %arm aarch64 ia64 ppc ppc64 ppc64le s390 s390x x86_64 +%define build_multitarget 1 +%else +%define build_multitarget 0 +%endif +%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 +# +# +# +Url: http://www.gnu.org/software/binutils/ +PreReq: %{install_info_prereq} +# bug437293 +%ifarch ppc64 +Obsoletes: binutils-64bit +%endif +# +%define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//') +Summary: GNU Binutils +License: GFDL-1.3 and GPL-3.0+ +Group: Development/Tools/Building +Source: binutils-%{binutils_version}.tar.bz2 +Source1: pre_checkin.sh +Source2: README.First-for.SuSE.packagers +Source3: baselibs.conf +Patch1: binutils-2.25-branch.diff.gz +Patch3: binutils-skip-rpaths.patch +Patch4: s390-biarch.diff +Patch5: x86-64-biarch.patch +Patch6: unit-at-a-time.patch +Patch7: ld-dtags.diff +Patch8: ld-relro.diff +Patch9: testsuite.diff +Patch10: enable-targets-gold.diff +Patch11: use-hashtype-both-by-default.diff +Patch12: s390-pic-dso.diff +Patch14: binutils-build-as-needed.diff +Patch18: gold-depend-on-opcodes.diff +Patch22: binutils-bfd_h.patch +Patch23: binutils-fix-gold-aarch64.diff +Patch26: binutils-fix--dynamic-list.patch +Patch27: 0001-S-390-Add-support-for-IBM-z13.patch +Patch28: 0002-S-390-Add-check-for-length-field-operand.patch +Patch29: 0003-S-390-Add-more-IBM-z13-instructions.patch +Patch30: 0004-S-390-Fixes-for-z13-instructions.patch +Patch31: 0005-S-390-z13-use-GNU-attribute-to-indicate-vector-ABI.patch +Patch90: cross-avr-nesc-as.patch +Patch92: cross-avr-omit_section_dynsym.patch +Patch93: cross-avr-size.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-build +PreReq: update-alternatives + +%description +C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, +size, strings, and strip. These utilities are needed whenever you want +to compile a program or kernel. + + +%package gold +Summary: The gold linker +License: GPL-3.0+ +Group: Development/Tools/Building +Requires: binutils = %{version}-%{release} +PreReq: update-alternatives +%if 0%{suse_version} > 1100 +%if 0%{!?cross:1} +%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc +%endif +%endif + +%description gold +gold is an ELF linker. It is intended to have complete support for ELF +and to run as fast as possible on modern systems. For normal use it is +a drop-in replacement for the older GNU linker. + +%package devel +Summary: GNU binutils (BFD development files) +License: GPL-3.0+ +Group: Development/Libraries/C and C++ +Requires: binutils = %{version}-%{release} +Requires: zlib-devel +Provides: binutils:/usr/include/bfd.h + +%description devel +This package includes header files and static libraries necessary to +build programs which use the GNU BFD library, which is part of +binutils. + + +%ifarch %arm +%define HOST %{_target_cpu}-suse-linux-gnueabi +%else +%define HOST %(echo %{_target_cpu} | sed -e "s/parisc/hppa/" -e "s/i.86/i586/" -e "s/ppc/powerpc/" -e "s/sparc64v.*/sparc64/" -e "s/sparcv.*/sparc/")-suse-linux +%endif +%define DIST %(echo '%distribution' | sed 's/ (.*)//') + +%prep +echo "make check will return with %{make_check_handling} in case of testsuite failures." +%setup -q -n binutils-%{binutils_version} +# Patch1 is outside test_vanilla because it's supposed to be the +# patch bringing the tarball to the newest upstream version +%patch1 -p1 +%if !%{test_vanilla} +%patch3 +%patch4 +%patch5 +%patch6 +%patch7 -p1 +%patch8 +%patch9 +%patch10 +%patch11 +%patch12 +%patch14 +%patch18 +%patch22 +%patch23 +%patch26 -p1 +%patch27 -p1 +%patch28 -p1 +%patch29 -p1 +%patch30 -p1 +%patch31 -p1 +%if "%{TARGET}" == "avr" +cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h +%patch90 +%patch92 +%patch93 +%endif +# +# test_vanilla +%endif +%if 0%{?qemu_user_space_build} +# Work around bug in qemu (make: execvp: /bin/sh: Argument list too long) +sed -i 's/\.EXPORT_ALL_VARIABLES:/#&/' gold/testsuite/Makefile.{am,in} +%endif + +%build +sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h +RPM_OPT_FLAGS="$RPM_OPT_FLAGS -Wno-error" +%if 0%{!?cross:1} +# Building native binutils +echo "Building native binutils." +%if %build_multitarget +EXTRA_TARGETS="%(printf ,%%s-suse-linux %target_list)" +EXTRA_TARGETS="$EXTRA_TARGETS,powerpc-macos,powerpc-macos10,spu-elf,x86_64-pep" +%else +EXTRA_TARGETS= +%ifarch sparc +EXTRA_TARGETS="$EXTRA_TARGETS,sparc64-suse-linux" +%endif +%ifarch ppc +EXTRA_TARGETS="$EXTRA_TARGETS,powerpc64-suse-linux" +%endif +%ifarch s390 +EXTRA_TARGETS="$EXTRA_TARGETS,s390x-suse-linux" +%endif +%ifarch s390x +EXTRA_TARGETS="$EXTRA_TARGETS,s390-suse-linux" +%endif +%ifarch %ix86 +EXTRA_TARGETS="$EXTRA_TARGETS,x86_64-suse-linux" +%endif +%ifarch ppc ppc64 ppc64le +EXTRA_TARGETS="$EXTRA_TARGETS,spu-elf" +%endif +%ifarch %arm +EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" +%endif +%ifarch aarch64 +EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" +%endif +%endif +# Normally we'd like to add --enable-deterministic-archives +# here (which by default makes uid/mtime be zero for archive +# members), to increase chances of getting a reproducable build +# But this breaks Makefile rules when directly accessing archives: +# rebuilding the same archive from unchanged .o files recreates +# it, because timestamps in the .a are 0, unequal to the actual timestamp +# of the .o files :-/ +%define common_flags CFLAGS="${RPM_OPT_FLAGS}" CXXFLAGS="${RPM_OPT_FLAGS}" \\\ + --prefix=%{_prefix} --libdir=%{_libdir} \\\ + --infodir=%{_infodir} --mandir=%{_mandir} \\\ + --with-bugurl=http://bugs.opensuse.org/ \\\ + --with-pkgversion="GNU Binutils; %{DIST}" \\\ + --with-separate-debug-dir=%{_prefix}/lib/debug \\\ + --with-pic --build=%{HOST} +mkdir build-dir +cd build-dir +../configure %common_flags \ + ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} \ + --enable-plugins \ +%ifarch %gold_archs + --enable-gold \ + --enable-threads \ +%endif + --enable-shared +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring (???) +rm bfd/Makefile +make %{?_smp_mflags} + +%else +# building cross-TARGET-binutils +echo "Building cross binutils." +mkdir build-dir +cd build-dir +EXTRA_TARGETS= +%if "%{TARGET}" == "sparc" +EXTRA_TARGETS="$EXTRA_TARGETS,sparc64-suse-linux" +%endif +%if "%{TARGET}" == "powerpc" +EXTRA_TARGETS="$EXTRA_TARGETS,powerpc64-suse-linux" +%endif +%if "%{TARGET}" == "s390" +EXTRA_TARGETS="$EXTRA_TARGETS,s390x-suse-linux" +%endif +%if "%{TARGET}" == "s390x" +EXTRA_TARGETS="$EXTRA_TARGETS,s390-suse-linux" +%endif +%if "%{TARGET}" == "i586" +EXTRA_TARGETS="$EXTRA_TARGETS,x86_64-suse-linux" +%endif +%if "%{TARGET}" == "hppa" +EXTRA_TARGETS="$EXTRA_TARGETS,hppa64-suse-linux" +%endif +%if "%{TARGET}" == "arm" +EXTRA_TARGETS="$EXTRA_TARGETS,arm-suse-linux-gnueabi" +%endif +%if "%{TARGET}" == "aarch64" +EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" +%endif +%if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" +%define TARGET_OS %{TARGET} +%else +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf +%else +%if "%{TARGET}" == "arm" +%define TARGET_OS %{TARGET}-suse-linux-gnueabi +%else +%define TARGET_OS %{TARGET}-suse-linux +%endif +%endif +%endif +../configure CFLAGS="${RPM_OPT_FLAGS}" \ + --prefix=%{_prefix} \ + --with-bugurl=http://bugs.opensuse.org/ \ + --with-pkgversion="GNU Binutils; %{DIST}" \ + --disable-nls \ + --build=%{HOST} --target=%{TARGET_OS} \ +%if "%{TARGET}" == "spu" + --with-sysroot=/usr/spu \ +%else + --with-sysroot=%{_prefix}/%{TARGET_OS}/sys-root \ +%endif + ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile +make %{?_smp_mflags} +%if "%{TARGET}" == "avr" +# build an extra nesC version because nesC requires $'s in identifiers +cp -a gas gas-nesc +echo '#include "tc-%{TARGET}-nesc.h"' > gas-nesc/targ-cpu.h +make -C gas-nesc clean +make -C gas-nesc %{?_smp_mflags} +%endif +%endif + +%check +unset SUSE_ASNEEDED +cd build-dir +%if 0%{?cross:1} +make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" || %{make_check_handling} +%else +make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || : +%endif + +%install +cd build-dir +%if 0%{!?cross:1} +# installing native binutils +%ifarch %gold_archs +make DESTDIR=$RPM_BUILD_ROOT install-gold +ln -sf ld.gold $RPM_BUILD_ROOT%{_bindir}/gold +%endif +make DESTDIR=$RPM_BUILD_ROOT install-info install +make -C gas/doc DESTDIR=$RPM_BUILD_ROOT install-info-am install-am +make DESTDIR=$RPM_BUILD_ROOT install-bfd install-opcodes +if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then + mv "%buildroot/%_bindir"/{ld,ld.bfd}; +else + rm -f "%buildroot/%_bindir/ld"; +fi +mkdir -p "%buildroot/%_sysconfdir/alternatives"; +# Keep older versions of brp-symlink happy +%if %{suse_version} < 1310 +ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" +%endif +ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin +mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin +ln -sf ../../bin/{ar,as,ld,nm,ranlib,strip} $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin +mv $RPM_BUILD_ROOT%{_prefix}/%{HOST}/lib/ldscripts $RPM_BUILD_ROOT%{_libdir} +ln -sf ../../%{_lib}/ldscripts $RPM_BUILD_ROOT%{_prefix}/%{HOST}/lib/ldscripts +# Install header files +make -C libiberty install_to_libdir target_header_dir=/usr/include DESTDIR=$RPM_BUILD_ROOT +# We want the PIC libiberty.a +install -m 644 libiberty/pic/libiberty.a $RPM_BUILD_ROOT%{_libdir} +# +chmod a+x $RPM_BUILD_ROOT%{_libdir}/libbfd-* +chmod a+x $RPM_BUILD_ROOT%{_libdir}/libopcodes-* +# No shared linking outside binutils +rm $RPM_BUILD_ROOT%{_libdir}/lib{bfd,opcodes}.so +rm $RPM_BUILD_ROOT%{_libdir}/lib{bfd,opcodes}.la +# Remove unwanted files to shut up rpm +rm -f $RPM_BUILD_ROOT%{_infodir}/configure* $RPM_BUILD_ROOT%{_infodir}/standards.info* +rm -f $RPM_BUILD_ROOT%{_mandir}/man1/dlltool.1 $RPM_BUILD_ROOT%{_mandir}/man1/windres.1 $RPM_BUILD_ROOT%{_mandir}/man1/windmc.1 +cd .. +%find_lang binutils +%find_lang bfd binutils.lang +%find_lang gas binutils.lang +%find_lang ld binutils.lang +%find_lang opcodes binutils.lang +%find_lang gprof binutils.lang +%ifarch %gold_archs +%find_lang gold binutils-gold.lang +%endif +mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name} +install -m 644 binutils/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-binutils +install -m 644 gas/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-gas +install -m 644 ld/NEWS $RPM_BUILD_ROOT%{_docdir}/%{name}/NEWS-ld +%else +# installing cross-TARGET-binutils and TARGET-binutils +make DESTDIR=$RPM_BUILD_ROOT install +# Replace hard links by symlinks, so that rpmlint doesn't complain +T=$(basename %buildroot/usr/%{TARGET_OS}) +for f in %buildroot/usr/$T/bin/* ; do + ln -sf /usr/bin/$T-$(basename $f) $f +done +%if "%{TARGET}" == "avr" +install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as +ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as +%endif +rm -rf $RPM_BUILD_ROOT%{_mandir} +rm -rf $RPM_BUILD_ROOT%{_infodir} +rm -rf $RPM_BUILD_ROOT%{_prefix}/lib* +rm -rf $RPM_BUILD_ROOT%{_prefix}/include +rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt +> ../binutils.lang +%endif + +%if 0%{!?cross:1} +%post +"%_sbindir/update-alternatives" --install \ + "%_bindir/ld" ld "%_bindir/ld.bfd" 2 +%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz +%install_info --info-dir=%{_infodir} %{_infodir}/bfd.info.gz +%install_info --info-dir=%{_infodir} %{_infodir}/binutils.info.gz +%install_info --info-dir=%{_infodir} %{_infodir}/gprof.info.gz +%install_info --info-dir=%{_infodir} %{_infodir}/ld.info.gz + +%post gold +"%_sbindir/update-alternatives" --install \ + "%_bindir/ld" ld "%_bindir/ld.gold" 1 + +%preun +%install_info_delete --info-dir=%{_infodir} %{_infodir}/as.info.gz +%install_info_delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz +%install_info_delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz +%install_info_delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz +%install_info_delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz +if [ "$1" = 0 ]; then + "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.bfd"; +fi; + +%preun gold +if [ "$1" = 0 ]; then + "%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold"; +fi; + +%endif + +%files -f binutils.lang +%defattr(-,root,root) +%if 0%{!?cross:1} +%{_docdir}/%{name} +%{_prefix}/%{HOST}/bin/* +%{_prefix}/%{HOST}/lib/ldscripts +%{_libdir}/ldscripts +%{_bindir}/* +%ghost %_sysconfdir/alternatives/ld +%ifarch %gold_archs +%exclude %{_bindir}/gold +%exclude %{_bindir}/ld.gold +%endif +%doc %{_infodir}/*.gz +%{_libdir}/lib*-%{version}*.so +%doc %{_mandir}/man1/*.1.gz +%else +%{_prefix}/%{TARGET_OS} +%{_prefix}/bin/* +%endif + +%ifarch %gold_archs +%files gold -f binutils-gold.lang +%defattr(-,root,root) +%doc gold/NEWS gold/README +%{_bindir}/gold +%{_bindir}/ld.gold +%endif + +%if 0%{!?cross:1} +%files devel +%defattr(-,root,root) +%{_prefix}/include/*.h +%{_libdir}/lib*.*a +%endif + +%changelog diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index fe7647a..c46876c 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index 880fdd8..5f06260 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -295,8 +295,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index fe7647a..c46876c 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index 720bbe4..7346a53 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -295,8 +295,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index fe7647a..c46876c 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index 39ed3e6..79c651e 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -295,8 +295,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index fe7647a..c46876c 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index 61b1938..95d325a 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -295,8 +295,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index fe7647a..c46876c 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index 5b2055c..7671606 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -295,8 +295,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index fe7647a..c46876c 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de + +- Add cross-rx-binutils package for Renesas RX + ------------------------------------------------------------------- Fri Jul 10 15:57:46 UTC 2015 - schwab@linux-m68k.org diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index 842dcec..f8fc362 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -295,8 +295,8 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %if "%{TARGET}" == "avr" || "%{TARGET}" == "spu" %define TARGET_OS %{TARGET} %else -%if "%{TARGET}" == "epiphany" -%define TARGET_OS epiphany-elf +%if "%{TARGET}" == "epiphany" || "%{TARGET}" == "rx" +%define TARGET_OS %{TARGET}-elf %else %if "%{TARGET}" == "arm" %define TARGET_OS %{TARGET}-suse-linux-gnueabi diff --git a/pre_checkin.sh b/pre_checkin.sh index ca94d90..c9097ea 100644 --- a/pre_checkin.sh +++ b/pre_checkin.sh @@ -5,7 +5,7 @@ rm -f cross-*-binutils.spec cross-*-binutils.changes # sh4 is stuck in the testsuite -for arch in aarch64 hppa hppa64 arm i386 x86_64 s390 s390x ppc ppc64 ppc64le ia64 sparc sparc64 spu avr mips m68k epiphany; do +for arch in aarch64 hppa hppa64 arm i386 x86_64 s390 s390x ppc ppc64 ppc64le ia64 sparc sparc64 spu avr mips m68k epiphany rx; do echo -n "Building package for $arch --> cross-$arch-binutils ..." From ada421c79945746b8c2ded5b55d3af92cf97199cbbeb0abbfaebf2dcea696201 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Tue, 21 Jul 2015 12:50:51 +0000 Subject: [PATCH 13/13] - Disable use-hashtype-both-by-default.diff for the mips target, it's incompatible with it. [bnc #938658] OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=193 --- binutils.changes | 6 ++++++ binutils.spec | 4 ++++ cross-aarch64-binutils.changes | 6 ++++++ cross-aarch64-binutils.spec | 4 ++++ cross-arm-binutils.changes | 6 ++++++ cross-arm-binutils.spec | 4 ++++ cross-avr-binutils.changes | 6 ++++++ cross-avr-binutils.spec | 4 ++++ cross-epiphany-binutils.changes | 6 ++++++ cross-epiphany-binutils.spec | 4 ++++ cross-hppa-binutils.changes | 6 ++++++ cross-hppa-binutils.spec | 4 ++++ cross-hppa64-binutils.changes | 6 ++++++ cross-hppa64-binutils.spec | 4 ++++ cross-i386-binutils.changes | 6 ++++++ cross-i386-binutils.spec | 4 ++++ cross-ia64-binutils.changes | 6 ++++++ cross-ia64-binutils.spec | 4 ++++ cross-m68k-binutils.changes | 6 ++++++ cross-m68k-binutils.spec | 4 ++++ cross-mips-binutils.changes | 6 ++++++ cross-mips-binutils.spec | 4 ++++ cross-ppc-binutils.changes | 6 ++++++ cross-ppc-binutils.spec | 4 ++++ cross-ppc64-binutils.changes | 6 ++++++ cross-ppc64-binutils.spec | 4 ++++ cross-ppc64le-binutils.changes | 6 ++++++ cross-ppc64le-binutils.spec | 4 ++++ cross-rx-binutils.changes | 6 ++++++ cross-rx-binutils.spec | 4 ++++ cross-s390-binutils.changes | 6 ++++++ cross-s390-binutils.spec | 4 ++++ cross-s390x-binutils.changes | 6 ++++++ cross-s390x-binutils.spec | 4 ++++ cross-sparc-binutils.changes | 6 ++++++ cross-sparc-binutils.spec | 4 ++++ cross-sparc64-binutils.changes | 6 ++++++ cross-sparc64-binutils.spec | 4 ++++ cross-spu-binutils.changes | 6 ++++++ cross-spu-binutils.spec | 4 ++++ cross-x86_64-binutils.changes | 6 ++++++ cross-x86_64-binutils.spec | 4 ++++ 42 files changed, 210 insertions(+) diff --git a/binutils.changes b/binutils.changes index c46876c..1cdf103 100644 --- a/binutils.changes +++ b/binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/binutils.spec b/binutils.spec index be945fe..61da3c6 100644 --- a/binutils.spec +++ b/binutils.spec @@ -168,7 +168,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index c46876c..1cdf103 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index aeb7143..218d421 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index c46876c..1cdf103 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index 12af642..e68a269 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index c46876c..1cdf103 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index 4b56dd0..23be77e 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-epiphany-binutils.changes b/cross-epiphany-binutils.changes index c46876c..1cdf103 100644 --- a/cross-epiphany-binutils.changes +++ b/cross-epiphany-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index e9c20c4..ab29bc7 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index c46876c..1cdf103 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index 6387c1f..cddb872 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index c46876c..1cdf103 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index cb5075d..edc8827 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index c46876c..1cdf103 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index d780a6d..708fc7c 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index c46876c..1cdf103 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index 53af0aa..4142943 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-m68k-binutils.changes b/cross-m68k-binutils.changes index c46876c..1cdf103 100644 --- a/cross-m68k-binutils.changes +++ b/cross-m68k-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index 5cd527d..c8957d0 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index c46876c..1cdf103 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index d3a2122..6c2de02 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index c46876c..1cdf103 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index a1d017a..3680f80 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index c46876c..1cdf103 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index 82d42dd..7ce90a6 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-ppc64le-binutils.changes b/cross-ppc64le-binutils.changes index c46876c..1cdf103 100644 --- a/cross-ppc64le-binutils.changes +++ b/cross-ppc64le-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index f7087d4..333f248 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-rx-binutils.changes b/cross-rx-binutils.changes index c46876c..1cdf103 100644 --- a/cross-rx-binutils.changes +++ b/cross-rx-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-rx-binutils.spec b/cross-rx-binutils.spec index 95cca6e..192afbf 100644 --- a/cross-rx-binutils.spec +++ b/cross-rx-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index c46876c..1cdf103 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index 5f06260..06e3982 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index c46876c..1cdf103 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index 7346a53..bb9156e 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index c46876c..1cdf103 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index 79c651e..fb6fb55 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index c46876c..1cdf103 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index 95d325a..331ff27 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index c46876c..1cdf103 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index 7671606..4f06c05 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18 diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index c46876c..1cdf103 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 21 12:43:33 UTC 2015 - matz@suse.de + +- Disable use-hashtype-both-by-default.diff for + the mips target, it's incompatible with it. [bnc #938658] + ------------------------------------------------------------------- Mon Jul 13 11:16:25 UTC 2015 - afaerber@suse.de diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index f8fc362..34d63c0 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -171,7 +171,11 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch8 %patch9 %patch10 +%if "%{TARGET}" != "mips" +# The MIPS ABI is incompatible with .gnu.hash, so don't +# use it there %patch11 +%endif %patch12 %patch14 %patch18