Skip to content

Rollup of 6 pull requests #28634

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

Merged
merged 21 commits into from
Sep 24, 2015
Merged
Changes from 2 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
8474af0
run-make: search libstdc++ in /usr/local/lib too
semarie Sep 21, 2015
54792fe
Do not traverse RHS of assignment twice for unused variables lint
sanxiyn Sep 23, 2015
3b42b60
unbreak openbsd after netbsd integration
semarie Sep 23, 2015
f781154
Make lexer tooling message more generic
steveklabnik Sep 23, 2015
edeb4f1
Auto merge of #28603 - steveklabnik:small_config_fix, r=alexcrichton
bors Sep 23, 2015
30fbf44
Fix bad copypasta for patterns doc in std::str
remram44 Sep 23, 2015
afae2ff
Auto merge of #28569 - semarie:stdcpp-tests, r=alexcrichton
bors Sep 23, 2015
4f15e46
Auto merge of #28596 - sanxiyn:dedup-unused, r=alexcrichton
bors Sep 23, 2015
f0666b4
Auto merge of #28598 - semarie:openbsd-unbreak, r=alexcrichton
bors Sep 24, 2015
8fe79bd
Auto merge of #28607 - remram44:doc-fix-str-pattern, r=alexcrichton
bors Sep 24, 2015
5f73037
reference: not sure this is the right place to discuss design
tshepang Sep 24, 2015
e0f35da
reference: fix anchor link
tshepang Sep 24, 2015
7077075
doc: "familiarity" does not need to be repeated here
tshepang Sep 24, 2015
996bd9d
reference: 3 of the 4 things mentioned here are optional
tshepang Sep 24, 2015
f34eafd
reference: follow idiom in code snippet
tshepang Sep 24, 2015
6f0a095
Rollup merge of #28616 - tshepang:idiom, r=steveklabnik
steveklabnik Sep 24, 2015
c16b0f7
Rollup merge of #28617 - tshepang:optional, r=steveklabnik
steveklabnik Sep 24, 2015
668ffb1
Rollup merge of #28618 - tshepang:repetition, r=steveklabnik
steveklabnik Sep 24, 2015
c104ba3
Rollup merge of #28619 - tshepang:fix-link, r=steveklabnik
steveklabnik Sep 24, 2015
e314ac6
Rollup merge of #28620 - tshepang:not-filled, r=steveklabnik
steveklabnik Sep 24, 2015
c3ca182
Rollup merge of #28622 - tshepang:known-as-structs, r=steveklabnik
steveklabnik Sep 24, 2015
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
5 changes: 5 additions & 0 deletions src/test/run-make/tools.mk
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@ ifeq ($(UNAME),Bitrig)
else
ifeq ($(UNAME),OpenBSD)
EXTRACFLAGS := -lm -lpthread
# extend search lib for found estdc++ if build using gcc from
# ports under OpenBSD. This is needed for:
# - run-make/execution-engine
# - run-make/issue-19371
RUSTC := $(RUSTC) -L/usr/local/lib
else
EXTRACFLAGS := -lm -lrt -ldl -lpthread
EXTRACXXFLAGS := -lstdc++
Expand Down