Mercurial > emacs
annotate src/m/amdx86-64.h @ 76827:aa7f7988d3bb
Mention the VCVARS32.BAT batch file for VS.NET users.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 31 Mar 2007 10:40:19 +0000 |
parents | 3d45362f1d38 |
children | 6aba169c4b1f 95d0cdf160ea |
rev | line source |
---|---|
45667 | 1 /* machine description file for AMD x86-64. |
75348 | 2 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. |
45667 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
8 the Free Software Foundation; either version 2, or (at your option) | |
9 any later version. | |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
64083 | 18 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
19 Boston, MA 02110-1301, USA. */ | |
45667 | 20 |
21 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
45667
diff
changeset
|
22 /* The following line tells the configuration script what sort of |
45667 | 23 operating system this machine is likely to run. |
24 USUAL-OPSYS="linux" */ | |
25 | |
26 #define BITS_PER_LONG 64 | |
27 #define BITS_PER_EMACS_INT 64 | |
28 | |
29 /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word | |
30 is the most significant byte. */ | |
31 | |
32 #undef WORDS_BIG_ENDIAN | |
33 | |
34 /* Define NO_ARG_ARRAY if you cannot take the address of the first of a | |
35 * group of arguments and treat it as an array of the arguments. */ | |
36 | |
37 #define NO_ARG_ARRAY | |
38 | |
39 /* Define WORD_MACHINE if addresses and such have | |
40 * to be corrected before they can be used as byte counts. */ | |
41 | |
42 /* #define WORD_MACHINE */ | |
43 | |
44 /* Now define a symbol for the cpu type, if your compiler | |
45 does not define it automatically: | |
46 Ones defined so far include vax, m68000, ns16000, pyramid, | |
47 orion, tahoe, APOLLO and many others */ | |
48 /* __x86_64 defined automatically. */ | |
49 | |
50 /* Use type int rather than a union, to represent Lisp_Object */ | |
51 /* This is desirable for most machines. */ | |
52 | |
53 #define NO_UNION_TYPE | |
54 | |
55 /* Define the type to use. */ | |
56 #define EMACS_INT long | |
57 #define EMACS_UINT unsigned long | |
58 #define SPECIAL_EMACS_INT | |
59 | |
60 /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend | |
61 the 24-bit bit field into an int. In other words, if bit fields | |
62 are always unsigned. | |
63 | |
64 If you use NO_UNION_TYPE, this flag does not matter. */ | |
65 | |
66 #define EXPLICIT_SIGN_EXTEND | |
67 | |
68 /* Data type of load average, as read out of kmem. */ | |
69 | |
70 #define LOAD_AVE_TYPE long | |
71 | |
72 /* Convert that into an integer that is 100 for a load average of 1.0 */ | |
73 | |
74 #define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE) | |
75 | |
76 /* Define CANNOT_DUMP on machines where unexec does not work. | |
77 Then the function dump-emacs will not be defined | |
78 and temacs will do (load "loadup") automatically unless told otherwise. */ | |
79 | |
80 /* #define CANNOT_DUMP */ | |
81 | |
82 /* Define VIRT_ADDR_VARIES if the virtual addresses of | |
83 pure and impure space as loaded can vary, and even their | |
84 relative order cannot be relied on. | |
85 | |
86 Otherwise Emacs assumes that text space precedes data space, | |
87 numerically. */ | |
88 | |
89 /* #define VIRT_ADDR_VARIES */ | |
90 | |
91 /* Define NO_REMAP if memory segmentation makes it not work well | |
92 to change the boundary between the text section and data section | |
93 when Emacs is dumped. If you define this, the preloaded Lisp | |
94 code will not be sharable; but that's better than failing completely. */ | |
95 | |
96 /* #define NO_REMAP */ | |
97 | |
98 #define PNTR_COMPARISON_TYPE unsigned long | |
99 | |
100 /* 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
|
101 #undef DATA_SEG_BITS |
45667 | 102 |
67808 | 103 #ifdef __FreeBSD__ |
104 | |
105 /* The libraries for binaries native to the build host's architecture are | |
106 installed under /usr/lib in FreeBSD, and the ones that need special paths | |
107 are 32-bit compatibility libraries (installed under /usr/lib32). To build | |
108 a native binary of Emacs on FreeBSD/amd64 we can just point to /usr/lib. */ | |
109 | |
110 #undef START_FILES | |
111 #define START_FILES pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o | |
112 | |
113 /* The duplicate -lgcc is intentional in the definition of LIB_STANDARD. | |
114 The reason is that some functions in libgcc.a call functions from libc.a, | |
115 and some libc.a functions need functions from libgcc.a. Since most | |
116 versions of ld are one-pass linkers, we need to mention -lgcc twice, | |
117 or else we risk getting unresolved externals. */ | |
118 #undef LIB_STANDARD | |
119 #define LIB_STANDARD -lgcc -lc -lgcc /usr/lib/crtn.o | |
120 | |
73537
d2f1d227576d
* m/amdx86-64.h: Add defines for OpenBSD x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
68651
diff
changeset
|
121 #elif defined(__OpenBSD__) |
d2f1d227576d
* m/amdx86-64.h: Add defines for OpenBSD x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
68651
diff
changeset
|
122 |
d2f1d227576d
* m/amdx86-64.h: Add defines for OpenBSD x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
68651
diff
changeset
|
123 #undef START_FILES |
d2f1d227576d
* m/amdx86-64.h: Add defines for OpenBSD x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
68651
diff
changeset
|
124 #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
|
125 #undef LIB_STANDARD |
d2f1d227576d
* m/amdx86-64.h: Add defines for OpenBSD x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
68651
diff
changeset
|
126 #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
|
127 |
74825 | 128 #elif defined(__NetBSD__) |
129 | |
130 /* LIB_STANDARD and START_FILES set correctly in s/netbsd.h */ | |
131 | |
74490
7bb7864abd11
Add support for Solaris 10 on x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
74210
diff
changeset
|
132 #elif defined(sun) |
7bb7864abd11
Add support for Solaris 10 on x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
74210
diff
changeset
|
133 |
7bb7864abd11
Add support for Solaris 10 on x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
74210
diff
changeset
|
134 #undef START_FILES |
7bb7864abd11
Add support for Solaris 10 on x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
74210
diff
changeset
|
135 #undef LIB_STANDARD |
7bb7864abd11
Add support for Solaris 10 on x86-64.
Chong Yidong <cyd@stupidchicken.com>
parents:
74210
diff
changeset
|
136 |
74825 | 137 #else /* !__OpenBSD__ && !__FreeBSD__ && !__NetBSD__ && !sun */ |
67808 | 138 |
45667 | 139 #undef START_FILES |
74210
8e22ff91ccfa
Look for standard libs in /usr/lib64 only if that directory exists.
Chong Yidong <cyd@stupidchicken.com>
parents:
73537
diff
changeset
|
140 #ifdef HAVE_X86_64_LIB64_DIR |
45667 | 141 #define START_FILES pre-crt0.o /usr/lib64/crt1.o /usr/lib64/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
|
142 #else |
8e22ff91ccfa
Look for standard libs in /usr/lib64 only if that directory exists.
Chong Yidong <cyd@stupidchicken.com>
parents:
73537
diff
changeset
|
143 #define START_FILES pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o |
8e22ff91ccfa
Look for standard libs in /usr/lib64 only if that directory exists.
Chong Yidong <cyd@stupidchicken.com>
parents:
73537
diff
changeset
|
144 #endif |
45667 | 145 |
67808 | 146 /* The duplicate -lgcc is intentional in the definition of LIB_STANDARD. |
147 The reason is that some functions in libgcc.a call functions from libc.a, | |
148 and some libc.a functions need functions from libgcc.a. Since most | |
149 versions of ld are one-pass linkers, we need to mention -lgcc twice, | |
150 or else we risk getting unresolved externals. */ | |
45667 | 151 #undef LIB_STANDARD |
74210
8e22ff91ccfa
Look for standard libs in /usr/lib64 only if that directory exists.
Chong Yidong <cyd@stupidchicken.com>
parents:
73537
diff
changeset
|
152 #ifdef HAVE_X86_64_LIB64_DIR |
45667 | 153 #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
|
154 #else |
8e22ff91ccfa
Look for standard libs in /usr/lib64 only if that directory exists.
Chong Yidong <cyd@stupidchicken.com>
parents:
73537
diff
changeset
|
155 #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
|
156 #endif |
52401 | 157 |
67808 | 158 #endif /* __FreeBSD__ */ |
159 | |
52401 | 160 /* arch-tag: 8a5e001d-e12e-4692-a3a6-0b15ba271c6e |
161 (do not change this comment) */ |