Skip to content

Commit a80d57c

Browse files
committed
---
yaml --- r: 95449 b: refs/heads/dist-snap c: f766aca h: refs/heads/master i: 95447: c79b289 v: v3
1 parent a1d4621 commit a80d57c

File tree

21 files changed

+4
-2225
lines changed

21 files changed

+4
-2225
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: c274a6888410ce3e357e014568b43310ed787d36
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9-
refs/heads/dist-snap: 7c92435f8f93344330e47fb0cca4f79297896bd2
9+
refs/heads/dist-snap: f766acad62cd5cf7ed701a9521db2f2a96039778
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1212
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,4 @@
77
src/etc/pkg/rust-logo.ico binary
88
src/rt/msvc/* -whitespace
99
src/rt/vg/* -whitespace
10-
src/rt/linenoise/* -whitespace
1110
src/rt/jemalloc/**/* -whitespace

branches/dist-snap/configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ do
686686
make_dir $t/rt/libuv/src/ev
687687
make_dir $t/rt/jemalloc
688688
for i in \
689-
isaac linenoise sync test \
689+
isaac sync test \
690690
arch/i386 arch/x86_64 arch/arm arch/mips \
691691
sundown/src sundown/html
692692
do

branches/dist-snap/mk/platform.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ $(foreach t,$(CFG_TARGET_TRIPLES),$(info cfg: os for $(t) is $(OSTYPE_$(t))))
2929
# FIXME: no-omit-frame-pointer is just so that task_start_wrapper
3030
# has a frame pointer and the stack walker can understand it. Turning off
3131
# frame pointers everywhere is overkill
32-
CFG_GCCISH_CFLAGS += -fno-omit-frame-pointer -DUSE_UTF8
32+
CFG_GCCISH_CFLAGS += -fno-omit-frame-pointer
3333

3434
# On Darwin, we need to run dsymutil so the debugging information ends
3535
# up in the right place. On other platforms, it automatically gets

branches/dist-snap/mk/rt.mk

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,7 @@ RUNTIME_CXXS_$(1)_$(2) := \
9696
rt/rust_android_dummy.cpp \
9797
rt/rust_test_helpers.cpp
9898

99-
RUNTIME_CS_$(1)_$(2) := rt/linenoise/linenoise.c \
100-
rt/linenoise/utf8.c \
101-
rt/sundown/src/autolink.c \
99+
RUNTIME_CS_$(1)_$(2) := rt/sundown/src/autolink.c \
102100
rt/sundown/src/buffer.c \
103101
rt/sundown/src/stack.c \
104102
rt/sundown/src/markdown.c \
@@ -116,7 +114,6 @@ RT_BUILD_DIR_$(1)_$(2) := $$(RT_OUTPUT_DIR_$(1))/stage$(2)
116114
RUNTIME_DEF_$(1)_$(2) := $$(RT_OUTPUT_DIR_$(1))/rustrt$$(CFG_DEF_SUFFIX_$(1))
117115
RUNTIME_INCS_$(1)_$(2) := -I $$(S)src/rt -I $$(S)src/rt/isaac -I $$(S)src/rt/uthash \
118116
-I $$(S)src/rt/arch/$$(HOST_$(1)) \
119-
-I $$(S)src/rt/linenoise \
120117
-I $$(S)src/rt/sundown/src \
121118
-I $$(S)src/rt/sundown/html \
122119
-I $$(S)src/libuv/include

branches/dist-snap/mk/tests.mk

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,6 @@ ALL_CS := $(wildcard $(S)src/rt/*.cpp \
227227
$(S)src/rt/*/*/*.cpp \
228228
$(S)src/rustllvm/*.cpp)
229229
ALL_CS := $(filter-out $(S)src/rt/miniz.cpp \
230-
$(wildcard $(S)src/rt/linenoise/*.c) \
231230
$(wildcard $(S)src/rt/sundown/src/*.c) \
232231
$(wildcard $(S)src/rt/sundown/html/*.c) \
233232
,$(ALL_CS))
@@ -240,8 +239,6 @@ ALL_HS := $(filter-out $(S)src/rt/vg/valgrind.h \
240239
$(S)src/rt/msvc/typeof.h \
241240
$(S)src/rt/msvc/stdint.h \
242241
$(S)src/rt/msvc/inttypes.h \
243-
$(S)src/rt/linenoise/linenoise.h \
244-
$(S)src/rt/linenoise/utf8.h \
245242
$(wildcard $(S)src/rt/sundown/src/*.h) \
246243
$(wildcard $(S)src/rt/sundown/html/*.h) \
247244
,$(ALL_HS))

branches/dist-snap/src/README.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ rt/sync - Concurrency utils
1717
rt/util - Small utility classes for the runtime.
1818
rt/vg - Valgrind headers
1919
rt/msvc - MSVC support
20-
rt/linenoise - a readline-like line editing library
2120

2221
test/ Testsuite
2322
test/compile-fail - Tests that should fail to compile

branches/dist-snap/src/libextra/extra.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ pub mod term;
9494
pub mod time;
9595
pub mod arena;
9696
pub mod base64;
97-
pub mod rl;
9897
pub mod workcache;
9998
pub mod enum_set;
10099
#[path="num/bigint.rs"]

branches/dist-snap/src/libextra/rl.rs

Lines changed: 0 additions & 143 deletions
This file was deleted.

branches/dist-snap/src/rt/linenoise/README.markdown

Lines changed: 0 additions & 47 deletions
This file was deleted.

branches/dist-snap/src/rt/linenoise/example.c

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)