Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 539074 Details for
Bug 639388
dev-qt/qtwebengine-5.9.* contains WX binary: libQt5WebEngineCore.so.5.9.*
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Updated patch for qtwebengine-5.11.1
missing-asm-gnu-stack-sections.diff (text/plain), 15.60 KB, created by
Attila Tóth
on 2018-07-10 18:48:12 UTC
(
hide
)
Description:
Updated patch for qtwebengine-5.11.1
Filename:
MIME Type:
Creator:
Attila Tóth
Created:
2018-07-10 18:48:12 UTC
Size:
15.60 KB
patch
obsolete
>#find . -name "*.S" -exec sed -i '$ a ' {} \; >#find . -name "*.S" -exec sh -c 'printf "%s\n%s\n" "" "" >> "$1"' sh {} ";" ># >#sed -i '$ a \#if defined\(__linux__\) \&\& defined\(__ELF__\)\n\.section \.note\.GNU-stack\,\"\"\,\%progbits\n\#endif' filename >#echo -e "#if defined(__linux__) && defined(__ELF__)\n.section .note.GNU-stack,\"\",%progbits\n#endif" >> filename >#sh -c 'printf "%s\n%s\n%s\n" "#if defined(__linux__) && defined(__ELF__)" ".section .note.GNU-stack,\"\",%progbits" "#endif" >> filename' ># >#src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule >#src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/cipher_extra >#src/3rdparty/chromium/third_party/boringssl/linux-x86/crypto/chacha >#src/3rdparty/chromium/third_party/boringssl/linux-x86/crypto/fipsmodule >#src/3rdparty/chromium/third_party/boringssl/linux-ppc64le/crypto/fipsmodule > >diff -urNp qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S >--- qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S 2018-06-15 09:47:20.000000000 +0200 >+++ qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S 2018-07-10 12:03:21.385794512 +0200 >@@ -3064,3 +3064,6 @@ aes256gcmsiv_kdf: > .cfi_endproc > .size aes256gcmsiv_kdf, .-aes256gcmsiv_kdf > #endif >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S >--- qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S 2018-06-15 09:47:20.000000000 +0200 >+++ qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S 2018-07-10 12:03:21.457795496 +0200 >@@ -8972,3 +8972,6 @@ seal_avx2_short_tail: > jmp seal_sse_tail_16 > .cfi_endproc > #endif >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S >--- qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S 2018-06-15 09:47:20.000000000 +0200 >+++ qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S 2018-07-10 12:01:52.824585027 +0200 >@@ -832,3 +832,6 @@ aesni_gcm_encrypt: > .byte 65,69,83,45,78,73,32,71,67,77,32,109,111,100,117,108,101,32,102,111,114,32,120,56,54,95,54,52,44,32,67,82,89,80,84,79,71,65,77,83,32,98,121,32,60,97,112,112,114,111,64,111,112,101,110,115,115,108,46,111,114,103,62,0 > .align 64 > #endif >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-x86_64.S qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-x86_64.S >--- qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-x86_64.S 2018-06-15 09:47:20.000000000 +0200 >+++ qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-x86_64.S 2018-07-10 12:01:52.884585847 +0200 >@@ -4379,3 +4379,6 @@ __aesni_set_encrypt_key: > .byte 65,69,83,32,102,111,114,32,73,110,116,101,108,32,65,69,83,45,78,73,44,32,67,82,89,80,84,79,71,65,77,83,32,98,121,32,60,97,112,112,114,111,64,111,112,101,110,115,115,108,46,111,114,103,62,0 > .align 64 > #endif >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aes-x86_64.S qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aes-x86_64.S >--- qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aes-x86_64.S 2018-06-15 09:47:20.000000000 +0200 >+++ qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aes-x86_64.S 2018-07-10 12:01:52.904586120 +0200 >@@ -2534,3 +2534,6 @@ asm_AES_cbc_encrypt: > .byte 65,69,83,32,102,111,114,32,120,56,54,95,54,52,44,32,67,82,89,80,84,79,71,65,77,83,32,98,121,32,60,97,112,112,114,111,64,111,112,101,110,115,115,108,46,111,114,103,62,0 > .align 64 > #endif >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/bsaes-x86_64.S qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/bsaes-x86_64.S >--- qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/bsaes-x86_64.S 2018-06-15 09:47:20.000000000 +0200 >+++ qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/bsaes-x86_64.S 2018-07-10 12:01:52.920586339 +0200 >@@ -2501,3 +2501,6 @@ _bsaes_const: > .align 64 > .size _bsaes_const,.-_bsaes_const > #endif >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/ghash-x86_64.S qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/ghash-x86_64.S >--- qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/ghash-x86_64.S 2018-06-15 09:47:20.000000000 +0200 >+++ qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/ghash-x86_64.S 2018-07-10 12:01:52.932586503 +0200 >@@ -1804,3 +1804,6 @@ gcm_ghash_avx: > .byte 71,72,65,83,72,32,102,111,114,32,120,56,54,95,54,52,44,32,67,82,89,80,84,79,71,65,77,83,32,98,121,32,60,97,112,112,114,111,64,111,112,101,110,115,115,108,46,111,114,103,62,0 > .align 64 > #endif >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/md5-x86_64.S qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/md5-x86_64.S >--- qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/md5-x86_64.S 2018-06-15 09:47:20.000000000 +0200 >+++ qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/md5-x86_64.S 2018-07-10 12:01:52.936586557 +0200 >@@ -669,3 +669,6 @@ md5_block_asm_data_order: > .byte 0xf3,0xc3 > .size md5_block_asm_data_order,.-md5_block_asm_data_order > #endif >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/p256-x86_64-asm.S qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/p256-x86_64-asm.S >--- qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/p256-x86_64-asm.S 2018-06-15 09:47:20.000000000 +0200 >+++ qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/p256-x86_64-asm.S 2018-07-10 12:01:52.948586721 +0200 >@@ -1789,3 +1789,6 @@ ecp_nistz256_point_add_affine: > .byte 0xf3,0xc3 > .size ecp_nistz256_point_add_affine,.-ecp_nistz256_point_add_affine > #endif >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/rdrand-x86_64.S qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/rdrand-x86_64.S >--- qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/rdrand-x86_64.S 2018-06-15 09:47:20.000000000 +0200 >+++ qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/rdrand-x86_64.S 2018-07-10 12:01:52.948586721 +0200 >@@ -46,3 +46,6 @@ CRYPTO_rdrand_multiple8_buf: > xorq %rax,%rax > .byte 0xf3,0xc3 > #endif >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/rsaz-avx2.S qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/rsaz-avx2.S >--- qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/rsaz-avx2.S 2018-06-15 09:47:20.000000000 +0200 >+++ qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/rsaz-avx2.S 2018-07-10 12:01:52.960586885 +0200 >@@ -1742,3 +1742,6 @@ rsaz_avx2_eligible: > .long 4,4,4,4, 4,4,4,4 > .align 64 > #endif >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha1-x86_64.S qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha1-x86_64.S >--- qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha1-x86_64.S 2018-06-15 09:47:20.000000000 +0200 >+++ qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha1-x86_64.S 2018-07-10 12:01:52.984587213 +0200 >@@ -3542,3 +3542,6 @@ K_XX_XX: > .byte 83,72,65,49,32,98,108,111,99,107,32,116,114,97,110,115,102,111,114,109,32,102,111,114,32,120,56,54,95,54,52,44,32,67,82,89,80,84,79,71,65,77,83,32,98,121,32,60,97,112,112,114,111,64,111,112,101,110,115,115,108,46,111,114,103,62,0 > .align 64 > #endif >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha256-x86_64.S qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha256-x86_64.S >--- qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha256-x86_64.S 2018-06-15 09:47:20.000000000 +0200 >+++ qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha256-x86_64.S 2018-07-10 12:01:53.008587541 +0200 >@@ -3904,3 +3904,6 @@ sha256_block_data_order_avx: > .byte 0xf3,0xc3 > .size sha256_block_data_order_avx,.-sha256_block_data_order_avx > #endif >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha512-x86_64.S qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha512-x86_64.S >--- qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha512-x86_64.S 2018-06-15 09:47:20.000000000 +0200 >+++ qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha512-x86_64.S 2018-07-10 12:01:53.036587922 +0200 >@@ -4026,3 +4026,6 @@ sha512_block_data_order_avx: > .byte 0xf3,0xc3 > .size sha512_block_data_order_avx,.-sha512_block_data_order_avx > #endif >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/vpaes-x86_64.S qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/vpaes-x86_64.S >--- qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/vpaes-x86_64.S 2018-06-15 09:47:20.000000000 +0200 >+++ qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/vpaes-x86_64.S 2018-07-10 12:01:53.040587977 +0200 >@@ -832,3 +832,6 @@ _vpaes_consts: > .align 64 > .size _vpaes_consts,.-_vpaes_consts > #endif >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont5.S qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont5.S >--- qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont5.S 2018-06-15 09:47:20.000000000 +0200 >+++ qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont5.S 2018-07-10 12:01:53.056588196 +0200 >@@ -2391,3 +2391,6 @@ bn_gather5: > .long 2,2, 2,2 > .byte 77,111,110,116,103,111,109,101,114,121,32,77,117,108,116,105,112,108,105,99,97,116,105,111,110,32,119,105,116,104,32,115,99,97,116,116,101,114,47,103,97,116,104,101,114,32,102,111,114,32,120,56,54,95,54,52,44,32,67,82,89,80,84,79,71,65,77,83,32,98,121,32,60,97,112,112,114,111,64,111,112,101,110,115,115,108,46,111,114,103,62,0 > #endif >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont.S qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont.S >--- qtwebengine-opensource-src-5.11.1-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont.S 2018-06-15 09:47:20.000000000 +0200 >+++ qtwebengine-opensource-src-5.11.1-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont.S 2018-07-10 12:01:53.064588305 +0200 >@@ -864,3 +864,6 @@ bn_sqr8x_mont: > .byte 77,111,110,116,103,111,109,101,114,121,32,77,117,108,116,105,112,108,105,99,97,116,105,111,110,32,102,111,114,32,120,56,54,95,54,52,44,32,67,82,89,80,84,79,71,65,77,83,32,98,121,32,60,97,112,112,114,111,64,111,112,101,110,115,115,108,46,111,114,103,62,0 > .align 16 > #endif >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 639388
:
509322
| 539074 |
553406
|
553410
|
576412