Mercurial > emacs
annotate src/m/amdx86-64.h @ 104860:216634f325ab
Don't mention maintainer-clean, since `make bootstrap' does this now.
(With the exception that it does not remove Makefile from lisp/ or src/).
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 05 Sep 2009 18:53:34 +0000 |
parents | e038c1a8307c |
children | ce25ad6994a1 |
rev | line source |
---|---|
45667 | 1 /* machine description file for AMD x86-64. |
100951 | 2 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 |
79755 | 3 Free Software Foundation, Inc. |
45667 | 4 |
5 This file is part of GNU Emacs. | |
6 | |
94714
7e5b32f86a4c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87809
diff
changeset
|
7 GNU Emacs is free software: you can redistribute it and/or modify |
45667 | 8 it under the terms of the GNU General Public License as published by |
94714
7e5b32f86a4c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87809
diff
changeset
|
9 the Free Software Foundation, either version 3 of the License, or |
7e5b32f86a4c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87809
diff
changeset
|
10 (at your option) any later version. |
45667 | 11 |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
94714
7e5b32f86a4c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87809
diff
changeset
|
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
45667 | 19 |
82846
6aa3ccf8fedc
Redirect to intel386.h if compiling for i386.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78499
diff
changeset
|
20 #ifdef i386 |
6aa3ccf8fedc
Redirect to intel386.h if compiling for i386.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78499
diff
changeset
|
21 /* Although we're running on an amd64 kernel, we're actually compiling for |
6aa3ccf8fedc
Redirect to intel386.h if compiling for i386.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78499
diff
changeset
|
22 the x86 architecture. The user should probably have provided an |
6aa3ccf8fedc
Redirect to intel386.h if compiling for i386.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78499
diff
changeset
|
23 explicit --build to `configure', but if everything else than the kernel |
6aa3ccf8fedc
Redirect to intel386.h if compiling for i386.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78499
diff
changeset
|
24 is running in i386 mode, then the bug is really ours: we should have |
6aa3ccf8fedc
Redirect to intel386.h if compiling for i386.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78499
diff
changeset
|
25 guessed better. */ |
6aa3ccf8fedc
Redirect to intel386.h if compiling for i386.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78499
diff
changeset
|
26 #include "m/intel386.h" |
6aa3ccf8fedc
Redirect to intel386.h if compiling for i386.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78499
diff
changeset
|
27 #else |
45667 | 28 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
45667
diff
changeset
|
29 /* The following line tells the configuration script what sort of |
45667 | 30 operating system this machine is likely to run. |
31 USUAL-OPSYS="linux" */ | |
32 | |
33 #define BITS_PER_LONG 64 | |
34 #define BITS_PER_EMACS_INT 64 | |
35 | |
78499 | 36 /* Define WORDS_BIG_ENDIAN if lowest-numbered byte in a word |
45667 | 37 is the most significant byte. */ |
38 | |
39 #undef WORDS_BIG_ENDIAN | |
40 | |
41 /* Define NO_ARG_ARRAY if you cannot take the address of the first of a | |
42 * group of arguments and treat it as an array of the arguments. */ | |
43 | |
44 #define NO_ARG_ARRAY | |
45 | |
46 /* Now define a symbol for the cpu type, if your compiler | |
47 does not define it automatically: | |
48 Ones defined so far include vax, m68000, ns16000, pyramid, | |
49 orion, tahoe, APOLLO and many others */ | |
50 /* __x86_64 defined automatically. */ | |
51 | |
52 /* Define the type to use. */ | |
53 #define EMACS_INT long | |
54 #define EMACS_UINT unsigned long | |
55 | |
56 /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend | |
57 the 24-bit bit field into an int. In other words, if bit fields | |
58 are always unsigned. | |
59 | |
96602 | 60 This flag only matters if you use USE_LISP_UNION_TYPE. */ |
45667 | 61 |
62 #define EXPLICIT_SIGN_EXTEND | |
63 | |
64 /* Data type of load average, as read out of kmem. */ | |
65 | |
66 #define LOAD_AVE_TYPE long | |
67 | |
68 /* Convert that into an integer that is 100 for a load average of 1.0 */ | |
69 | |
70 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) | |
71 | |
72 /* Define XPNTR to avoid or'ing with DATA_SEG_BITS */ | |
53092
4fb1e95248e2
(XPNTR): Don't redefine.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52999
diff
changeset
|
73 #undef DATA_SEG_BITS |
45667 | 74 |
67808 | 75 #ifdef __FreeBSD__ |
76 | |
77 /* The libraries for binaries native to the build host's architecture are | |
78 installed under /usr/lib in FreeBSD, and the ones that need special paths | |
79 are 32-bit compatibility libraries (installed under /usr/lib32). To build | |
80 a native binary of Emacs on FreeBSD/amd64 we can just point to /usr/lib. */ | |
81 | |
82 #undef START_FILES | |
83 #define START_FILES pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o | |
84 | |
85 /* The duplicate -lgcc is intentional in the definition of LIB_STANDARD. | |
86 The reason is that some functions in libgcc.a call functions from libc.a, | |
87 and some libc.a functions need functions from libgcc.a. Since most | |
88 versions of ld are one-pass linkers, we need to mention -lgcc twice, | |
89 or else we risk getting unresolved externals. */ | |
90 #undef LIB_STANDARD | |
91 #define LIB_STANDARD -lgcc -lc -lgcc /usr/lib/crtn.o | |
92 | |
73537
d2f1d227576d
* m/amdx86-64.h: Add defines for OpenBSD x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
68651
diff
changeset
|
93 #elif defined(__OpenBSD__) |
d2f1d227576d
* m/amdx86-64.h: Add defines for OpenBSD x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
68651
diff
changeset
|
94 |
d2f1d227576d
* m/amdx86-64.h: Add defines for OpenBSD x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
68651
diff
changeset
|
95 #undef START_FILES |
d2f1d227576d
* m/amdx86-64.h: Add defines for OpenBSD x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
68651
diff
changeset
|
96 #define START_FILES pre-crt0.o /usr/lib/crt0.o /usr/lib/crtbegin.o |
d2f1d227576d
* m/amdx86-64.h: Add defines for OpenBSD x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
68651
diff
changeset
|
97 #undef LIB_STANDARD |
d2f1d227576d
* m/amdx86-64.h: Add defines for OpenBSD x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
68651
diff
changeset
|
98 #define LIB_STANDARD -lgcc -lc -lgcc /usr/lib/crtend.o |
d2f1d227576d
* m/amdx86-64.h: Add defines for OpenBSD x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
68651
diff
changeset
|
99 |
74825 | 100 #elif defined(__NetBSD__) |
101 | |
102 /* LIB_STANDARD and START_FILES set correctly in s/netbsd.h */ | |
103 | |
96865
2262534e4e66
Use SOLARIS2 instead of sun.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96724
diff
changeset
|
104 #elif defined(SOLARIS2) |
74490
7bb7864abd11
Add support for Solaris 10 on x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
74210
diff
changeset
|
105 |
7bb7864abd11
Add support for Solaris 10 on x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
74210
diff
changeset
|
106 #undef START_FILES |
7bb7864abd11
Add support for Solaris 10 on x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
74210
diff
changeset
|
107 #undef LIB_STANDARD |
7bb7864abd11
Add support for Solaris 10 on x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
74210
diff
changeset
|
108 |
96865
2262534e4e66
Use SOLARIS2 instead of sun.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96724
diff
changeset
|
109 #else /* !__OpenBSD__ && !__FreeBSD__ && !__NetBSD__ && !SOLARIS2 */ |
67808 | 110 /* The duplicate -lgcc is intentional in the definition of LIB_STANDARD. |
111 The reason is that some functions in libgcc.a call functions from libc.a, | |
112 and some libc.a functions need functions from libgcc.a. Since most | |
113 versions of ld are one-pass linkers, we need to mention -lgcc twice, | |
114 or else we risk getting unresolved externals. */ | |
96985
e58e8418725b
* m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96865
diff
changeset
|
115 #undef START_FILES |
45667 | 116 #undef LIB_STANDARD |
87809
a183f87087f5
(START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
Andreas Schwab <schwab@suse.de>
parents:
87649
diff
changeset
|
117 #ifdef HAVE_LIB64_DIR |
96985
e58e8418725b
* m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96865
diff
changeset
|
118 #define START_FILES pre-crt0.o /usr/lib64/crt1.o /usr/lib64/crti.o |
45667 | 119 #define LIB_STANDARD -lgcc -lc -lgcc /usr/lib64/crtn.o |
74210
8e22ff91ccfa
Look for standard libs in /usr/lib64 only if that directory exists.
Chong Yidong <cyd@stupidchicken.com>
parents:
73537
diff
changeset
|
120 #else |
96985
e58e8418725b
* m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96865
diff
changeset
|
121 #define START_FILES pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o |
74210
8e22ff91ccfa
Look for standard libs in /usr/lib64 only if that directory exists.
Chong Yidong <cyd@stupidchicken.com>
parents:
73537
diff
changeset
|
122 #define LIB_STANDARD -lgcc -lc -lgcc /usr/lib/crtn.o |
8e22ff91ccfa
Look for standard libs in /usr/lib64 only if that directory exists.
Chong Yidong <cyd@stupidchicken.com>
parents:
73537
diff
changeset
|
123 #endif |
52401 | 124 |
67808 | 125 #endif /* __FreeBSD__ */ |
82846
6aa3ccf8fedc
Redirect to intel386.h if compiling for i386.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78499
diff
changeset
|
126 #endif /* !i386 */ |
67808 | 127 |
52401 | 128 /* arch-tag: 8a5e001d-e12e-4692-a3a6-0b15ba271c6e |
129 (do not change this comment) */ |