MACHINES 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. Emacs machines list
  2. Copyright (C) 1989-1990, 1992-1993, 1998, 2001-2012
  3. Free Software Foundation, Inc.
  4. See the end of the file for license conditions.
  5. This is a list of the status of GNU Emacs on various machines and systems.
  6. Information about older releases, and platforms that are no longer
  7. supported, has been removed. Consult older versions of this file if
  8. you are interested in this information.
  9. The `configure' script uses the configuration name to decide which
  10. machine and operating system description files `src/config.h' should
  11. include. The machine description files are all in `src/m', and have
  12. names similar to, but not identical to, the machine names used in
  13. configuration names. The operating system files are all in `src/s',
  14. and are named similarly. See the `configure' script if you need to
  15. know which configuration names use which machine and operating system
  16. description files.
  17. If you add support for a new configuration, add a section to this
  18. file, and then edit the `configure' script to tell it which
  19. configuration name(s) should select your new machine description and
  20. system description files.
  21. Some obsolete platforms are unsupported beginning with Emacs 23.1. See
  22. the list at the end of this file.
  23. * Here are notes about some of the systems supported:
  24. ** GNU/Linux
  25. Most of the complete systems which use the Linux kernel are close
  26. enough to the GNU system to be considered variant GNU systems. We
  27. call them "Linux-based GNU systems," or GNU/Linux for short.
  28. It is not coincidence that many of the other components used with
  29. Linux--including GNU Emacs--were developed specifically for the GNU
  30. project. The GNU project was launched in 1984 to develop a free
  31. complete Unix-like operating system. To reach this goal, we had to
  32. develop whatever system components were not available as freely
  33. redistributable software from some other source.
  34. The GNU project wants users of GNU/Linux systems to be aware of how
  35. these systems relate to the GNU project, because that will help
  36. spread the GNU idea that software should be free--and thus encourage
  37. people to write more free software. See the file LINUX-GNU in this
  38. directory for more explanation.
  39. *** 64-bit GNU/Linux
  40. No special procedures should be needed to build a 64-bit Emacs on a
  41. 64-bit GNU/Linux system. To build a 32-bit Emacs, first ensure that
  42. the necessary 32-bit system libraries and include files are
  43. installed. Then use:
  44. ./configure CC='gcc -m32' --build=i386-linux-gnu \
  45. --x-libraries=/usr/X11R6/lib
  46. (using the location of the 32-bit X libraries on your system).
  47. *** IBM System/390 running GNU/Linux (s390-*-linux-gnu)
  48. As of Emacs 21.2, a 31-bit only version is supported on this system.
  49. *** SuperH (sh[34]*-*-linux-gnu)
  50. Emacs 23.0.60 was reported to work on GNU/Linux (October 2008).
  51. This was tested on a little-endian sh4 system (cpu type SH7751R) running
  52. Gentoo Linux 2008.0.
  53. ** Mac OS X
  54. For installation instructions see the file nextstep/INSTALL.
  55. ** Microsoft Windows
  56. For installation instructions see the file nt/INSTALL.
  57. ** MS-DOS
  58. For installation instructions see the file msdos/INSTALL.
  59. See the "MS-DOS" chapter of the manual for information about using
  60. Emacs on MS-DOS.
  61. ** Solaris
  62. On Solaris it is also possible to use either GCC or Solaris Studio
  63. to build Emacs, by pointing ./configure to the right compiler:
  64. ./configure CC='/usr/sfw/bin/gcc' # GCC
  65. ./configure CC='cc' # Solaris Studio
  66. On Solaris, do not use /usr/ucb/cc. Use /opt/SUNWspro/bin/cc. Make
  67. sure that /usr/ccs/bin and /opt/SUNWspro/bin are in your PATH before
  68. /usr/ucb. (Most free software packages have the same requirement on
  69. Solaris.) With this compiler, use `/opt/SUNWspro/bin/cc -E' as the
  70. preprocessor. If this inserts extra whitespace into its output (see
  71. the PROBLEMS file) then add the option `-Xs'.
  72. To build a 64-bit Emacs (with larger maximum buffer size) on a
  73. Solaris system which supports 64-bit executables, specify the -m64
  74. compiler option. For example:
  75. ./configure CC='/usr/sfw/bin/gcc -m64' # GCC
  76. ./configure CC='cc -m64' # Solaris Studio
  77. * Obsolete platforms
  78. Support for the following obsolete platforms was removed in Emacs 23.1
  79. (the names in parentheses state the files in src/ that were removed):
  80. Apollo SR10.x (unexapollo.c)
  81. Convex (unexconvex.c and m/convex.c)
  82. Xenix (unexenix.c and s/xenix.h)
  83. Iris (unexmips.c m/iris4d.h m/irist.h s/iris3-5.h s/iris3-6.h)
  84. Gould (m/gould*)
  85. Siemens machines running Sinix (unexsni.c)
  86. Harris CXUX (s/cxux*)
  87. ESIX, a variant of v.5.3 for the 386 (s/esix*)
  88. Interactive (ISC) Unix (s/isc*)
  89. Sony News (s/newsos*)
  90. RTU 3.0, ucb universe (s/rtu.h)
  91. UniSoft's UniPlus 5.2 (s/uniplus.h)
  92. UMAX (s/umax.h)
  93. AT&T UNIX PC model 7300 (m/7300.h)
  94. Acorn
  95. Alliant (m/alliant*)
  96. Amdahl (m/amdahl*)
  97. Altos 3068 Unix System V Release 2 (m/altos.h)
  98. Apollo (m/apollo.h)
  99. AT&T 3b (m/att3b.h)
  100. Aviion (m/aviion*)
  101. Berkeley 4.1 (m/bsd4.1.h)
  102. Berkeley 4.2 (m/bsd4.2.h)
  103. Berkeley 4.3 (m/bsd4.3.h)
  104. Celerity (m/celerity.h)
  105. clipper (m/clipper.h)
  106. convergent S series (m/cnvrgnt.h)
  107. cydra (m/cydra5.h)
  108. Motorola System V/88 machines (m/delta88k.h)
  109. Bull DPX/2 range (m/dpx2.h)
  110. Dual machines using unisoft port (m/dual.h)
  111. Elxsi machine (running enix) (m/elxsi.h)
  112. Fujitsu F301 machine (m/f301.h)
  113. i860 (m/i860.h)
  114. ibm ps/2 aix386 (m/ibmps2-aix.h)
  115. ISI 68000's (m/is*)
  116. Masscomp 5000 series running RTU, ucb universe (m/masscomp.h)
  117. Megatest 68000's (m/mega68.h)
  118. Whitechapel Computer Works MG1 (ns16000 based) (m/mg1.h)
  119. Harris Night Hawk Series 1200 and Series 3000 (m/nh3000.h m/nh4000.h)
  120. ns16000 (m/ns16000.h)
  121. National Semiconductor 32000, running Genix (m/ns32000.h)
  122. TI Nu machines using system V (m/nu.h)
  123. HLH Orion (m/orion.h m/orion105.h)
  124. Paragon i860 (m/paragon.h)
  125. PFU A-series (m/pfa50.h)
  126. Plexus running System V.2 (m/plexus.h)
  127. pyramid. (m/pyramid.h)
  128. Bull SPS-7 (m/sps7.h)
  129. Hitachi SR2001/SR2201 (m/sr2k.h)
  130. Stride (m/stride.h)
  131. Sun 1 (m/sun1.h)
  132. Sun 2 (m/sun2.h)
  133. SEQUENT SYMMETRY (m/symmetry.h)
  134. Tadpole 68k machines (m/tad68k.h)
  135. tahoe (m/tahoe.h)
  136. targon31 (m/targon31.h)
  137. Tektronix* (m/tek4300.h m/tekxd88.h)
  138. NCR Tower 32 running System V.2 (m/tower32.h)
  139. NCR Tower 32 running System V.3 (m/tower32v3.h)
  140. U-station (Nihon Unisys, SS5E; Sumitomo Denkoh, U-Station E30) (m/ustation.h)
  141. Wicat (m/wicat.h)
  142. Honeywell XPS100 running UNIX System V.2 (m/xps100.h)
  143. Data General's DG/UX (s/dgux*)
  144. Irix before version 6
  145. osf1 (s/osf*)
  146. SunOS4 (s/sunos*)
  147. RISCiX (s/riscix*)
  148. SCO 3.2v4 (s/sco4.h)
  149. SCO 3.2v5 (s/sco5.h)
  150. Sun's 386-based RoadRunner (m/sun386.h)
  151. Sun3 machines (m/sun3*)
  152. Integrated Solutions 386 machine (m/is386.h)
  153. Integrated Solutions `Optimum V' -- m68k-isi-bsd4.2 or -bsd4.3
  154. Harris Power PC (powerpc-harris-powerunix)
  155. Hewlett-Packard 9000 series 200 or 300 on some platforms -- m68k-hp-bsd or
  156. m68k-hp-hpux; note m68k-*-netbsd* still works
  157. IBM PS/2 -- i386-ibm-aix1.1 or i386-ibm-aix1.2
  158. GEC 63 -- local-gec63-usg5.2
  159. Tandem Integrity S2 -- mips-tandem-sysv
  160. System V rel 0 -- usg5.0
  161. System V rel 2 -- usg5.2
  162. System V rel 2.2 -- usg5.2.2
  163. System V rel 3 -- usg5.3
  164. Ultrix -- bsd4.3
  165. VMS (s/vms.h)
  166. Local variables:
  167. mode: outline
  168. fill-prefix: " "
  169. End:
  170. This file is part of GNU Emacs.
  171. GNU Emacs is free software: you can redistribute it and/or modify
  172. it under the terms of the GNU General Public License as published by
  173. the Free Software Foundation, either version 3 of the License, or
  174. (at your option) any later version.
  175. GNU Emacs is distributed in the hope that it will be useful,
  176. but WITHOUT ANY WARRANTY; without even the implied warranty of
  177. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  178. GNU General Public License for more details.
  179. You should have received a copy of the GNU General Public License
  180. along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.