You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,10 +4,11 @@
4
4
5
5
> Use same Docker image for compiling [Rust](https://www.rust-lang.org/) programs for Linux ([musl libc](https://doc.rust-lang.org/edition-guide/rust-2018/platform-and-target-support/musl-support-for-fully-static-binaries.html)) & macOS ([osxcross](https://github.com/tpoechtrager/osxcross)).
6
6
7
-
## OpenSSL Release Notes
7
+
####OpenSSL Release Notes
8
8
9
-
Until `v1.42.0` of this project, one old OpenSSL release `v1.0.2` was used.
10
-
Now, since `v1.43.x` or greater, OpenSSL `v1.1.1` (LTS) is used which is supported until `2023-09-11`. View more at https://www.openssl.org/policies/releasestrat.html.
9
+
> _Until `v1.42.0` of this project, one old OpenSSL release `v1.0.2` was used._ <br>
10
+
> _Now, since `v1.43.x` or greater, OpenSSL `v1.1.1` (LTS) is used which is supported until `2023-09-11`. <br>
11
+
> View more at https://www.openssl.org/policies/releasestrat.html._
11
12
12
13
## Overview
13
14
@@ -25,7 +26,7 @@ By default the working directory is `/root/src`.
25
26
docker run --rm \
26
27
--volume "${PWD}/sample":/root/src \
27
28
--workdir /root/src \
28
-
joseluisq/rust-linux-darwin-builder:1.50.0 \
29
+
joseluisq/rust-linux-darwin-builder:1.51.0 \
29
30
sh -c "cargo build --release"
30
31
```
31
32
@@ -35,7 +36,7 @@ docker run --rm \
35
36
docker run --rm \
36
37
--volume "${PWD}/sample":/root/src \
37
38
--workdir /root/src \
38
-
joseluisq/rust-linux-darwin-builder:1.50.0 \
39
+
joseluisq/rust-linux-darwin-builder:1.51.0 \
39
40
sh -c "cargo build --release --target x86_64-apple-darwin"
40
41
```
41
42
@@ -44,7 +45,7 @@ docker run --rm \
44
45
You can also use the image as a base for your own Dockerfile:
0 commit comments