[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Emacs crashes unless using -nw option
From: |
Richard Stallman |
Subject: |
Re: Emacs crashes unless using -nw option |
Date: |
Sat, 09 Oct 2004 11:44:29 -0400 |
The configure script is what figures out whether to use -z nocombreloc.
Can you debug why it made the wrong decision on your system?
If you figure that out, maybe we can fix it.
The code in configure that does this test starts with these lines:
late_LDFLAGS=$LDFLAGS
if test "$GCC" = yes; then
LDFLAGS="$LDFLAGS -Wl,-znocombreloc"
else
LDFLAGS="$LDFLAGS -znocombreloc"
fi