[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Emacs crashes unless using -nw option
From: |
Brian Parent |
Subject: |
Re: Emacs crashes unless using -nw option |
Date: |
Wed, 13 Oct 2004 09:31:10 -0700 |
User-agent: |
Mutt/1.4.2.1i |
Hmm, the copy of configure I have (emacs-21.3) has no
reference to "nocombreloc". Nor does that string appear
in any file in the top level (same level where configure lives)
directory.
The closest code segment I could find is:
1954 echo "$ac_t""$ac_cv_prog_cc_g" 1>&6
1955 if test "$ac_test_CFLAGS" = set; then
1956 CFLAGS="$ac_save_CFLAGS"
1957 elif test $ac_cv_prog_cc_g = yes; then
1958 if test "$GCC" = yes; then
1959 CFLAGS="-g -O2"
1960 else
1961 CFLAGS="-g"
1962 fi
1963 else
1964 if test "$GCC" = yes; then
1965 CFLAGS="-O2"
1966 else
1967 CFLAGS=
1968 fi
1969 fi
[ratbert] [9:11]# ls -l configure
-rwxr-xr-x 1 bparent staff 273939 Mar 18 2003 configure*
[ratbert] [9:11]# md5sum configure
0195afcdc1bda43d3f6f311d6691f898 configure
I picked up my copy of the emacs-21.3.tar.gz file from
http://ftp.gnu.org/pub/gnu/emacs/
on October 1st.
[ratbert] [9:13]# md5sum emacs-21.3.tar.gz
a0bab457cbf5b4f8eb99d1d0a3ada420 emacs-21.3.tar.gz
Re:
> From: Richard Stallman <rms@gnu.org>
> To: Brian Parent <bparent@ratbert.ucsd.edu>
> Cc: bug-gnu-emacs@gnu.org
> 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