Include HashExtras.h since it is almost always needed anyway.
[oota-llvm.git] / Makefile.Linux
1 #===-- Makefile.Linux - Linux specific makefile options ---*- makefile -*--====#
2 #
3 # This file is included by all other files, through Makefile.common, but only
4 # when compiling on a Linux based platform.
5 #
6 #===-----------------------------------------------------------------------====#
7
8 # MakeSharedObjectOption - This option is passed to the linker by
9 # Makefile.common when compiling a shared object.
10 #
11 MakeSharedObjectOption := -shared
12
13 # PLATFORMLINKOPTS - On Linux, we must specify this linker option so that all
14 # symbols are exported by tools for runtime use by dlsym.
15 #
16 PLATFORMLINKOPTS := -Wl,--export-dynamic
17
18 # Path to location for LLVM front-end for this architecture.  This setting may
19 # be overriden by the Makefile.config option, and should not override it if set.
20 #
21 ifndef LLVMGCCDIR
22 LLVMGCCDIR := /home/vadve/lattner/cvs/gcc_install_x86
23 endif
24
25 # For now we disable running LLC output, because LLC does not generate x86 code
26 # LLC itself can be run so disable the diffs, not LLC itself.
27
28 DISABLE_LLC_DIFFS := 1