diff options
author | 1998-03-11 23:49:19 +0000 | |
---|---|---|
committer | 1998-03-11 23:49:19 +0000 | |
commit | bd44d571c4ef4a66b7c7a406d7ed1765da44d78c (patch) | |
tree | e1e473b54f56eb96f38376ede24c0811919a1659 | |
parent | support non-executable shell scripts (diff) | |
download | wireguard-openbsd-bd44d571c4ef4a66b7c7a406d7ed1765da44d78c.tar.xz wireguard-openbsd-bd44d571c4ef4a66b7c7a406d7ed1765da44d78c.zip |
Pass on -R to ld. Marco S Hyman <marc@snafu.org>
-rw-r--r-- | gnu/usr.bin/gcc/config/openbsd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/gcc/config/openbsd.h b/gnu/usr.bin/gcc/config/openbsd.h index 3f3d859841d..2bfad303d7f 100644 --- a/gnu/usr.bin/gcc/config/openbsd.h +++ b/gnu/usr.bin/gcc/config/openbsd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: openbsd.h,v 1.6 1998/03/03 21:21:16 niklas Exp $ */ +/* $OpenBSD: openbsd.h,v 1.7 1998/03/11 23:49:19 millert Exp $ */ /* OPENBSD_NATIVE is defined when gcc is integrated into the OpenBSD source tree so it can be configured appropriately when using the @@ -59,7 +59,7 @@ #undef LINK_SPEC #define LINK_SPEC \ - "%{!nostdlib:%{!r*:%{!e*:-e start}}} -dc -dp %{static:-Bstatic} %{assert*}" + "%{!nostdlib:%{!r*:%{!e*:-e start}}} -dc -dp %{R*} %{static:-Bstatic} %{assert*}" /* We have atexit(3). */ |