rcee_precompiled 0.5.0.1-x64-mingw-ucrt → 0.5.1-x64-mingw-ucrt
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/README.md +26 -5
- data/Rakefile +9 -4
- data/lib/rcee/precompiled/3.1/precompiled.so +0 -0
- data/lib/rcee/precompiled/3.2/precompiled.so +0 -0
- data/lib/rcee/precompiled/3.3/precompiled.so +0 -0
- data/lib/rcee/precompiled/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7c687549676ed304691c57100f0b9790648d31ae083c140d8901c86ae46facbb
|
4
|
+
data.tar.gz: e4622f58b30e2bbfcf7144760af06ebd2227324e20fc865aa8a07ab32dbccf0e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed42d3298f97bfb1df350ef671e755a699ac5bd25883e9706449f3a0603874714ce10ddcf2619f213e2c5ffacad2d61c70e90483a2b60832978890c16e6e2cb4
|
7
|
+
data.tar.gz: 6affd1e1aa30e429ba9bd0b69cbcc71c3b52ed143894e8d65cc3b44083fc0154918f8179714221de9cfb6cc522f50ee22a6a6d34ccdf4a8e3b63bebdc6de7c9e
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -28,13 +28,18 @@ First, we need to add some features to our `Rake::ExtensionTask` in `Rakefile`:
|
|
28
28
|
``` ruby
|
29
29
|
cross_rubies = ["3.3.0", "3.2.0", "3.1.0", "3.0.0"]
|
30
30
|
cross_platforms = [
|
31
|
-
"
|
31
|
+
"aarch64-linux-gnu",
|
32
|
+
"aarch64-linux-musl",
|
33
|
+
"arm-linux-gnu",
|
34
|
+
"arm-linux-musl",
|
35
|
+
"arm64-darwin",
|
32
36
|
"x64-mingw-ucrt",
|
33
|
-
"
|
34
|
-
"
|
35
|
-
"
|
37
|
+
"x64-mingw32",
|
38
|
+
"x86-linux-gnu",
|
39
|
+
"x86-linux-musl",
|
36
40
|
"x86_64-darwin",
|
37
|
-
"
|
41
|
+
"x86_64-linux-gnu",
|
42
|
+
"x86_64-linux-musl",
|
38
43
|
]
|
39
44
|
ENV["RUBY_CC_VERSION"] = cross_rubies.join(":")
|
40
45
|
|
@@ -161,6 +166,22 @@ end
|
|
161
166
|
Go ahead and try it! `gem install rcee_precompiled`. If you're on windows, linux, or macos you should get a precompiled version that installs in under a second. Everyone else (hello FreeBSD people!) it'll take a few more seconds to build the vanilla gem's packaged tarball.
|
162
167
|
|
163
168
|
|
169
|
+
### Windows notes
|
170
|
+
|
171
|
+
You may have noticed that the gem for `x64-mingw32` only contains `.../3.0/precompiled.so` and not a shared library for 3.1, 3.2, or 3.3. Conversely, the gem for `x64-mingw-ucrt` does *not* contain 3.0 (but contains 3.1..3.3 inclusive).
|
172
|
+
|
173
|
+
This is because the Windows installer for Ruby switched from `msvcrt` to `ucrt` for the C standard library. Rubies 3.0 and earlier use `msvcrt` but later Rubies use `ucrt`. So if you're on Ruby 3.0 on Windows, bundler will resolve your platform as `x64-mingw32`; but if you're on Ruby 3.1 or later, bundler will resolve your platform as `x64-mingw-ucrt`. See [the rubyinstaller release notes](https://rubyinstaller.org/2021/12/31/rubyinstaller-3.1.0-1-released.html) for more information.
|
174
|
+
|
175
|
+
This is all taken care of for you by `rake-compiler-dock` and there's no additional work necessary to create those specialized native gems. However, you'll see this libc transition in the CI testing matrix in `.github/workflows/precompiled.yml`.
|
176
|
+
|
177
|
+
|
178
|
+
### Linux notes
|
179
|
+
|
180
|
+
On Linux, the default C library for a long time was GNU libc, and so when you see native gem platforms like `x86_64-linux` the _implied_ libc is `gnu`. However, in recent years the `musl` libc project has gotten off the ground in distributions like Alpine. Often, `musl` systems are able to run code compiled on (and for) `gnu` systems; but not always. And in those incompatible cases, users had to work around it or avoid Alpine.
|
181
|
+
|
182
|
+
As of Rubygems 3.3.22, the `gem` and `bundle` tools are able to distinguish platforms by their libc type (e.g., `x86_64-linux-gnu` versus `x86_64-linux-musl`); and `rake-compiler-dock` started to be able to build `musl` native gems as of v1.5.0.
|
183
|
+
|
184
|
+
|
164
185
|
## Testing
|
165
186
|
|
166
187
|
See [.github/workflows/precompiled.yml](../.github/workflows/precompiled.yml)
|
data/Rakefile
CHANGED
@@ -8,17 +8,17 @@ require "rake_compiler_dock"
|
|
8
8
|
|
9
9
|
cross_rubies = ["3.3.0", "3.2.0", "3.1.0", "3.0.0"]
|
10
10
|
cross_platforms = [
|
11
|
-
"aarch64-linux",
|
11
|
+
"aarch64-linux-gnu",
|
12
12
|
"aarch64-linux-musl",
|
13
|
-
"arm-linux",
|
13
|
+
"arm-linux-gnu",
|
14
14
|
"arm-linux-musl",
|
15
15
|
"arm64-darwin",
|
16
16
|
"x64-mingw-ucrt",
|
17
17
|
"x64-mingw32",
|
18
|
-
"x86-linux",
|
18
|
+
"x86-linux-gnu",
|
19
19
|
"x86-linux-musl",
|
20
20
|
"x86_64-darwin",
|
21
|
-
"x86_64-linux",
|
21
|
+
"x86_64-linux-gnu",
|
22
22
|
"x86_64-linux-musl",
|
23
23
|
]
|
24
24
|
ENV["RUBY_CC_VERSION"] = cross_rubies.join(":")
|
@@ -42,6 +42,11 @@ Rake::ExtensionTask.new("precompiled", rcee_precompiled_spec) do |ext|
|
|
42
42
|
# remove things not needed for precompiled gems
|
43
43
|
spec.dependencies.reject! { |dep| dep.name == "mini_portile2" }
|
44
44
|
spec.files.reject! { |file| File.fnmatch?("*.tar.gz", file) }
|
45
|
+
|
46
|
+
if spec.platform.os == "linux"
|
47
|
+
# the `-gnu` suffix is not recognized in earlier versions of rubygems
|
48
|
+
spec.required_rubygems_version.concat([">= 3.3.22"])
|
49
|
+
end
|
45
50
|
end
|
46
51
|
end
|
47
52
|
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rcee_precompiled
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: x64-mingw-ucrt
|
6
6
|
authors:
|
7
7
|
- Mike Dalessio
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-01-28 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Part of a project to explain how Ruby C extensions work.
|
14
14
|
email:
|