brg
[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 # Set the architecture so that x86 platform dependant code is compmiled
9 ARCH := x86
10
11 # MakeSharedObjectOption - This option is passed to the linker by
12 # Makefile.common when compiling a shared object.
13 #
14 MakeSharedObjectOption := -shared
15
16 # PLATFORMLINKOPTS - On Linux, we must specify this linker option so that all
17 # symbols are exported by tools for runtime use by dlsym.
18 #
19 PLATFORMLINKOPTS := -Wl,--export-dynamic
20
21 # Path to location for LLVM front-end for this architecture.  This setting may
22 # be overriden by the Makefile.config option, and should not override it if set.
23 #
24 ifndef LLVMGCCDIR
25 LLVMGCCDIR := /home/vadve/lattner/cvs/gcc_install_x86
26 endif
27
28 # For now we disable running LLC output, because LLC does not generate x86 code
29 # LLC itself can be run so disable the diffs, not LLC itself.
30
31 DISABLE_LLC_DIFFS := 1