]>
Commit | Line | Data |
---|---|---|
6a161fa9 | 1 | # Process this file with autoconf to produce a configure script. |
2 | ||
1e901a75 | 3 | # Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009 Free Software Foundation, Inc. |
6a161fa9 | 4 | # |
5 | # This configure.ac is free software; the author | |
6 | # gives unlimited permission to copy and/or distribute it, | |
7 | # with or without modifications, as long as this notice is preserved. | |
8 | # | |
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY, to the extent permitted by law; without | |
11 | # even the implied warranty of MERCHANTABILITY or FITNESS FOR A | |
12 | # PARTICULAR PURPOSE. | |
13 | ||
b977bf01 | 14 | dnl This configure script is complicated, because GRUB needs to deal |
15 | dnl with three potentially different types: | |
16 | dnl | |
17 | dnl build -- the environment for building GRUB | |
18 | dnl host -- the environment for running utilities | |
19 | dnl target -- the environment for running GRUB | |
20 | dnl | |
21 | dnl In addition, GRUB needs to deal with a platform specification | |
22 | dnl which specifies the system running GRUB, such as firmware. | |
23 | dnl This is necessary because the target type in autoconf does not | |
24 | dnl describe such a system very well. | |
25 | dnl | |
26 | dnl The current strategy is to use variables with no prefix (such as | |
27 | dnl CC, CFLAGS, etc.) for the host type as well as the build type, | |
28 | dnl because GRUB does not need to use those variables for the build | |
29 | dnl type, so there is no conflict. Variables with the prefix "TARGET_" | |
30 | dnl (such as TARGET_CC, TARGET_CFLAGS, etc.) are used for the target | |
31 | dnl type. | |
32 | ||
33 | ||
da25306d | 34 | AC_INIT([GRUB],[1.97~beta4],[bug-grub@gnu.org]) |
46e04eb9 | 35 | AC_PREREQ(2.59) |
4b13b216 | 36 | AC_CONFIG_SRCDIR([include/grub/dl.h]) |
6a161fa9 | 37 | AC_CONFIG_HEADER([config.h]) |
38 | ||
b977bf01 | 39 | # Checks for host and target systems. |
6a161fa9 | 40 | AC_CANONICAL_HOST |
b977bf01 | 41 | AC_CANONICAL_TARGET |
6a161fa9 | 42 | |
1d543c3e | 43 | # Program name transformations |
44 | AC_ARG_PROGRAM | |
45 | ||
b977bf01 | 46 | case "$target_cpu" in |
02164e1b | 47 | i[[3456]]86) target_cpu=i386 ;; |
48 | sparc) target_cpu=sparc64 ;; | |
6a161fa9 | 49 | esac |
50 | ||
05568c2e | 51 | # Specify the platform (such as firmware). |
52 | AC_ARG_WITH([platform], | |
53 | AS_HELP_STRING([--with-platform=PLATFORM], | |
83b984de | 54 | [select the host platform [[guessed]]])) |
05568c2e | 55 | |
56 | # Guess the platform if not specified. | |
57 | if test "x$with_platform" = x; then | |
b977bf01 | 58 | case "$target_cpu"-"$target_vendor" in |
05568c2e | 59 | i386-apple) platform=efi ;; |
60 | i386-*) platform=pc ;; | |
58393a2d | 61 | x86_64-apple) platform=efi ;; |
737feb35 | 62 | x86_64-*) platform=pc ;; |
05568c2e | 63 | powerpc-*) platform=ieee1275 ;; |
58393a2d | 64 | powerpc64-*) platform=ieee1275 ;; |
05568c2e | 65 | sparc64-*) platform=ieee1275 ;; |
58393a2d | 66 | *) AC_MSG_ERROR([unsupported CPU: "$target_cpu"]) ;; |
05568c2e | 67 | esac |
68 | else | |
69 | platform="$with_platform" | |
70 | fi | |
71 | ||
58393a2d | 72 | # Adjust CPU unless target was explicitly specified. |
73 | if test -z "$target_alias"; then | |
74 | case "$target_cpu"-"$platform" in | |
75 | x86_64-efi) ;; | |
3f4ce737 | 76 | x86_64-*) target_cpu=i386 ;; |
77 | powerpc64-ieee1275) target_cpu=powerpc ;; | |
20011694 | 78 | esac |
79 | fi | |
80 | ||
58393a2d | 81 | # Check if the platform is supported, make final adjustments. |
b977bf01 | 82 | case "$target_cpu"-"$platform" in |
05568c2e | 83 | i386-efi) ;; |
3f4ce737 | 84 | x86_64-efi) ;; |
05568c2e | 85 | i386-pc) ;; |
546f966a | 86 | i386-coreboot) ;; |
58393a2d | 87 | i386-linuxbios) platform=coreboot ;; |
3d04eab8 | 88 | i386-ieee1275) ;; |
8231fb77 | 89 | i386-qemu) ;; |
05568c2e | 90 | powerpc-ieee1275) ;; |
91 | sparc64-ieee1275) ;; | |
58393a2d | 92 | *) AC_MSG_ERROR([platform "$platform" is not supported for target CPU "$target_cpu"]) ;; |
6a161fa9 | 93 | esac |
94 | ||
3f4ce737 | 95 | case "$target_cpu" in |
96 | i386 | powerpc) target_m32=1 ;; | |
97 | x86_64 | sparc64) target_m64=1 ;; | |
98 | esac | |
99 | ||
6e5a42fe | 100 | case "$host_os" in |
101 | mingw32) host_os=cygwin ;; | |
102 | esac | |
103 | ||
9304eef1 | 104 | # This normalizes the names, and creates a new variable ("host_kernel") |
105 | # while at it, since the mapping is not always 1:1 (e.g. different OSes | |
106 | # using the same kernel type). | |
107 | case "$host_os" in | |
108 | gnu*) host_kernel=hurd ;; | |
109 | linux*) host_kernel=linux ;; | |
110 | freebsd* | kfreebsd*-gnu) host_kernel=freebsd ;; | |
111 | cygwin) host_kernel=windows ;; | |
112 | esac | |
113 | ||
56978920 | 114 | AC_SUBST(host_cpu) |
115 | AC_SUBST(host_os) | |
9304eef1 | 116 | AC_SUBST(host_kernel) |
6e5a42fe | 117 | |
b977bf01 | 118 | AC_SUBST(target_cpu) |
05568c2e | 119 | AC_SUBST(platform) |
6a161fa9 | 120 | |
b977bf01 | 121 | # |
122 | # Checks for build programs. | |
123 | # | |
144f1f98 | 124 | |
6c826348 | 125 | # Although cmp is listed in the GNU Coding Standards as a command which |
126 | # can used directly, OpenBSD lacks cmp in the default installation. | |
127 | AC_CHECK_PROGS([CMP], [cmp]) | |
128 | if test "x$CMP" = x; then | |
129 | AC_MSG_ERROR([cmp is not found]) | |
130 | fi | |
131 | ||
144f1f98 | 132 | AC_CHECK_PROGS([YACC], [bison]) |
1569ec51 | 133 | if test "x$YACC" = x; then |
6c826348 | 134 | AC_MSG_ERROR([bison is not found]) |
1569ec51 | 135 | fi |
136 | ||
1e901a75 | 137 | for file in /usr/src/unifont.bdf ; do |
4931827f | 138 | if test -e $file ; then |
1e901a75 | 139 | AC_SUBST([UNIFONT_BDF], [$file]) |
4931827f | 140 | break |
141 | fi | |
142 | done | |
143 | ||
b977bf01 | 144 | AC_PROG_INSTALL |
145 | AC_PROG_AWK | |
146 | AC_PROG_MAKE_SET | |
ff420223 | 147 | AC_PROG_MKDIR_P |
b977bf01 | 148 | |
68807e5f | 149 | # These are not a "must". |
b977bf01 | 150 | AC_PATH_PROG(RUBY, ruby) |
c44c90db | 151 | AC_PATH_PROG(MAKEINFO, makeinfo) |
6a161fa9 | 152 | |
b977bf01 | 153 | # |
154 | # Checks for host programs. | |
155 | # | |
156 | ||
157 | AC_PROG_CC | |
6a161fa9 | 158 | # Must be GCC. |
159 | test "x$GCC" = xyes || AC_MSG_ERROR([GCC is required]) | |
160 | ||
4889bdec | 161 | AC_GNU_SOURCE |
b977bf01 | 162 | AC_SYS_LARGEFILE |
163 | ||
164 | # Identify characteristics of the host architecture. | |
165 | AC_C_BIGENDIAN | |
166 | AC_CHECK_SIZEOF(void *) | |
167 | AC_CHECK_SIZEOF(long) | |
168 | ||
2b167a72 | 169 | grub_apple_cc |
c9da87d0 | 170 | if test x$grub_cv_apple_cc = xyes ; then |
2b167a72 | 171 | CFLAGS="$CFLAGS -DAPPLE_CC=1 -fnested-functions" |
172 | ASFLAGS="$ASFLAGS -DAPPLE_CC=1" | |
173 | fi | |
b977bf01 | 174 | |
86695375 | 175 | if test "x$cross_compiling" = xyes; then |
176 | AC_MSG_WARN([cannot generate manual pages while cross compiling]) | |
177 | else | |
178 | AC_PATH_PROG(HELP2MAN, help2man) | |
179 | fi | |
180 | ||
4889bdec | 181 | # Check for functions. |
df38d0bb | 182 | AC_CHECK_FUNCS(posix_memalign memalign asprintf) |
4889bdec | 183 | |
b977bf01 | 184 | # |
185 | # Check for target programs. | |
186 | # | |
187 | ||
5b5d4aa5 | 188 | # Find tools for the target. |
189 | if test "x$target_alias" != x && test "x$host_alias" != "x$target_alias"; then | |
b977bf01 | 190 | tmp_ac_tool_prefix="$ac_tool_prefix" |
191 | ac_tool_prefix=$target_alias- | |
192 | ||
193 | AC_CHECK_TOOLS(TARGET_CC, [gcc egcs cc], | |
194 | [AC_MSG_ERROR([none of gcc, egcs and cc is found. set TARGET_CC manually.])]) | |
195 | AC_CHECK_TOOL(OBJCOPY, objcopy) | |
196 | AC_CHECK_TOOL(STRIP, strip) | |
197 | AC_CHECK_TOOL(NM, nm) | |
198 | ||
199 | ac_tool_prefix="$tmp_ac_tool_prefix" | |
200 | else | |
201 | if test "x$TARGET_CC" = x; then | |
202 | TARGET_CC=$CC | |
203 | fi | |
204 | AC_CHECK_TOOL(OBJCOPY, objcopy) | |
205 | AC_CHECK_TOOL(STRIP, strip) | |
206 | AC_CHECK_TOOL(NM, nm) | |
207 | fi | |
208 | AC_SUBST(TARGET_CC) | |
209 | ||
210 | ||
211 | # Test the C compiler for the target environment. | |
212 | tmp_CC="$CC" | |
213 | tmp_CFLAGS="$CFLAGS" | |
214 | tmp_LDFLAGS="$LDFLAGS" | |
215 | tmp_CPPFLAGS="$CPPFLAGS" | |
aa6d7826 | 216 | tmp_LIBS="$LIBS" |
b977bf01 | 217 | CC="$TARGET_CC" |
218 | CFLAGS="$TARGET_CFLAGS" | |
219 | CPPFLAGS="$TARGET_CPPFLAGS" | |
220 | LDFLAGS="$TARGET_LDFLAGS" | |
aa6d7826 | 221 | LIBS="" |
b977bf01 | 222 | |
223 | if test "x$TARGET_CFLAGS" = x; then | |
6a161fa9 | 224 | # debug flags. |
b977bf01 | 225 | TARGET_CFLAGS="-Wall -W -Wshadow -Wpointer-arith -Wmissing-prototypes \ |
226 | -Wundef -Wstrict-prototypes -g" | |
6a161fa9 | 227 | |
228 | # optimization flags. | |
322562ea | 229 | AC_CACHE_CHECK([whether optimization for size works], grub_cv_cc_Os, [ |
6a161fa9 | 230 | CFLAGS=-Os |
eb73121d | 231 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])], |
232 | [grub_cv_cc_Os=yes], | |
233 | [grub_cv_cc_Os=no]) | |
6a161fa9 | 234 | ]) |
322562ea | 235 | if test "x$grub_cv_cc_Os" = xyes; then |
b977bf01 | 236 | TARGET_CFLAGS="$TARGET_CFLAGS -Os" |
6a161fa9 | 237 | else |
b977bf01 | 238 | TARGET_CFLAGS="$TARGET_CFLAGS -O2 -fno-strength-reduce -fno-unroll-loops" |
6a161fa9 | 239 | fi |
240 | ||
241 | # Force no alignment to save space on i386. | |
b977bf01 | 242 | if test "x$target_cpu" = xi386; then |
322562ea | 243 | AC_CACHE_CHECK([whether -falign-loops works], [grub_cv_cc_falign_loop], [ |
2b167a72 | 244 | CFLAGS="$CFLAGS -falign-loops=1" |
eb73121d | 245 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])], |
246 | [grub_cv_cc_falign_loop=yes], | |
247 | [grub_cv_cc_falign_loop=no]) | |
6a161fa9 | 248 | ]) |
249 | ||
322562ea | 250 | if test "x$grub_cv_cc_falign_loop" = xyes; then |
b977bf01 | 251 | TARGET_CFLAGS="$TARGET_CFLAGS -falign-jumps=1 -falign-loops=1 -falign-functions=1" |
6a161fa9 | 252 | else |
b977bf01 | 253 | TARGET_CFLAGS="$TARGET_CFLAGS -malign-jumps=1 -malign-loops=1 -malign-functions=1" |
6a161fa9 | 254 | fi |
255 | fi | |
77c55a87 | 256 | |
257 | # By default, GCC 4.4 generates .eh_frame sections containing unwind | |
258 | # information in some cases where it previously did not. GRUB doesn't need | |
259 | # these and they just use up vital space. Restore the old compiler | |
260 | # behaviour. | |
261 | AC_CACHE_CHECK([whether -fno-dwarf2-cfi-asm works], [grub_cv_cc_fno_dwarf2_cfi_asm], [ | |
262 | SAVE_CFLAGS="$CFLAGS" | |
263 | CFLAGS="$CFLAGS -fno-dwarf2-cfi-asm" | |
264 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])], | |
265 | [grub_cv_cc_fno_dwarf2_cfi_asm=yes], | |
266 | [grub_cv_cc_fno_dwarf2_cfi_asm=no]) | |
267 | CFLAGS="$SAVE_CFLAGS" | |
268 | ]) | |
269 | ||
270 | if test "x$grub_cv_cc_fno_dwarf2_cfi_asm" = xyes; then | |
271 | TARGET_CFLAGS="$TARGET_CFLAGS -fno-dwarf2-cfi-asm" | |
272 | fi | |
b977bf01 | 273 | fi |
6a161fa9 | 274 | |
2b167a72 | 275 | grub_apple_target_cc |
c9da87d0 | 276 | if test x$grub_cv_apple_target_cc = xyes ; then |
2b167a72 | 277 | TARGET_CFLAGS="$TARGET_CFLAGS -DAPPLE_CC=1 -fnested-functions" |
278 | CFLAGS="$CFLAGS -DAPPLE_CC=1 -fnested-functions" | |
279 | TARGET_ASFLAGS="$TARGET_ASFLAGS -DAPPLE_CC=1" | |
280 | TARGET_APPLE_CC=1 | |
cf00df31 | 281 | AC_CHECK_PROG([OBJCONV], [objconv], [objconv], []) |
282 | if test "x$OBJCONV" = x ; then | |
283 | AC_CHECK_PROG([OBJCONV], [objconv], [./objconv], [], [.]) | |
284 | fi | |
285 | if test "x$OBJCONV" = x ; then | |
286 | AC_MSG_ERROR([objconv not found which is required when building with apple compiler]) | |
287 | fi | |
2b167a72 | 288 | TARGET_IMG_LDSCRIPT= |
289 | TARGET_IMG_CFLAGS="-static" | |
290 | TARGET_IMG_LDFLAGS='-nostdlib -static -Wl,-preload -Wl,-segalign,20 -Wl,-image_base,' | |
291 | TARGET_IMG_LDFLAGS_AC='-nostdlib -static -Wl,-preload -Wl,-segalign,20 -Wl,-image_base,' | |
292 | else | |
293 | TARGET_APPLE_CC=0 | |
294 | # Use linker script if present, otherwise use builtin -N script. | |
2b167a72 | 295 | if test -f "${srcdir}/conf/${target_cpu}-${platform}-${host_os}-img-ld.sc"; then |
296 | TARGET_IMG_LDSCRIPT='$(top_srcdir)'"/conf/${target_cpu}-${platform}-${host_os}-img-ld.sc" | |
297 | TARGET_IMG_LDFLAGS="-Wl,-T${TARGET_IMG_LDSCRIPT} -Wl,-Ttext," | |
298 | TARGET_IMG_LDFLAGS_AC="-Wl,-T${srcdir}/conf/${target_cpu}-${platform}-${host_os}-img-ld.sc" | |
299 | else | |
300 | TARGET_IMG_LDSCRIPT= | |
301 | TARGET_IMG_LDFLAGS='-Wl,-N -Wl,-Ttext,' | |
302 | TARGET_IMG_LDFLAGS_AC='-Wl,-N -Wl,-Ttext,' | |
303 | fi | |
304 | TARGET_IMG_CFLAGS= | |
305 | fi | |
306 | ||
307 | AC_SUBST(TARGET_IMG_LDSCRIPT) | |
308 | AC_SUBST(TARGET_IMG_LDFLAGS) | |
309 | AC_SUBST(TARGET_IMG_CFLAGS) | |
2b167a72 | 310 | |
311 | # For platforms where ELF is not the default link format. | |
312 | AC_MSG_CHECKING([for command to convert module to ELF format]) | |
313 | case "${host_os}" in | |
314 | cygwin) TARGET_OBJ2ELF='grub-pe2elf' ;; | |
315 | *) ;; | |
316 | esac | |
317 | AC_SUBST(TARGET_OBJ2ELF) | |
318 | AC_MSG_RESULT([$TARGET_OBJ2ELF]) | |
319 | ||
320 | ||
b977bf01 | 321 | if test "x$target_m32" = x1; then |
322 | # Force 32-bit mode. | |
323 | TARGET_CFLAGS="$TARGET_CFLAGS -m32" | |
324 | TARGET_LDFLAGS="$TARGET_LDFLAGS -m32" | |
2b167a72 | 325 | TARGET_MODULE_FORMAT="elf32" |
6a161fa9 | 326 | fi |
b977bf01 | 327 | |
20011694 | 328 | if test "x$target_m64" = x1; then |
329 | # Force 64-bit mode. | |
7e9ca17a | 330 | TARGET_CFLAGS="$TARGET_CFLAGS -m64" |
331 | TARGET_LDFLAGS="$TARGET_LDFLAGS -m64" | |
2b167a72 | 332 | TARGET_MODULE_FORMAT="elf64" |
7e9ca17a | 333 | fi |
334 | ||
335 | if test "$target_cpu"-"$platform" = x86_64-efi; then | |
336 | # Use large model to support 4G memory | |
6e09b8b7 | 337 | AC_CACHE_CHECK([whether option -mcmodel=large works], grub_cv_cc_mcmodel, [ |
c8600122 | 338 | SAVED_CFLAGS=$CFLAGS |
339 | CFLAGS="$CFLAGS -m64 -mcmodel=large" | |
6e09b8b7 | 340 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])], |
341 | [grub_cv_cc_mcmodel=yes], | |
342 | [grub_cv_cc_mcmodel=no]) | |
343 | ]) | |
c8600122 | 344 | if test "x$grub_cv_cc_mcmodel" = xno; then |
345 | CFLAGS="$SAVED_CFLAGS -m64 -DMCMODEL_SMALL=1" | |
b39f9d20 | 346 | TARGET_CFLAGS="$TARGET_CFLAGS -DMCMODEL_SMALL=1" |
ce7a733d | 347 | AC_MSG_WARN([-mcmodel=large not supported. You won't be able to use the memory over 4GiB. Upgrade your gcc]) |
c8600122 | 348 | else |
349 | TARGET_CFLAGS="$TARGET_CFLAGS -mcmodel=large" | |
6e09b8b7 | 350 | fi |
7e9ca17a | 351 | |
352 | # EFI writes to stack below %rsp, we must not use the red zone | |
353 | AC_CACHE_CHECK([whether option -mno-red-zone works], grub_cv_cc_no_red_zone, [ | |
c8600122 | 354 | CFLAGS="$CFLAGS -m64 -mno-red-zone" |
7e9ca17a | 355 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])], |
356 | [grub_cv_cc_no_red_zone=yes], | |
357 | [grub_cv_cc_no_red_zone=no]) | |
358 | ]) | |
359 | if test "x$grub_cv_cc_no_red_zone" = xno; then | |
360 | AC_MSG_ERROR([-mno-red-zone not supported, upgrade your gcc]) | |
361 | fi | |
362 | ||
c8600122 | 363 | TARGET_CFLAGS="$TARGET_CFLAGS -mno-red-zone" |
20011694 | 364 | fi |
365 | ||
baa2a121 | 366 | # |
367 | # Compiler features. | |
368 | # | |
369 | ||
9035dce4 | 370 | # Need __enable_execute_stack() for nested function trampolines? |
371 | grub_CHECK_ENABLE_EXECUTE_STACK | |
372 | ||
93a81088 | 373 | # Position independent executable. |
374 | grub_CHECK_PIE | |
375 | [# Need that, because some distributions ship compilers that include | |
376 | # `-fPIE' in the default specs. | |
377 | if [ x"$pie_possible" = xyes ]; then | |
378 | TARGET_CFLAGS="$TARGET_CFLAGS -fno-PIE" | |
379 | fi] | |
380 | ||
baa2a121 | 381 | # Smashing stack protector. |
382 | grub_CHECK_STACK_PROTECTOR | |
c3db8364 | 383 | # Need that, because some distributions ship compilers that include |
baa2a121 | 384 | # `-fstack-protector' in the default specs. |
c3db8364 | 385 | if test "x$ssp_possible" = xyes; then |
386 | TARGET_CFLAGS="$TARGET_CFLAGS -fno-stack-protector" | |
387 | fi | |
2a8a80e4 | 388 | grub_CHECK_STACK_ARG_PROBE |
389 | # Cygwin's GCC uses alloca() to probe the stackframe on static | |
390 | # stack allocations above some threshold. | |
391 | if test x"$sap_possible" = xyes; then | |
392 | TARGET_CFLAGS="$TARGET_CFLAGS -mno-stack-arg-probe" | |
393 | fi | |
baa2a121 | 394 | |
63f745e8 | 395 | AC_ARG_ENABLE([werror], |
396 | [AS_HELP_STRING([--disable-werror], | |
397 | [do not use -Werror when building GRUB])]) | |
398 | if test x"$enable_werror" != xno ; then | |
399 | TARGET_CFLAGS="$TARGET_CFLAGS -Werror" | |
400 | fi | |
401 | ||
b977bf01 | 402 | AC_SUBST(TARGET_CFLAGS) |
2b167a72 | 403 | AC_SUBST(TARGET_MODULE_FORMAT) |
cf00df31 | 404 | AC_SUBST(OBJCONV) |
2b167a72 | 405 | AC_SUBST(TARGET_APPLE_CC) |
406 | AC_SUBST(TARGET_ASFLAGS) | |
b977bf01 | 407 | AC_SUBST(TARGET_CPPFLAGS) |
408 | AC_SUBST(TARGET_LDFLAGS) | |
6a161fa9 | 409 | |
aa6d7826 | 410 | # Set them to their new values for the tests below. |
411 | CC="$TARGET_CC" | |
26de2bcd | 412 | if test "x$TARGET_APPLE_CC" = x1 ; then |
413 | CFLAGS="$TARGET_CFLAGS -nostdlib" | |
414 | else | |
7d83bd47 | 415 | CFLAGS="$TARGET_CFLAGS -nostdlib -Wl,--defsym,___main=0x8100" |
26de2bcd | 416 | fi |
aa6d7826 | 417 | CPPFLAGS="$TARGET_CPPFLAGS" |
418 | LDFLAGS="$TARGET_LDFLAGS" | |
419 | ||
6b5886ba | 420 | # Check for target functions. |
421 | AC_CHECK_FUNCS(__bswapsi2 __bswapdi2) | |
422 | ||
6a161fa9 | 423 | # Defined in aclocal.m4. |
f6130a12 | 424 | grub_PROG_TARGET_CC |
2b167a72 | 425 | if test "x$TARGET_APPLE_CC" != x1 ; then |
b977bf01 | 426 | grub_PROG_OBJCOPY_ABSOLUTE |
2b167a72 | 427 | fi |
cb71ba20 | 428 | grub_PROG_LD_BUILD_ID_NONE |
4b13b216 | 429 | grub_ASM_USCORE |
b977bf01 | 430 | if test "x$target_cpu" = xi386; then |
2a8a80e4 | 431 | if test ! -z "$TARGET_IMG_LDSCRIPT"; then |
432 | # Check symbols provided by linker script. | |
433 | CFLAGS="$TARGET_CFLAGS -nostdlib $TARGET_IMG_LDFLAGS_AC -Wl,-Ttext,8000,--defsym,___main=0x8100" | |
434 | fi | |
58750afc | 435 | if test "x$TARGET_APPLE_CC" != x1 ; then |
2a8a80e4 | 436 | grub_CHECK_BSS_START_SYMBOL |
437 | grub_CHECK_END_SYMBOL | |
438 | fi | |
439 | CFLAGS="$TARGET_CFLAGS" | |
4b13b216 | 440 | grub_I386_ASM_PREFIX_REQUIREMENT |
441 | grub_I386_ASM_ADDR32 | |
442 | grub_I386_ASM_ABSOLUTE_WITHOUT_ASTERISK | |
5aded270 | 443 | else |
f4917dfd | 444 | AC_DEFINE([NESTED_FUNC_ATTR], [], [Catch gcc bug]) |
6a161fa9 | 445 | fi |
446 | ||
bf6a5fb2 | 447 | AH_BOTTOM([#if defined(__i386__) && !defined(GRUB_UTIL) |
448 | #define NESTED_FUNC_ATTR __attribute__ ((__regparm__ (1))) | |
449 | #else | |
450 | #define NESTED_FUNC_ATTR | |
451 | #endif]) | |
452 | ||
5ce5507f | 453 | AC_ARG_ENABLE([efiemu], |
454 | [AS_HELP_STRING([--enable-efiemu], | |
455 | [build and install the efiemu runtimes (default=guessed)])]) | |
456 | if test x"$enable_efiemu" = xno ; then | |
ce7a733d | 457 | efiemu_excuse="explicitly disabled" |
5ce5507f | 458 | fi |
459 | if test x"$efiemu_excuse" = x ; then | |
43e6200c | 460 | AC_CACHE_CHECK([whether options required for efiemu work], grub_cv_cc_efiemu, [ |
d2838156 | 461 | CFLAGS="$CFLAGS -m64 -mcmodel=large -mno-red-zone -nostdlib" |
5ce5507f | 462 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])], |
463 | [grub_cv_cc_efiemu=yes], | |
464 | [grub_cv_cc_efiemu=no]) | |
465 | ]) | |
55c70904 | 466 | if test x$grub_cv_cc_efiemu = xno; then |
e98cd0c2 | 467 | efiemu_excuse="cannot compile with -m64 -mcmodel=large -mno-red-zone -nostdlib" |
5ce5507f | 468 | fi |
469 | fi | |
470 | if test x"$enable_efiemu" = xyes && test x"$efiemu_excuse" != x ; then | |
ce7a733d | 471 | AC_MSG_ERROR([efiemu runtime was explicitly requested but can't be compiled]) |
5ce5507f | 472 | fi |
473 | if test x"$efiemu_excuse" = x ; then | |
474 | enable_efiemu=yes | |
475 | else | |
476 | enable_efiemu=no | |
477 | fi | |
478 | AC_SUBST([enable_efiemu]) | |
479 | ||
480 | ||
c9a86192 | 481 | # Restore the flags. |
9962ed99 | 482 | CC="$tmp_CC" |
483 | CFLAGS="$tmp_CFLAGS" | |
484 | CPPFLAGS="$tmp_CPPFLAGS" | |
c9a86192 | 485 | LDFLAGS="$tmp_LDFLAGS" |
aa6d7826 | 486 | LIBS="$tmp_LIBS" |
6a161fa9 | 487 | |
4fe9862e | 488 | # |
2965c7cc | 489 | # Check for options. |
4fe9862e | 490 | # |
491 | ||
492 | # Memory manager debugging. | |
b39f9d20 | 493 | AC_ARG_ENABLE([mm-debug], |
2965c7cc | 494 | AS_HELP_STRING([--enable-mm-debug], |
90ce5d56 | 495 | [include memory manager debugging]), |
2965c7cc | 496 | [AC_DEFINE([MM_DEBUG], [1], |
497 | [Define to 1 if you enable memory manager debugging.])]) | |
498 | ||
4fe9862e | 499 | AC_ARG_ENABLE([grub-emu], |
500 | [AS_HELP_STRING([--enable-grub-emu], | |
5ce5507f | 501 | [build and install the `grub-emu' debugging utility (default=guessed)])]) |
d64399b5 | 502 | AC_ARG_ENABLE([grub-emu-usb], |
503 | [AS_HELP_STRING([--enable-grub-emu-usb], | |
5ce5507f | 504 | [build and install the `grub-emu' debugging utility with USB support (default=guessed)])]) |
505 | if test x"$enable_grub_emu" = xno ; then | |
ce7a733d | 506 | grub_emu_excuse="explicitly disabled" |
5ce5507f | 507 | fi |
508 | ||
509 | [# Check for curses libraries.] | |
510 | [if [ x"$grub_emu_excuse" = x ]; then ] | |
4fe9862e | 511 | AC_CHECK_LIB([ncurses], [wgetch], [LIBCURSES="-lncurses"], |
512 | [AC_CHECK_LIB([curses], [wgetch], [LIBCURSES="-lcurses"], | |
e98cd0c2 | 513 | [grub_emu_excuse=["need (n)curses libraries"]])]) |
4fe9862e | 514 | AC_SUBST([LIBCURSES]) |
5ce5507f | 515 | [fi] |
516 | [if [ x"$grub_emu_excuse" = x ]; then ] | |
4fe9862e | 517 | [# Check for headers.] |
518 | AC_CHECK_HEADERS([ncurses/curses.h], [], | |
519 | [AC_CHECK_HEADERS([ncurses.h], [], | |
520 | [AC_CHECK_HEADERS([curses.h], [], | |
e98cd0c2 | 521 | [grub_emu_excuse=["need (n)curses headers"]])])]) |
5ce5507f | 522 | [fi] |
d64399b5 | 523 | |
5ce5507f | 524 | if test x"$enable_grub_emu" = xyes && test x"$grub_emu_excuse" != x ; then |
ce7a733d | 525 | AC_MSG_ERROR([grub-emu was explicitly requested but can't be compiled]) |
5ce5507f | 526 | fi |
527 | if test x"$grub_emu_excuse" = x ; then | |
528 | enable_grub_emu=yes | |
529 | else | |
530 | enable_grub_emu=no | |
531 | grub_emu_usb_excuse="grub-emu isn't built" | |
532 | fi | |
533 | if test x"$enable_grub_emu_usb" = xno ; then | |
ce7a733d | 534 | grub_emu_usb_excuse="explicitly disabled" |
5ce5507f | 535 | fi |
536 | [if [ x"$grub_emu_usb_excuse" = x ]; then | |
d64399b5 | 537 | # Check for libusb libraries.] |
5ce5507f | 538 | AC_CHECK_LIB([usb], [usb_claim_interface], [LIBUSB="-lusb"], |
e98cd0c2 | 539 | [grub_emu_usb_excuse=["need libusb library"]]) |
d64399b5 | 540 | AC_SUBST([LIBUSB]) |
5ce5507f | 541 | [fi] |
542 | [if [ x"$grub_emu_usb_excuse" = x ]; then | |
543 | # Check for headers.] | |
d64399b5 | 544 | AC_CHECK_HEADERS([usb.h], [], |
e98cd0c2 | 545 | [grub_emu_usb_excuse=["need libusb headers"]]) |
4fe9862e | 546 | [fi] |
5ce5507f | 547 | if test x"enable_grub_emu_usb" = xyes && test x"$grub_emu_usb_excuse" != x ; then |
ce7a733d | 548 | AC_MSG_ERROR([USB support for grub-emu was explicitly requested but can't be compiled]) |
5ce5507f | 549 | fi |
550 | if test x"$grub_emu_usb_excuse" = x ; then | |
551 | enable_grub_emu_usb=yes | |
552 | else | |
553 | enable_grub_emu_usb=no | |
554 | fi | |
555 | ||
4fe9862e | 556 | AC_SUBST([enable_grub_emu]) |
d64399b5 | 557 | AC_SUBST([enable_grub_emu_usb]) |
4fe9862e | 558 | |
99fadbaa | 559 | AC_ARG_ENABLE([grub-fstest], |
560 | [AS_HELP_STRING([--enable-grub-fstest], | |
5ce5507f | 561 | [build and install the `grub-fstest' debugging utility (default=guessed)])]) |
562 | if test x"$enable_grub_fstest" = xno ; then | |
ce7a733d | 563 | grub_fstest_excuse="explicitly disabled" |
5ce5507f | 564 | fi |
565 | if test x"$grub_fstest_excuse" = x ; then | |
566 | enable_grub_fstest=yes | |
567 | else | |
568 | enable_grub_fstest=no | |
569 | fi | |
99fadbaa | 570 | AC_SUBST([enable_grub_fstest]) |
571 | ||
e52db1f7 | 572 | AC_ARG_ENABLE([grub-mkfont], |
573 | [AS_HELP_STRING([--enable-grub-mkfont], | |
5ce5507f | 574 | [build and install the `grub-mkfont' utility (default=guessed)])]) |
575 | if test x"$enable_grub_mkfont" = xno ; then | |
ce7a733d | 576 | grub_mkfont_excuse="explicitly disabled" |
5ce5507f | 577 | fi |
578 | ||
579 | if test x"$grub_mkfont_excuse" = x ; then | |
e52db1f7 | 580 | # Check for freetype libraries. |
581 | AC_CHECK_PROGS([FREETYPE], [freetype-config]) | |
582 | if test "x$FREETYPE" = x ; then | |
e98cd0c2 | 583 | grub_mkfont_excuse=["need freetype2 library"] |
e52db1f7 | 584 | fi |
585 | freetype_cflags=`freetype-config --cflags` | |
586 | freetype_libs=`freetype-config --libs` | |
587 | fi | |
5ce5507f | 588 | if test x"$enable_grub_mkfont" = xyes && test x"$grub_mkfont_excuse" != x ; then |
ce7a733d | 589 | AC_MSG_ERROR([grub-mkfont was explicitly requested but can't be compiled]) |
5ce5507f | 590 | fi |
591 | if test x"$grub_mkfont_excuse" = x ; then | |
592 | enable_grub_mkfont=yes | |
593 | else | |
594 | enable_grub_mkfont=no | |
595 | fi | |
e52db1f7 | 596 | AC_SUBST([enable_grub_mkfont]) |
597 | AC_SUBST([freetype_cflags]) | |
598 | AC_SUBST([freetype_libs]) | |
599 | ||
2b167a72 | 600 | AC_SUBST(ASFLAGS) |
fc45fb58 | 601 | |
6a161fa9 | 602 | # Output files. |
1f4147aa | 603 | grub_CHECK_LINK_DIR |
604 | if test x"$link_dir" = xyes ; then | |
605 | AC_CONFIG_LINKS([include/grub/cpu:include/grub/$target_cpu | |
b977bf01 | 606 | include/grub/machine:include/grub/$target_cpu/$platform]) |
1f4147aa | 607 | else |
608 | mkdir -p include/grub 2>/dev/null | |
609 | rm -rf include/grub/cpu | |
610 | cp -rp $srcdir/include/grub/$target_cpu include/grub/cpu 2>/dev/null | |
611 | rm -rf include/grub/machine | |
612 | cp -rp $srcdir/include/grub/$target_cpu/$platform include/grub/machine 2>/dev/null | |
613 | fi | |
7b455f4d | 614 | AC_CONFIG_FILES([Makefile gensymlist.sh genkernsyms.sh]) |
6a161fa9 | 615 | AC_CONFIG_FILES([stamp-h], [echo timestamp > stamp-h]) |
616 | AC_OUTPUT | |
5ce5507f | 617 | [ |
618 | echo "*******************************************************" | |
619 | echo GRUB2 will be compiled with following components: | |
620 | echo Platform: "$target_cpu"-"$platform" | |
5ce5507f | 621 | if [ x"$grub_emu_excuse" = x ]; then |
622 | echo grub-emu: Yes | |
623 | else | |
624 | echo grub-emu: No "($grub_emu_excuse)" | |
625 | fi | |
626 | if [ x"$grub_emu_usb_excuse" = x ]; then | |
627 | echo USB support for grub-emu: Yes | |
628 | else | |
629 | echo USB support for grub-emu: No "($grub_emu_usb_excuse)" | |
630 | fi | |
631 | if [ x"$enable_mm_debug" = xyes ]; then | |
632 | echo With memory debugging: Yes | |
633 | else | |
634 | echo With memory debugging: No | |
635 | fi | |
5ce5507f | 636 | if [ x"$efiemu_excuse" = x ]; then |
637 | echo efiemu runtime: Yes | |
638 | else | |
639 | echo efiemu runtime: No "($efiemu_excuse)" | |
640 | fi | |
641 | if [ x"$grub_fstest_excuse" = x ]; then | |
642 | echo grub-fstest: Yes | |
643 | else | |
644 | echo grub-fstest: No "($grub_fstest_excuse)" | |
645 | fi | |
646 | if [ x"$grub_mkfont_excuse" = x ]; then | |
647 | echo grub-mkfont: Yes | |
648 | else | |
649 | echo grub-mkfont: No "($grub_mkfont_excuse)" | |
650 | fi | |
651 | echo "*******************************************************" | |
652 | ] |