2012-12-11 02:32:48 +01:00
|
|
|
# Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
# file at the top-level directory of this distribution and at
|
|
|
|
# http://rust-lang.org/COPYRIGHT.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
# option. This file may not be copied, modified, or distributed
|
|
|
|
# except according to those terms.
|
|
|
|
|
2011-05-01 22:18:52 +02:00
|
|
|
######################################################################
|
|
|
|
# rustc LLVM-extensions (C++) library variables and rules
|
|
|
|
######################################################################
|
|
|
|
|
2011-11-02 01:28:41 +01:00
|
|
|
define DEF_RUSTLLVM_TARGETS
|
|
|
|
|
2011-11-27 07:38:36 +01:00
|
|
|
# FIXME: Lately, on windows, llvm-config --includedir is not enough
|
|
|
|
# to find the llvm includes (probably because we're not actually installing
|
|
|
|
# llvm, but using it straight out of the build directory)
|
2013-03-02 13:25:12 +01:00
|
|
|
ifdef CFG_WINDOWSY_$(1)
|
2011-11-27 07:38:36 +01:00
|
|
|
LLVM_EXTRA_INCDIRS_$(1)= -iquote $(S)src/llvm/include \
|
2013-09-06 08:18:18 +02:00
|
|
|
-iquote $$(CFG_LLVM_BUILD_DIR_$(1))/include
|
2011-11-27 07:38:36 +01:00
|
|
|
endif
|
|
|
|
|
2014-11-24 19:55:14 +01:00
|
|
|
RUSTLLVM_OBJS_CS_$(1) := $$(addprefix rustllvm/, \
|
|
|
|
ExecutionEngineWrapper.cpp RustWrapper.cpp PassWrapper.cpp)
|
2011-05-01 22:18:52 +02:00
|
|
|
|
2013-09-04 09:45:01 +02:00
|
|
|
RUSTLLVM_DEF_$(1) := $(1)/rustllvm/rustllvm$(CFG_DEF_SUFFIX_$(1))
|
2011-11-02 01:28:41 +01:00
|
|
|
|
2011-11-27 07:38:36 +01:00
|
|
|
RUSTLLVM_INCS_$(1) = $$(LLVM_EXTRA_INCDIRS_$(1)) \
|
|
|
|
-iquote $$(LLVM_INCDIR_$(1)) \
|
2011-11-03 00:21:17 +01:00
|
|
|
-iquote $$(S)src/rustllvm/include
|
2013-09-04 08:48:45 +02:00
|
|
|
RUSTLLVM_OBJS_OBJS_$(1) := $$(RUSTLLVM_OBJS_CS_$(1):rustllvm/%.cpp=$(1)/rustllvm/%.o)
|
2012-06-14 20:07:19 +02:00
|
|
|
ALL_OBJ_FILES += $$(RUSTLLVM_OBJS_OBJS_$(1))
|
2011-05-01 22:18:52 +02:00
|
|
|
|
2014-01-25 04:27:22 +01:00
|
|
|
$$(RT_OUTPUT_DIR_$(1))/$$(call CFG_STATIC_LIB_NAME_$(1),rustllvm): \
|
|
|
|
$$(RUSTLLVM_OBJS_OBJS_$(1))
|
2011-11-02 01:28:41 +01:00
|
|
|
@$$(call E, link: $$@)
|
2013-12-01 05:52:21 +01:00
|
|
|
$$(Q)$$(AR_$(1)) rcs $$@ $$(RUSTLLVM_OBJS_OBJS_$(1))
|
2011-05-01 22:18:52 +02:00
|
|
|
|
2014-01-28 23:14:51 +01:00
|
|
|
$(1)/rustllvm/%.o: $(S)src/rustllvm/%.cpp $$(MKFILE_DEPS) $$(LLVM_CONFIG_$(1))
|
2011-11-02 01:28:41 +01:00
|
|
|
@$$(call E, compile: $$@)
|
2012-10-03 03:15:02 +02:00
|
|
|
$$(Q)$$(call CFG_COMPILE_CXX_$(1), $$@, $$(LLVM_CXXFLAGS_$(1)) $$(RUSTLLVM_INCS_$(1))) $$<
|
2011-11-02 01:28:41 +01:00
|
|
|
endef
|
2011-05-01 22:18:52 +02:00
|
|
|
|
2011-11-02 01:28:41 +01:00
|
|
|
# Instantiate template for all stages
|
2013-10-21 11:18:21 +02:00
|
|
|
$(foreach host,$(CFG_HOST), \
|
2013-02-22 01:15:01 +01:00
|
|
|
$(eval $(call DEF_RUSTLLVM_TARGETS,$(host))))
|