Skip to content

Improve io docs #5672

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 31 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
0224eb3
vim: assert and pure keywords were removed
thestinger Mar 30, 2013
7142cde
vim: highlight ref + static as storage specifiers
thestinger Mar 30, 2013
b0f66c4
vim: mark Todo as contained and rm unsafe from it
thestinger Mar 30, 2013
6442b1c
vim: separate the conditional keywords
thestinger Mar 30, 2013
47011e3
vim: use Operator group for 'as'
thestinger Mar 30, 2013
8e30d3f
auto merge of #5636 : thestinger/rust/vim, r=luqmana
bors Mar 30, 2013
258a367
move dlist from core -> std
thestinger Mar 30, 2013
02700e0
libsyntax: Update abi constants. Fixes #5423.
luqmana Mar 31, 2013
bd7ba1f
auto merge of #5634 : thestinger/rust/dlist, r=brson,thestinger
bors Mar 31, 2013
eadd358
Correct type signature for start lang item.
luqmana Mar 31, 2013
74d20b4
Rename confusing var, use_new_rt -> use_old_rt.
luqmana Mar 31, 2013
042a665
auto merge of #5638 : luqmana/rust/5405, r=brson
bors Mar 31, 2013
75d615d
auto merge of #5637 : luqmana/rust/5423, r=brson
bors Mar 31, 2013
df66e8d
Fix underflow in char_range_at_reverse
Kimundi Mar 28, 2013
4c58903
Update RELEASES.txt
luqmana Mar 31, 2013
fb5f020
auto merge of #5611 : Kimundi/rust/incoming, r=catamorphism
bors Mar 31, 2013
c0be7df
mark the assembly object stacks as non-executable
thestinger Mar 31, 2013
f336afd
auto merge of #5648 : luqmana/rust/incoming, r=thestinger
bors Mar 31, 2013
431380f
install.mk: use INSTALL_LIB for all libraries
thestinger Mar 31, 2013
b9c7ee5
auto merge of #5647 : thestinger/rust/execstack, r=brson
bors Apr 1, 2013
686f448
auto merge of #5649 : thestinger/rust/lib, r=brson
bors Apr 1, 2013
d617030
Update tutorial.md
luqmana Apr 1, 2013
be79258
auto merge of #5651 : luqmana/rust/incoming, r=thestinger
bors Apr 1, 2013
e3327d3
Fix warnings
brson Apr 1, 2013
bd7eb7e
auto merge of #5653 : brson/rust/warnings, r=brson
bors Apr 1, 2013
26fc76a
rt/arch/arm: fix syntax used for noexec stack
thestinger Apr 1, 2013
8e9fd72
auto merge of #5655 : thestinger/rust/arm, r=brson
bors Apr 1, 2013
37634f3
core: Update libc docs to clarify usage
brson Apr 1, 2013
243e601
doc: Update tutorial description of core
brson Apr 1, 2013
dc60788
auto merge of #5660 : brson/rust/doc, r=catamorphism
bors Apr 1, 2013
a20d1ad
Improve documentation for core::io.
steveklabnik Apr 1, 2013
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
install.mk: use INSTALL_LIB for all libraries
There's no reason to make them executable, and this throws a warning
with the Arch Linux package lint tool (namcap) for .a files.
  • Loading branch information
thestinger committed Mar 31, 2013
commit 431380f011d122b9d893addf4817f632d8c94ba8
8 changes: 4 additions & 4 deletions mk/install.mk
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,19 @@ $(foreach target,$(CFG_TARGET_TRIPLES), \
define INSTALL_TARGET_N
install-target-$(1)-host-$(2): $$(TSREQ$$(ISTAGE)_T_$(1)_H_$(2)) $$(SREQ$$(ISTAGE)_T_$(1)_H_$(2))
$$(Q)mkdir -p $$(PTL$(1)$(2))
$$(Q)$$(call INSTALL,$$(TL$(1)$(2)),$$(PTL$(1)$(2)),$$(CFG_RUNTIME_$(1)))
$$(Q)$$(call INSTALL_LIB,$$(TL$(1)$(2)),$$(PTL$(1)$(2)),$$(CFG_RUNTIME_$(1)))
$$(Q)$$(call INSTALL_LIB, \
$$(TL$(1)$(2)),$$(PTL$(1)$(2)),$$(CORELIB_GLOB_$(1)))
$$(Q)$$(call INSTALL_LIB, \
$$(TL$(1)$(2)),$$(PTL$(1)$(2)),$$(STDLIB_GLOB_$(1)))
$$(Q)$$(call INSTALL,$$(TL$(1)$(2)),$$(PTL$(1)$(2)),libmorestack.a)
$$(Q)$$(call INSTALL_LIB,$$(TL$(1)$(2)),$$(PTL$(1)$(2)),libmorestack.a)

endef

define INSTALL_HOST_N
install-target-$(1)-host-$(2): $$(CSREQ$$(ISTAGE)_T_$(1)_H_$(2))
$$(Q)mkdir -p $$(PTL$(1)$(2))
$$(Q)$$(call INSTALL,$$(TL$(1)$(2)),$$(PTL$(1)$(2)),$$(CFG_RUNTIME_$(1)))
$$(Q)$$(call INSTALL_LIB,$$(TL$(1)$(2)),$$(PTL$(1)$(2)),$$(CFG_RUNTIME_$(1)))
$$(Q)$$(call INSTALL_LIB, \
$$(TL$(1)$(2)),$$(PTL$(1)$(2)),$$(CORELIB_GLOB_$(1)))
$$(Q)$$(call INSTALL_LIB, \
Expand All @@ -80,7 +80,7 @@ install-target-$(1)-host-$(2): $$(CSREQ$$(ISTAGE)_T_$(1)_H_$(2))
$$(TL$(1)$(2)),$$(PTL$(1)$(2)),$$(LIBRUSTI_GLOB_$(1)))
$$(Q)$$(call INSTALL_LIB, \
$$(TL$(1)$(2)),$$(PTL$(1)$(2)),$$(LIBRUST_GLOB_$(1)))
$$(Q)$$(call INSTALL,$$(TL$(1)$(2)),$$(PTL$(1)$(2)),libmorestack.a)
$$(Q)$$(call INSTALL_LIB,$$(TL$(1)$(2)),$$(PTL$(1)$(2)),libmorestack.a)

endef

Expand Down