nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 20 lines 700 B view raw
1--- a/src/sh2_dynarec/linkage_x64.s 2013-03-11 20:29:53.112870900 +0100 2+++ b/src/sh2_dynarec/linkage_x64.s 2013-03-11 20:31:48.856778600 +0100 3@@ -747,3 +747,7 @@ breakpoint: 4 ret 5 /* Set breakpoint here for debugging */ 6 .size breakpoint, .-breakpoint 7+ 8+#if defined(__linux__) && defined(__ELF__) 9+.section .note.GNU-stack,"",%progbits 10+#endif 11--- a/src/sh2_dynarec/linkage_x86.s 2013-03-11 20:30:08.157693100 +0100 12+++ b/src/sh2_dynarec/linkage_x86.s 2013-03-11 20:32:30.993310600 +0100 13@@ -743,3 +743,7 @@ breakpoint: 14 ret 15 /* Set breakpoint here for debugging */ 16 .size breakpoint, .-breakpoint 17+ 18+#if defined(__linux__) && defined(__ELF__) 19+.section .note.GNU-stack,"",%progbits 20+#endif