Skip to content

Commit b400852

Browse files
committed
Add ripgrep-14.1.1-tiny benchmark.
1 parent ee1a3d6 commit b400852

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+26700
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# On Windows MSVC, statically link the C runtime so that the resulting EXE does
2+
# not depend on the vcruntime DLL.
3+
#
4+
# See: https://github.com/BurntSushi/ripgrep/pull/1613
5+
[target.x86_64-pc-windows-msvc]
6+
rustflags = ["-C", "target-feature=+crt-static"]
7+
[target.i686-pc-windows-msvc]
8+
rustflags = ["-C", "target-feature=+crt-static"]
9+
10+
# Do the same for MUSL targets. At the time of writing (2023-10-23), this is
11+
# the default. But the plan is for the default to change to dynamic linking.
12+
# The whole point of MUSL with respect to ripgrep is to create a fully
13+
# statically linked executable.
14+
#
15+
# See: https://github.com/rust-lang/compiler-team/issues/422
16+
# See: https://github.com/rust-lang/compiler-team/issues/422#issuecomment-812135847
17+
[target.x86_64-unknown-linux-musl]
18+
rustflags = [
19+
"-C", "target-feature=+crt-static",
20+
"-C", "link-self-contained=yes",
21+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"git": {
3+
"sha1": "4649aa9700619f94cf9c66876e9549d83420e16c"
4+
},
5+
"path_in_vcs": ""
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
.*.swp
2+
tags
3+
target
4+
/grep/Cargo.lock
5+
/globset/Cargo.lock
6+
/ignore/Cargo.lock
7+
/termcolor/Cargo.lock
8+
/wincolor/Cargo.lock
9+
/deployment
10+
/.idea
11+
12+
# Snapcraft files
13+
stage
14+
prime
15+
parts
16+
*.snap
17+
*.pyc
18+
ripgrep*_source.tar.bz2
19+
20+
# Cargo timings
21+
cargo-timing-*.html
22+
cargo-timing.html
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
!/.github/

collector/compile-benchmarks/ripgrep-14.1.1-tiny/CHANGELOG.md

+1,711
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
This project is dual-licensed under the Unlicense and MIT licenses.
2+
3+
You may use this code under the terms of either license.

0 commit comments

Comments
 (0)