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
|
|
|
######################################################################
|
|
|
|
# Cleanup
|
|
|
|
######################################################################
|
|
|
|
|
2014-07-23 06:37:05 +02:00
|
|
|
CLEAN_STAGE_RULES := \
|
|
|
|
$(foreach stage, $(STAGES), \
|
|
|
|
$(foreach host, $(CFG_HOST), \
|
|
|
|
clean$(stage)_H_$(host) \
|
|
|
|
$(foreach target, $(CFG_TARGET), \
|
2011-11-24 00:23:40 +01:00
|
|
|
clean$(stage)_T_$(target)_H_$(host))))
|
2011-09-29 20:48:44 +02:00
|
|
|
|
2014-07-23 06:37:05 +02:00
|
|
|
CLEAN_STAGE_RULES := $(CLEAN_STAGE_RULES) \
|
2013-11-14 19:04:55 +01:00
|
|
|
$(foreach host, $(CFG_HOST), clean-generic-H-$(host))
|
|
|
|
|
2014-07-23 06:37:05 +02:00
|
|
|
CLEAN_STAGE_RULES := $(CLEAN_STAGE_RULES) \
|
2013-11-14 19:04:55 +01:00
|
|
|
$(foreach host, $(CFG_TARGET), clean-generic-T-$(host))
|
|
|
|
|
2014-07-23 06:37:05 +02:00
|
|
|
CLEAN_LLVM_RULES = \
|
|
|
|
$(foreach target, $(CFG_HOST), \
|
2011-11-21 22:11:40 +01:00
|
|
|
clean-llvm$(target))
|
2011-09-29 20:48:44 +02:00
|
|
|
|
2013-06-28 02:10:07 +02:00
|
|
|
.PHONY: clean clean-all clean-misc clean-llvm
|
2011-11-03 22:32:52 +01:00
|
|
|
|
|
|
|
clean-all: clean clean-llvm
|
|
|
|
|
|
|
|
clean-llvm: $(CLEAN_LLVM_RULES)
|
2011-05-01 22:18:52 +02:00
|
|
|
|
2011-09-29 20:48:44 +02:00
|
|
|
clean: clean-misc $(CLEAN_STAGE_RULES)
|
|
|
|
|
|
|
|
clean-misc:
|
2011-05-01 22:18:52 +02:00
|
|
|
@$(call E, cleaning)
|
|
|
|
$(Q)rm -f $(RUNTIME_OBJS) $(RUNTIME_DEF)
|
|
|
|
$(Q)rm -f $(RUSTLLVM_LIB_OBJS) $(RUSTLLVM_OBJS_OBJS) $(RUSTLLVM_DEF)
|
2011-12-30 21:47:43 +01:00
|
|
|
$(Q)rm -Rf $(GENERATED)
|
2013-09-06 09:17:14 +02:00
|
|
|
$(Q)rm -Rf tmp/*
|
2014-03-24 02:26:35 +01:00
|
|
|
$(Q)rm -Rf rust-stage0-*.tar.bz2 $(PKG_NAME)-*.tar.gz $(PKG_NAME)-*.exe
|
|
|
|
$(Q)rm -Rf dist/*
|
2014-01-28 23:15:29 +01:00
|
|
|
$(Q)rm -Rf doc
|
2011-09-29 20:48:44 +02:00
|
|
|
|
2013-11-14 19:04:55 +01:00
|
|
|
define CLEAN_GENERIC
|
|
|
|
|
|
|
|
clean-generic-$(2)-$(1):
|
|
|
|
$(Q)find $(1)/rustllvm \
|
|
|
|
$(1)/rt \
|
|
|
|
$(1)/test \
|
Add generation of static libraries to rustc
This commit implements the support necessary for generating both intermediate
and result static rust libraries. This is an implementation of my thoughts in
https://mail.mozilla.org/pipermail/rust-dev/2013-November/006686.html.
When compiling a library, we still retain the "lib" option, although now there
are "rlib", "staticlib", and "dylib" as options for crate_type (and these are
stackable). The idea of "lib" is to generate the "compiler default" instead of
having too choose (although all are interchangeable). For now I have left the
"complier default" to be a dynamic library for size reasons.
Of the rust libraries, lib{std,extra,rustuv} will bootstrap with an
rlib/dylib pair, but lib{rustc,syntax,rustdoc,rustpkg} will only be built as a
dynamic object. I chose this for size reasons, but also because you're probably
not going to be embedding the rustc compiler anywhere any time soon.
Other than the options outlined above, there are a few defaults/preferences that
are now opinionated in the compiler:
* If both a .dylib and .rlib are found for a rust library, the compiler will
prefer the .rlib variant. This is overridable via the -Z prefer-dynamic option
* If generating a "lib", the compiler will generate a dynamic library. This is
overridable by explicitly saying what flavor you'd like (rlib, staticlib,
dylib).
* If no options are passed to the command line, and no crate_type is found in
the destination crate, then an executable is generated
With this change, you can successfully build a rust program with 0 dynamic
dependencies on rust libraries. There is still a dynamic dependency on
librustrt, but I plan on removing that in a subsequent commit.
This change includes no tests just yet. Our current testing
infrastructure/harnesses aren't very amenable to doing flavorful things with
linking, so I'm planning on adding a new mode of testing which I believe belongs
as a separate commit.
Closes #552
2013-11-15 23:03:29 +01:00
|
|
|
$(1)/stage* \
|
2014-07-23 06:37:05 +02:00
|
|
|
-type f \( \
|
2013-11-14 19:04:55 +01:00
|
|
|
-name '*.[odasS]' -o \
|
2014-07-23 06:37:05 +02:00
|
|
|
-name '*.so' -o \
|
|
|
|
-name '*.dylib' -o \
|
|
|
|
-name '*.rlib' -o \
|
|
|
|
-name 'stamp.*' -o \
|
|
|
|
-name '*.lib' -o \
|
|
|
|
-name '*.dll' -o \
|
|
|
|
-name '*.def' -o \
|
2014-11-13 17:25:15 +01:00
|
|
|
-name '*.py' -o \
|
2014-12-03 23:48:18 +01:00
|
|
|
-name '*.pyc' -o \
|
2014-07-23 06:37:05 +02:00
|
|
|
-name '*.bc' \
|
|
|
|
\) \
|
2013-11-14 19:04:55 +01:00
|
|
|
| xargs rm -f
|
2014-07-23 06:45:08 +02:00
|
|
|
$(Q)find $(1) \
|
2014-07-23 06:37:05 +02:00
|
|
|
-name '*.dSYM' \
|
2013-11-14 19:04:55 +01:00
|
|
|
| xargs rm -Rf
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(foreach host, $(CFG_HOST), $(eval $(call CLEAN_GENERIC,$(host),H)))
|
|
|
|
$(foreach targ, $(CFG_TARGET), $(eval $(call CLEAN_GENERIC,$(targ),T)))
|
|
|
|
|
2011-11-21 22:11:40 +01:00
|
|
|
define CLEAN_HOST_STAGE_N
|
|
|
|
|
2014-07-23 06:37:05 +02:00
|
|
|
clean$(1)_H_$(2): \
|
|
|
|
$$(foreach crate,$$(CRATES),clean$(1)_H_$(2)-lib-$$(crate)) \
|
2014-12-03 23:48:18 +01:00
|
|
|
$$(foreach tool,$$(TOOLS) $$(DEBUGGER_BIN_SCRIPTS_ALL),clean$(1)_H_$(2)-tool-$$(tool))
|
2014-03-15 02:06:37 +01:00
|
|
|
$$(Q)rm -fr $(2)/rt/libbacktrace
|
2014-01-25 04:27:22 +01:00
|
|
|
|
|
|
|
clean$(1)_H_$(2)-tool-%:
|
|
|
|
$$(Q)rm -f $$(HBIN$(1)_H_$(2))/$$*$$(X_$(2))
|
|
|
|
|
|
|
|
clean$(1)_H_$(2)-lib-%:
|
|
|
|
$$(Q)rm -f $$(HLIB$(1)_H_$(2))/$$(call CFG_LIB_GLOB_$(2),$$*)
|
|
|
|
$$(Q)rm -f $$(HLIB$(1)_H_$(2))/$$(call CFG_RLIB_GLOB,$$*)
|
2011-09-29 20:48:44 +02:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
2013-10-21 11:18:21 +02:00
|
|
|
$(foreach host, $(CFG_HOST), \
|
2011-11-21 22:11:40 +01:00
|
|
|
$(eval $(foreach stage, $(STAGES), \
|
|
|
|
$(eval $(call CLEAN_HOST_STAGE_N,$(stage),$(host))))))
|
|
|
|
|
|
|
|
define CLEAN_TARGET_STAGE_N
|
|
|
|
|
2014-07-23 06:37:05 +02:00
|
|
|
clean$(1)_T_$(2)_H_$(3): \
|
|
|
|
$$(foreach crate,$$(CRATES),clean$(1)_T_$(2)_H_$(3)-lib-$$(crate)) \
|
2014-12-03 23:48:18 +01:00
|
|
|
$$(foreach tool,$$(TOOLS) $$(DEBUGGER_BIN_SCRIPTS_ALL),clean$(1)_T_$(2)_H_$(3)-tool-$$(tool))
|
2014-02-04 07:54:09 +01:00
|
|
|
$$(Q)rm -f $$(TLIB$(1)_T_$(2)_H_$(3))/libcompiler-rt.a
|
2012-12-09 00:48:54 +01:00
|
|
|
$(Q)rm -f $$(TLIB$(1)_T_$(2)_H_$(3))/librun_pass_stage* # For unix
|
|
|
|
$(Q)rm -f $$(TLIB$(1)_T_$(2)_H_$(3))/run_pass_stage* # For windows
|
2014-01-25 04:27:22 +01:00
|
|
|
|
|
|
|
clean$(1)_T_$(2)_H_$(3)-tool-%:
|
|
|
|
$$(Q)rm -f $$(TBIN$(1)_T_$(2)_H_$(3))/$$*$$(X_$(2))
|
|
|
|
|
|
|
|
clean$(1)_T_$(2)_H_$(3)-lib-%:
|
|
|
|
$$(Q)rm -f $$(TLIB$(1)_T_$(2)_H_$(3))/$$(call CFG_LIB_GLOB_$(2),$$*)
|
|
|
|
$$(Q)rm -f $$(TLIB$(1)_T_$(2)_H_$(3))/$$(call CFG_RLIB_GLOB,$$*)
|
2011-11-21 22:11:40 +01:00
|
|
|
endef
|
|
|
|
|
2013-10-21 11:18:21 +02:00
|
|
|
$(foreach host, $(CFG_HOST), \
|
|
|
|
$(eval $(foreach target, $(CFG_TARGET), \
|
2011-11-24 00:23:40 +01:00
|
|
|
$(eval $(foreach stage, 0 1 2 3, \
|
2011-11-21 22:11:40 +01:00
|
|
|
$(eval $(call CLEAN_TARGET_STAGE_N,$(stage),$(target),$(host))))))))
|