mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
5768ff4850
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6752 91177308-0d34-0410-b5e6-96231b3b80d8
46 lines
1.5 KiB
Makefile
46 lines
1.5 KiB
Makefile
#===-- Makefile.Linux - Linux specific makefile options ---*- makefile -*--====#
|
|
#
|
|
# This file is included by all other files, through Makefile.common, but only
|
|
# when compiling on a Linux based platform.
|
|
#
|
|
#===-----------------------------------------------------------------------====#
|
|
|
|
# Set the architecture so that x86 platform dependant code is compmiled
|
|
ARCH := x86
|
|
|
|
# MakeSharedObjectOption - This option is passed to the linker by
|
|
# Makefile.common when compiling a shared object.
|
|
#
|
|
MakeSharedObjectOption := -shared
|
|
|
|
# PLATFORMLINKOPTS - On Linux, we must specify this linker option so that all
|
|
# symbols are exported by tools for runtime use by dlsym.
|
|
#
|
|
PLATFORMLINKOPTS := -Wl,--export-dynamic
|
|
|
|
# PLATFORMSTRIPOPTS - Command to pass to the link phase to cause symbols to be
|
|
# stripped from the resultant binary.
|
|
PLATFORMSTRIPOPTS := -Wl,-x
|
|
|
|
# PLATFORMLIBDL - Library that supports dlsym() et al.
|
|
PLATFORMLIBDL := -ldl
|
|
|
|
# Path to location for LLVM front-end for this architecture. This setting may
|
|
# be overriden by the Makefile.config option, and should not override it if set.
|
|
#
|
|
LLVMGCCARCH := i686-pc-linux-gnu/3.4-llvm
|
|
ifndef LLVMGCCDIR
|
|
LLVMGCCDIR := /home/vadve/lattner/local/x86/llvm-gcc/
|
|
endif
|
|
|
|
# For now we disable running LLC output, because LLC does not generate x86 code
|
|
# LLC itself can be run so disable the diffs, not LLC itself.
|
|
#
|
|
DISABLE_LLC_DIFFS := 1
|
|
|
|
# This platform has a JIT compiler! FIXME: This should be changed to be an
|
|
# option printed by LLI itself at some point.
|
|
#
|
|
TARGET_HAS_JIT := 1
|
|
|