Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 576412 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]
missing-asm-gnu-stack-sections.diff for version 5.12.3
missing-asm-gnu-stack-sections.diff (text/plain), 16.73 KB, created by
Attila Tóth
on 2019-05-13 10:52:14 UTC
(
hide
)
Description:
missing-asm-gnu-stack-sections.diff for version 5.12.3
Filename:
MIME Type:
Creator:
Attila Tóth
Created:
2019-05-13 10:52:14 UTC
Size:
16.73 KB
patch
obsolete
>diff -urNp qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/blink/renderer/platform/heap/asm/SaveRegisters_x86.asm qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/blink/renderer/platform/heap/asm/SaveRegisters_x86.asm >--- qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/blink/renderer/platform/heap/asm/SaveRegisters_x86.asm 2019-05-13 10:40:10.799840293 +0200 >+++ qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/blink/renderer/platform/heap/asm/SaveRegisters_x86.asm 2019-05-13 11:39:07.487734873 +0200 >@@ -43,6 +43,17 @@ > %define ARM 0 > %endif > >+ >+%define FORMAT_ELF 0 >+%ifidn __OUTPUT_FORMAT__,elf >+ %define FORMAT_ELF 1 >+%elifidn __OUTPUT_FORMAT__,elf32 >+ %define FORMAT_ELF 1 >+%elifidn __OUTPUT_FORMAT__,elf64 >+ %define FORMAT_ELF 1 >+%endif >+ >+ > ;; Prefix symbols by '_' if PREFIX is defined. > %ifdef PREFIX > %define mangle(x) _ %+ x >@@ -157,3 +168,8 @@ mangle(PushAllRegisters): > %else > %error "Unsupported platform." > %endif >+ >+; This is needed for ELF, otherwise the GNU linker assumes the stack is executable by default. >+%if FORMAT_ELF >+ [SECTION .note.GNU-stack noalloc noexec nowrite progbits] >+%endif >diff -urNp qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/chacha/chacha-x86_64.S qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/chacha/chacha-x86_64.S >--- qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/chacha/chacha-x86_64.S 2019-05-13 10:40:08.375806976 +0200 >+++ qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/chacha/chacha-x86_64.S 2019-05-13 11:24:46.371031155 +0200 >@@ -1584,3 +1584,7 @@ ChaCha20_8x: > .byte 0xf3,0xc3 > .size ChaCha20_8x,.-ChaCha20_8x > #endif >+ >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S >--- qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S 2019-05-13 10:40:08.375806976 +0200 >+++ qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S 2019-05-13 11:21:23.464042264 +0200 >@@ -3064,3 +3064,7 @@ aes256gcmsiv_kdf: > .cfi_endproc > .size aes256gcmsiv_kdf, .-aes256gcmsiv_kdf > #endif >+ >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S >--- qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S 2019-05-13 10:40:08.375806976 +0200 >+++ qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S 2019-05-13 11:21:35.928225871 +0200 >@@ -8972,3 +8972,7 @@ 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-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S >--- qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S 2019-05-13 10:40:08.375806976 +0200 >+++ qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S 2019-05-13 11:17:29.416596709 +0200 >@@ -832,3 +832,7 @@ 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-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-x86_64.S qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-x86_64.S >--- qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-x86_64.S 2019-05-13 10:40:08.375806976 +0200 >+++ qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-x86_64.S 2019-05-13 11:17:50.508907153 +0200 >@@ -4449,3 +4449,7 @@ __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-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aes-x86_64.S qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aes-x86_64.S >--- qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aes-x86_64.S 2019-05-13 10:40:08.375806976 +0200 >+++ qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/aes-x86_64.S 2019-05-13 11:18:04.541113690 +0200 >@@ -2638,3 +2638,7 @@ aes_nohw_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-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/bsaes-x86_64.S qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/bsaes-x86_64.S >--- qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/bsaes-x86_64.S 2019-05-13 10:40:08.375806976 +0200 >+++ qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/bsaes-x86_64.S 2019-05-13 11:18:22.653380278 +0200 >@@ -2596,3 +2596,7 @@ _bsaes_const: > .align 64 > .size _bsaes_const,.-_bsaes_const > #endif >+ >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/ghash-x86_64.S qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/ghash-x86_64.S >--- qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/ghash-x86_64.S 2019-05-13 10:40:08.375806976 +0200 >+++ qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/ghash-x86_64.S 2019-05-13 11:18:33.789544187 +0200 >@@ -1804,3 +1804,7 @@ 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-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/md5-x86_64.S qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/md5-x86_64.S >--- qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/md5-x86_64.S 2019-05-13 10:40:08.375806976 +0200 >+++ qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/md5-x86_64.S 2019-05-13 11:18:43.541687725 +0200 >@@ -669,3 +669,7 @@ 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-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/p256-x86_64-asm.S qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/p256-x86_64-asm.S >--- qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/p256-x86_64-asm.S 2019-05-13 10:40:08.375806976 +0200 >+++ qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/p256-x86_64-asm.S 2019-05-13 11:18:55.421862583 +0200 >@@ -4478,3 +4478,7 @@ ecp_nistz256_point_add_affinex: > .cfi_endproc > .size ecp_nistz256_point_add_affinex,.-ecp_nistz256_point_add_affinex > #endif >+ >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/rdrand-x86_64.S qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/rdrand-x86_64.S >--- qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/rdrand-x86_64.S 2019-05-13 10:40:08.375806976 +0200 >+++ qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/rdrand-x86_64.S 2019-05-13 11:19:05.790015191 +0200 >@@ -46,3 +46,7 @@ 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-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/rsaz-avx2.S qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/rsaz-avx2.S >--- qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/rsaz-avx2.S 2019-05-13 10:40:08.375806976 +0200 >+++ qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/rsaz-avx2.S 2019-05-13 11:19:25.670307802 +0200 >@@ -1747,3 +1747,7 @@ 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-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha1-x86_64.S qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha1-x86_64.S >--- qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha1-x86_64.S 2019-05-13 10:40:08.375806976 +0200 >+++ qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha1-x86_64.S 2019-05-13 11:19:37.782486078 +0200 >@@ -3542,3 +3542,7 @@ 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-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha256-x86_64.S qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha256-x86_64.S >--- qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha256-x86_64.S 2019-05-13 10:40:08.375806976 +0200 >+++ qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha256-x86_64.S 2019-05-13 11:19:55.590748189 +0200 >@@ -3904,3 +3904,7 @@ 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-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha512-x86_64.S qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha512-x86_64.S >--- qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha512-x86_64.S 2019-05-13 10:40:08.375806976 +0200 >+++ qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha512-x86_64.S 2019-05-13 11:20:07.734926939 +0200 >@@ -4026,3 +4026,7 @@ 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-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/vpaes-x86_64.S qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/vpaes-x86_64.S >--- qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/vpaes-x86_64.S 2019-05-13 10:40:08.375806976 +0200 >+++ qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/vpaes-x86_64.S 2019-05-13 11:20:20.047108169 +0200 >@@ -832,3 +832,7 @@ _vpaes_consts: > .align 64 > .size _vpaes_consts,.-_vpaes_consts > #endif >+ >+#if defined(__linux__) && defined(__ELF__) >+.section .note.GNU-stack,"",%progbits >+#endif >diff -urNp qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont5.S qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont5.S >--- qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont5.S 2019-05-13 10:40:08.375806976 +0200 >+++ qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont5.S 2019-05-13 11:20:39.031387760 +0200 >@@ -3754,3 +3754,7 @@ 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-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont.S qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont.S >--- qtwebengine-everywhere-src-5.12.3-orig/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont.S 2019-05-13 10:40:08.375806976 +0200 >+++ qtwebengine-everywhere-src-5.12.3-dwok/src/3rdparty/chromium/third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont.S 2019-05-13 11:20:29.967254246 +0200 >@@ -1245,3 +1245,7 @@ bn_mulx4x_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