git: 13c431b0bfec - main - editors/kakoune: fix build on armv6/armv7
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 25 Oct 2021 12:33:22 UTC
The branch main has been updated by tobik: URL: https://cgit.FreeBSD.org/ports/commit/?id=13c431b0bfec55991792bb215e463584c2fc243d commit 13c431b0bfec55991792bb215e463584c2fc243d Author: Robert Clausecker <fuz@fuz.su> AuthorDate: 2021-10-25 11:49:33 +0000 Commit: Tobias Kortkamp <tobik@FreeBSD.org> CommitDate: 2021-10-25 12:32:30 +0000 editors/kakoune: fix build on armv6/armv7 https://github.com/mawww/kakoune/issues/4385 PR: 259434 --- editors/kakoune/files/patch-src_main.cc | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/editors/kakoune/files/patch-src_main.cc b/editors/kakoune/files/patch-src_main.cc new file mode 100644 index 000000000000..0c4fd9b6f327 --- /dev/null +++ b/editors/kakoune/files/patch-src_main.cc @@ -0,0 +1,17 @@ +--- src/main.cc.orig 2021-10-25 11:31:24 UTC ++++ src/main.cc +@@ -1249,8 +1249,12 @@ int main(int argc, char* argv[]) + } + + #if defined(__ELF__) +-asm(R"( +-.pushsection ".debug_gdb_scripts", "MS",@progbits,1 ++#ifdef __arm__ ++# define PROGBITS "%progbits" ++#else ++# define PROGBITS "@progbits" ++#endif ++asm(".pushsection \".debug_gdb_scripts\", \"MS\"," PROGBITS ",1" R"( + .byte 4 + .ascii "kakoune-inline-gdb.py\n" + .ascii "import os.path\n"