mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Fix problem with llvm-config that prevented JIT from being used on x86_64
systems. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35416 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9430832d0e
commit
02c91ef2cb
@ -44,6 +44,10 @@ my $TARGET_HAS_JIT = q{@TARGET_HAS_JIT@};
|
||||
my @TARGETS_BUILT = map { lc($_) } qw{@TARGETS_TO_BUILD@};
|
||||
#---- end autoconf values ----
|
||||
|
||||
# Must pretend x86_64 architecture is really x86, otherwise the native backend
|
||||
# won't get linked in.
|
||||
$ARCH = "x86" if $ARCH eq "x86_64";
|
||||
|
||||
#---- begin Makefile values ----
|
||||
my $CFLAGS = q{@LLVM_CFLAGS@};
|
||||
my $CXXFLAGS = q{@LLVM_CXXFLAGS@};
|
||||
|
Loading…
Reference in New Issue
Block a user