Last active
September 20, 2020 19:47
-
-
Save develCuy/311475bf4d34013f1b4ba4970a272d47 to your computer and use it in GitHub Desktop.
Devcoin wallet compile, patch for boost 1.65.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/libs/context/src/asm/jump_i386_sysv_elf_gas.S b/libs/context/src/asm/jump_i386_sysv_elf_gas.S | |
index 1fec323..945f859 100644 | |
--- a/libs/context/src/asm/jump_i386_sysv_elf_gas.S | |
+++ b/libs/context/src/asm/jump_i386_sysv_elf_gas.S | |
@@ -27,7 +27,7 @@ | |
.text | |
.globl jump_fcontext | |
.align 2 | |
-.type jump_fcontext,@function | |
+#.type jump_fcontext,@function | |
jump_fcontext: | |
leal -0x18(%esp), %esp /* prepare stack */ | |
@@ -76,7 +76,7 @@ jump_fcontext: | |
/* jump to context */ | |
jmp *%ecx | |
-.size jump_fcontext,.-jump_fcontext | |
+#.size jump_fcontext,.-jump_fcontext | |
/* Mark that we don't need executable stack. */ | |
-.section .note.GNU-stack,"",%progbits | |
+#.section .note.GNU-stack,"",%progbits | |
diff --git a/libs/context/src/asm/jump_x86_64_sysv_elf_gas.S b/libs/context/src/asm/jump_x86_64_sysv_elf_gas.S | |
index a25e81c..2d43d35 100644 | |
--- a/libs/context/src/asm/jump_x86_64_sysv_elf_gas.S | |
+++ b/libs/context/src/asm/jump_x86_64_sysv_elf_gas.S | |
@@ -26,7 +26,7 @@ | |
.text | |
.globl jump_fcontext | |
-.type jump_fcontext,@function | |
+#.type jump_fcontext,@function | |
.align 16 | |
jump_fcontext: | |
leaq -0x38(%rsp), %rsp /* prepare stack */ | |
@@ -74,7 +74,7 @@ jump_fcontext: | |
/* indirect jump to context */ | |
jmp *%r8 | |
-.size jump_fcontext,.-jump_fcontext | |
+#.size jump_fcontext,.-jump_fcontext | |
/* Mark that we don't need executable stack. */ | |
-.section .note.GNU-stack,"",%progbits | |
+#.section .note.GNU-stack,"",%progbits | |
diff --git a/libs/context/src/asm/make_i386_sysv_elf_gas.S b/libs/context/src/asm/make_i386_sysv_elf_gas.S | |
index de77e88..614c280 100644 | |
--- a/libs/context/src/asm/make_i386_sysv_elf_gas.S | |
+++ b/libs/context/src/asm/make_i386_sysv_elf_gas.S | |
@@ -27,7 +27,7 @@ | |
.text | |
.globl make_fcontext | |
.align 2 | |
-.type make_fcontext,@function | |
+#.type make_fcontext,@function | |
make_fcontext: | |
/* first arg of make_fcontext() == top of context-stack */ | |
movl 0x4(%esp), %eax | |
@@ -100,7 +100,7 @@ finish: | |
/* exit application */ | |
call _exit@PLT | |
hlt | |
-.size make_fcontext,.-make_fcontext | |
+#.size make_fcontext,.-make_fcontext | |
/* Mark that we don't need executable stack. */ | |
-.section .note.GNU-stack,"",%progbits | |
+#.section .note.GNU-stack,"",%progbits | |
diff --git a/libs/context/src/asm/make_x86_64_sysv_elf_gas.S b/libs/context/src/asm/make_x86_64_sysv_elf_gas.S | |
index 25a0c00..0f6e63c 100644 | |
--- a/libs/context/src/asm/make_x86_64_sysv_elf_gas.S | |
+++ b/libs/context/src/asm/make_x86_64_sysv_elf_gas.S | |
@@ -26,7 +26,7 @@ | |
.text | |
.globl make_fcontext | |
-.type make_fcontext,@function | |
+#.type make_fcontext,@function | |
.align 16 | |
make_fcontext: | |
/* first arg of make_fcontext() == top of context-stack */ | |
@@ -75,7 +75,7 @@ finish: | |
/* exit application */ | |
call _exit@PLT | |
hlt | |
-.size make_fcontext,.-make_fcontext | |
+#.size make_fcontext,.-make_fcontext | |
/* Mark that we don't need executable stack. */ | |
-.section .note.GNU-stack,"",%progbits | |
+#.section .note.GNU-stack,"",%progbits | |
diff --git a/libs/context/src/asm/ontop_i386_sysv_elf_gas.S b/libs/context/src/asm/ontop_i386_sysv_elf_gas.S | |
index 816657a..655ab00 100644 | |
--- a/libs/context/src/asm/ontop_i386_sysv_elf_gas.S | |
+++ b/libs/context/src/asm/ontop_i386_sysv_elf_gas.S | |
@@ -27,7 +27,7 @@ | |
.text | |
.globl ontop_fcontext | |
.align 2 | |
-.type ontop_fcontext,@function | |
+#.type ontop_fcontext,@function | |
ontop_fcontext: | |
leal -0x18(%esp), %esp /* prepare stack */ | |
@@ -83,7 +83,7 @@ ontop_fcontext: | |
/* jump to context */ | |
jmp *%ecx | |
-.size ontop_fcontext,.-ontop_fcontext | |
+#.size ontop_fcontext,.-ontop_fcontext | |
/* Mark that we don't need executable stack. */ | |
-.section .note.GNU-stack,"",%progbits | |
+#.section .note.GNU-stack,"",%progbits | |
diff --git a/libs/context/src/asm/ontop_x86_64_sysv_elf_gas.S b/libs/context/src/asm/ontop_x86_64_sysv_elf_gas.S | |
index c4402cc..8aca8d4 100644 | |
--- a/libs/context/src/asm/ontop_x86_64_sysv_elf_gas.S | |
+++ b/libs/context/src/asm/ontop_x86_64_sysv_elf_gas.S | |
@@ -26,7 +26,7 @@ | |
.text | |
.globl ontop_fcontext | |
-.type ontop_fcontext,@function | |
+#.type ontop_fcontext,@function | |
.align 16 | |
ontop_fcontext: | |
/* preserve ontop-function in R8 */ | |
@@ -77,7 +77,7 @@ ontop_fcontext: | |
/* indirect jump to context */ | |
jmp *%r8 | |
-.size ontop_fcontext,.-ontop_fcontext | |
+#.size ontop_fcontext,.-ontop_fcontext | |
/* Mark that we don't need executable stack. */ | |
-.section .note.GNU-stack,"",%progbits | |
+#.section .note.GNU-stack,"",%progbits |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment