Skip to content
Snippets Groups Projects
Commit 3296dd17 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Turned off the following warnings from ld on Irix:

84:	*.so is not used for resolving any symbol.
85:	definition of * in *.so preempts that definition in *.so.
134:	weak definition of * in *.so preempts that weak definition in *.so.

Rev: src/configure.in:1.228
parent 770de3f3
No related branches found
No related tags found
No related merge requests found
AC_REVISION("$Id: configure.in,v 1.227 1998/08/07 00:17:40 grubba Exp $") AC_REVISION("$Id: configure.in,v 1.228 1998/08/09 12:46:03 grubba Exp $")
AC_INIT(interpret.c) AC_INIT(interpret.c)
AC_CONFIG_HEADER(machine.h) AC_CONFIG_HEADER(machine.h)
...@@ -2448,9 +2448,9 @@ then ...@@ -2448,9 +2448,9 @@ then
IRIX*) IRIX*)
if test "$GCC" = yes ; then if test "$GCC" = yes ; then
# egcs defaults to building -n32 objects # egcs defaults to building -n32 objects
LDSHARED="ld -shared -n32" LDSHARED="ld -shared -n32 -woff 84,85,134"
else else
LDSHARED="ld -shared" LDSHARED="ld -shared -woff 84,85,134"
fi fi
;; ;;
SunOS*) LDSHARED="ld";; SunOS*) LDSHARED="ld";;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment