]> git.pld-linux.org Git - packages/boost.git/blame_incremental - boost-x32-context.patch
- fix known compilation breakage
[packages/boost.git] / boost-x32-context.patch
... / ...
CommitLineData
1--- boost_1_58_0/libs/context/src/asm/jump_i386_sysv_elf_gas.S
2+++ boost_1_58_0/libs/context/src/asm/jump_i386_sysv_elf_gas.S
3@@ -17,6 +17,10 @@
4 * *
5 ****************************************************************************************/
6
7+#ifdef __x86_64__
8+#include "jump_x86_64_sysv_elf_gas.S"
9+#else
10+
11 .text
12 .globl jump_fcontext
13 .align 2
14@@ -88,3 +92,5 @@
15
16 /* Mark that we don't need executable stack. */
17 .section .note.GNU-stack,"",%progbits
18+
19+#endif
20--- boost_1_58_0/libs/context/src/asm/make_i386_sysv_elf_gas.S
21+++ boost_1_58_0/libs/context/src/asm/make_i386_sysv_elf_gas.S
22@@ -17,6 +17,10 @@
23 * *
24 ****************************************************************************************/
25
26+#ifdef __x86_64__
27+#include "make_x86_64_sysv_elf_gas.S"
28+#else
29+
30 .text
31 .globl make_fcontext
32 .align 2
33@@ -75,3 +79,5 @@
34
35 /* Mark that we don't need executable stack. */
36 .section .note.GNU-stack,"",%progbits
37+
38+#endif
This page took 0.022793 seconds and 4 git commands to generate.