Mercurial > emacs
comparison etc/PROBLEMS @ 97142:c3512b2085a0
* bitmaps/README:
* xfns.c:
* termcap.c:
* term.c:
* syswait.h:
* systty.h:
* systime.h:
* syssignal.h:
* sysdep.c:
* process.h:
* process.c:
* print.c:
* ndir.h:
* lread.c:
* keyboard.c:
* getpagesize.h:
* floatfns.c:
* fileio.c:
* emacs.c:
* doc.c:
* dispnew.c:
* dired.c:
* data.c:
* callproc.c:
* buffer.c:
* README:
* Makefile.in:
* s/template.h:
* s/msdos.h:
* m/vax.h: Remove VMS support.
* s/vms.h:
* vlimit.h:
* uaf.h:
* temacs.opt:
* param.h:
* ioctl.h: Remove file.
* descrip.mms:
* compile.com: Remove file.
* Create.c: Remove VMS support.
* message.el (Module):
* gnus-start.el (Module):
* gnus-registry.el (Module):
* textmodes/texinfmt.el:
* nxml/nxml-enc.el:
* mail/feedmail.el:
* international/mule.el:
* international/latexenc.el:
* emulation/viper-util.el:
* emulation/viper-init.el:
* emulation/viper-ex.el:
* emacs-lisp/bytecomp.el:
* version.el:
* subr.el:
* startup.el:
* sort.el:
* shadowfile.el:
* recentf.el:
* printing.el:
* paths.el:
* minibuffer.el:
* ls-lisp.el:
* loadup.el:
* hippie-exp.el:
* finder.el:
* files.el:
* ediff-util.el:
* ediff-ptch.el:
* ediff-init.el:
* ediff-diff.el:
* dired.el:
* dired-aux.el:
* cus-edit.el:
* bindings.el:
* arc-mode.el:
* add-log.el: Remove VMS support.
* obsolete/vmsproc.el:
* obsolete/vms-pmail.el:
* obsolete/vms-patch.el: Remove file.
* etags.c:
* emacsclient.c: Remove VMS support.
* termcap.src: Remove file.
* README:
* PROBLEMS:
* MACHINES: Remove VMS info.
* ediff.texi: Remove VMS support.
* os.texi:
* intro.texi:
* files.texi: Remove VMS support.
* emacs.texi: Remove VMS support.
* make-dist:
* README: Remove VMS support.
* vms: Remove directory.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Thu, 31 Jul 2008 05:33:56 +0000 |
parents | 9592c50233ab |
children | f13d2ef47961 |
comparison
equal
deleted
inserted
replaced
97141:840bd675fd85 | 97142:c3512b2085a0 |
---|---|
2670 setarch i386 -R make bootstrap | 2670 setarch i386 -R make bootstrap |
2671 | 2671 |
2672 *** Fatal signal in the command temacs -l loadup inc dump. | 2672 *** Fatal signal in the command temacs -l loadup inc dump. |
2673 | 2673 |
2674 This command is the final stage of building Emacs. It is run by the | 2674 This command is the final stage of building Emacs. It is run by the |
2675 Makefile in the src subdirectory, or by build.com on VMS. | 2675 Makefile in the src subdirectory. |
2676 | 2676 |
2677 It has been known to get fatal errors due to insufficient swapping | 2677 It has been known to get fatal errors due to insufficient swapping |
2678 space available on the machine. | 2678 space available on the machine. |
2679 | 2679 |
2680 On 68000s, it has also happened because of bugs in the | 2680 On 68000s, it has also happened because of bugs in the |
3641 | 3641 |
3642 ** HPUX 10.20: Emacs crashes during dumping on the HPPA machine. | 3642 ** HPUX 10.20: Emacs crashes during dumping on the HPPA machine. |
3643 | 3643 |
3644 This seems to be due to a GCC bug; it is fixed in GCC 2.8.1. | 3644 This seems to be due to a GCC bug; it is fixed in GCC 2.8.1. |
3645 | 3645 |
3646 ** VMS: Compilation errors on VMS. | |
3647 | |
3648 You will get warnings when compiling on VMS because there are | |
3649 variable names longer than 32 (or whatever it is) characters. | |
3650 This is not an error. Ignore it. | |
3651 | |
3652 VAX C does not support #if defined(foo). Uses of this construct | |
3653 were removed, but some may have crept back in. They must be rewritten. | |
3654 | |
3655 There is a bug in the C compiler which fails to sign extend characters | |
3656 in conditional expressions. The bug is: | |
3657 char c = -1, d = 1; | |
3658 int i; | |
3659 | |
3660 i = d ? c : d; | |
3661 The result is i == 255; the fix is to typecast the char in the | |
3662 conditional expression as an (int). Known occurrences of such | |
3663 constructs in Emacs have been fixed. | |
3664 | |
3665 ** Vax C compiler bugs affecting Emacs. | 3646 ** Vax C compiler bugs affecting Emacs. |
3666 | 3647 |
3667 You may get one of these problems compiling Emacs: | 3648 You may get one of these problems compiling Emacs: |
3668 | 3649 |
3669 foo.c line nnn: compiler error: no table entry for op STASG | 3650 foo.c line nnn: compiler error: no table entry for op STASG |