From c336402225eb9f12a0cf728d1d3b7431685880b6 Mon Sep 17 00:00:00 2001 From: York Jasper Niebuhr Date: Mon, 6 Apr 2026 20:04:29 +0200 Subject: [PATCH] Fixed linker warning --- patchcompile/emit.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/patchcompile/emit.cpp b/patchcompile/emit.cpp index 0ee15df..eccd231 100644 --- a/patchcompile/emit.cpp +++ b/patchcompile/emit.cpp @@ -314,6 +314,7 @@ bool emit_patcher_program_asm(std::ostream& out) { if (!emit_dpins(out, dpin_recs)) return false; + out << ".section .note.GNU-stack,\"\",@progbits\n"; return !!out; }