mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
Add a facility for invoking the llvm-config tool when linking a program.
This facility allows LLVMLIBS to be specified with something like: LLVMLIBS = config --libs jit instead of: LLVMLIBS = JIT with the same effect. However, the llvm-config utility is much more versatile than the single keyword approach. Note that "config" is the keyword after which any arguments to llvm-config are allowed. When llvm-config is tested and working well, we'll start using this and drop support for the JIT keyword. llvm-svn: 27057
This commit is contained in:
parent
d58d54cf3e
commit
fb9e34525e
@ -564,6 +564,14 @@ endif
|
||||
# shorthand for a bunch of libraries that get the correct
|
||||
# JIT support for a library or a tool that runs JIT.
|
||||
#---------------------------------------------------------
|
||||
ifeq ($(firstword $(LLVMLIBS)),config)
|
||||
LLVM_CONFIG := $(LLVM_SRC_ROOT)/utils/llvm-config/llvm-config
|
||||
LLVMLIBS := $(shell $(LLVM_CONFIG) $(wordlist 2,9999,$(LLVMLIBS)))
|
||||
LLVMLIBS := $(patsubst $(PROJ_libdir)/%,%,$(LLVMLIBS))
|
||||
LLVMLIBS := $(patsubst %.o,%,$(LLVMLIBS))
|
||||
LLVMLIBS := $(patsubst -l%,%.a,$(LLVMLIBS))
|
||||
endif
|
||||
|
||||
ifeq ($(LLVMLIBS),JIT)
|
||||
|
||||
# Make sure we can get our own symbols in the tool
|
||||
|
Loading…
x
Reference in New Issue
Block a user