blob: 4d411f081e5ac2d43c9f5ffbd75fdfa05c9975d0 [file] [log] [blame]
Chris Lattner4bb13b82002-09-13 22:14:47 +00001#===-- 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#
11MakeSharedObjectOption := -shared
12
Chris Lattner1c588502002-11-04 20:50:33 +000013# PLATFORMLINKOPTS - On Linux, we must specify this linker option so that all
14# symbols are exported by tools for runtime use by dlsym.
Chris Lattner4bb13b82002-09-13 22:14:47 +000015#
Chris Lattner1c588502002-11-04 20:50:33 +000016PLATFORMLINKOPTS := -Wl,--export-dynamic
Chris Lattner4bb13b82002-09-13 22:14:47 +000017
Chris Lattner7f666ca2002-09-19 19:44:28 +000018# 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#
21ifndef LLVMGCCDIR
22LLVMGCCDIR := /home/vadve/lattner/cvs/gcc_install_x86
23endif
Chris Lattner698a1312002-09-19 21:32:44 +000024
Vikram S. Adve11fd1d32002-09-23 14:24:19 +000025# 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#
28DISABLE_LLC_DIFFS := 1