From: kurt Date: Mon, 22 Dec 2014 21:59:18 +0000 (+0000) Subject: Link -static -pie executables with rcrt0.o instead of crt0.o such that they X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=8817c02ecc178dc450529015b010e545596713b7;p=openbsd Link -static -pie executables with rcrt0.o instead of crt0.o such that they self-relocate. --- diff --git a/gnu/gcc/gcc/config/i386/openbsdelf.h b/gnu/gcc/gcc/config/i386/openbsdelf.h index e6a3d9928e1..b0e86a62394 100644 --- a/gnu/gcc/gcc/config/i386/openbsdelf.h +++ b/gnu/gcc/gcc/config/i386/openbsdelf.h @@ -47,7 +47,8 @@ Boston, MA 02110-1301, USA. */ /* As an elf system, we need crtbegin/crtend stuff. */ #undef STARTFILE_SPEC #define STARTFILE_SPEC "\ - %{!shared: %{pg:gcrt0%O%s} %{!pg:%{p:gcrt0%O%s} %{!p:crt0%O%s}} \ + %{!shared: %{pg:gcrt0%O%s} %{!pg:%{p:gcrt0%O%s} \ + %{!p:%{!static:crt0%O%s} %{static:%{pie:rcrt0%O%s} %{!pie:crt0%O%s}}}} \ crtbegin%O%s} %{shared:crtbeginS%O%s}" #undef ENDFILE_SPEC #define ENDFILE_SPEC "%{!shared:crtend%O%s} %{shared:crtendS%O%s}"