diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2006-11-03 04:39:24 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2006-11-03 04:39:24 +0000 |
commit | 53d2cc8b4314538c07ab40dea7acd746236e44fb (patch) | |
tree | 8367356134e07a998600a0d29c6b7cceae66dbd1 | |
parent | 84b8990e783366cf3c58fce182fac3a63ba07a84 (diff) |
Use __start (the symbol we provide) not start. ok miod@
-rw-r--r-- | gnu/usr.bin/gcc/gcc/config/sh/openbsd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/gcc/gcc/config/sh/openbsd.h b/gnu/usr.bin/gcc/gcc/config/sh/openbsd.h index 5574e917d1d..e4f98463dbd 100644 --- a/gnu/usr.bin/gcc/gcc/config/sh/openbsd.h +++ b/gnu/usr.bin/gcc/gcc/config/sh/openbsd.h @@ -57,10 +57,10 @@ Boston, MA 02111-1307, USA. */ #undef SUBTARGET_LINK_SPEC #ifdef OBSD_NO_DYNAMIC_LIBRARIES #define SUBTARGET_LINK_SPEC \ - "%{g:%{!nostdlib:-L/usr/lib/debug}} %{!nostdlib:%{!r*:%{!e*:-e start}}} -dc -dp %{assert*}" + "%{g:%{!nostdlib:-L/usr/lib/debug}} %{!nostdlib:%{!r*:%{!e*:-e __start}}} -dc -dp %{assert*}" #else #define SUBTARGET_LINK_SPEC \ - "%{g:%{!nostdlib:-L/usr/lib/debug}} %{!shared:%{!nostdlib:%{!r*:%{!e*:-e start}}}} %{shared:-Bshareable -x} -dc -dp %{R*} %{static:-Bstatic} %{assert*}" + "%{g:%{!nostdlib:-L/usr/lib/debug}} %{!shared:%{!nostdlib:%{!r*:%{!e*:-e __start}}}} %{shared:-Bshareable -x} -dc -dp %{R*} %{static:-Bstatic} %{assert*}" #endif |