Remove the --no-core command-line option
It is superceeded by the #[no_core] attribute
This commit is contained in:
parent
a3beeac4ec
commit
f0ba69a96f
|
@ -31,7 +31,7 @@ $$(TLIB$(1)_T_$(2)_H_$(3))/$$(CFG_CORELIB): \
|
||||||
$$(CORELIB_CRATE) $$(CORELIB_INPUTS) \
|
$$(CORELIB_CRATE) $$(CORELIB_INPUTS) \
|
||||||
$$(TSREQ$(1)_T_$(2)_H_$(3))
|
$$(TSREQ$(1)_T_$(2)_H_$(3))
|
||||||
@$$(call E, compile_and_link: $$@)
|
@$$(call E, compile_and_link: $$@)
|
||||||
$$(STAGE$(1)_T_$(2)_H_$(3)) --no-core -o $$@ $$< && touch $$@
|
$$(STAGE$(1)_T_$(2)_H_$(3)) -o $$@ $$< && touch $$@
|
||||||
|
|
||||||
$$(TLIB$(1)_T_$(2)_H_$(3))/$$(CFG_STDLIB): \
|
$$(TLIB$(1)_T_$(2)_H_$(3))/$$(CFG_STDLIB): \
|
||||||
$$(STDLIB_CRATE) $$(STDLIB_INPUTS) \
|
$$(STDLIB_CRATE) $$(STDLIB_INPUTS) \
|
||||||
|
|
|
@ -196,7 +196,7 @@ $(3)/test/coretest.stage$(1)-$(2)$$(X): \
|
||||||
$$(CORELIB_CRATE) $$(CORELIB_INPUTS) \
|
$$(CORELIB_CRATE) $$(CORELIB_INPUTS) \
|
||||||
$$(SREQ$(1)_T_$(2)_H_$(3))
|
$$(SREQ$(1)_T_$(2)_H_$(3))
|
||||||
@$$(call E, compile_and_link: $$@)
|
@$$(call E, compile_and_link: $$@)
|
||||||
$$(STAGE$(1)_T_$(2)_H_$(3)) -o $$@ $$< --test --no-core
|
$$(STAGE$(1)_T_$(2)_H_$(3)) -o $$@ $$< --test
|
||||||
|
|
||||||
check-stage$(1)-T-$(2)-H-$(3)-core-dummy: \
|
check-stage$(1)-T-$(2)-H-$(3)-core-dummy: \
|
||||||
$(3)/test/coretest.stage$(1)-$(2)$$(X)
|
$(3)/test/coretest.stage$(1)-$(2)$$(X)
|
||||||
|
|
|
@ -494,9 +494,7 @@ fn opts() -> [getopts::opt] {
|
||||||
optmulti("cfg"), optflag("test"),
|
optmulti("cfg"), optflag("test"),
|
||||||
optflag("lib"), optflag("bin"), optflag("static"), optflag("gc"),
|
optflag("lib"), optflag("bin"), optflag("static"), optflag("gc"),
|
||||||
optflag("no-asm-comments"),
|
optflag("no-asm-comments"),
|
||||||
optflag("warn-unused-imports"),
|
optflag("warn-unused-imports")];
|
||||||
// FIXME: Transitional. Please remove
|
|
||||||
optflag("no-core")];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type output_filenames = @{out_filename: str, obj_filename:str};
|
type output_filenames = @{out_filename: str, obj_filename:str};
|
||||||
|
|
Loading…
Reference in New Issue