Re: m68k does not imply m68020-60
Wan-Teh Chang <[email protected]> Thu, 26 Nov 2015 08:39:27 -0800
| Newsgroups | gmane.comp.mozilla.devel.nspr |
|---|---|
| Message-ID | <CALTJjxG2i9MxA_FrpZXJ2UmTi-fku1mdm2fzsZSyxtZX+ox-2w@mail.gmail.com> |
On Thu, Nov 26, 2015 at 6:55 AM, Andrew Cagney <[email protected]> wrote: > Having the compiler generate m68020-60 instructions made running on my > coldfire very difficult :-( I think it is better to just honour the > compiler. Hi Andrew, Thank you for the post. I did a search for "m68k" in the NSPR source tree. I believe you are referring to this m68k case in the configure.in script: 1859 m68k) 1860 CFLAGS="$CFLAGS -m68020-60" 1861 CXXFLAGS="$CXXFLAGS -m68020-60" 1862 ;; The revision history shows this was added in 1999 and 2002: https://hg.mozilla.org/projects/nspr/rev/29227fdc9a15 https://hg.mozilla.org/projects/nspr/rev/879b717836d9 I think we should just delete the m68k case from the configure.in script. Agreed? Wan-Teh