Skip to content

Commit 190ec9b

Browse files
committed
v1.59.0
- libpq 14.2 - osxcross be2b79f
1 parent b408d49 commit 190ec9b

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ By default the working directory is `/root/src`.
3838
docker run --rm \
3939
--volume "${PWD}/sample":/root/src \
4040
--workdir /root/src \
41-
joseluisq/rust-linux-darwin-builder:1.58.1 \
41+
joseluisq/rust-linux-darwin-builder:1.59.0 \
4242
sh -c "cargo build --release"
4343
```
4444

@@ -50,7 +50,7 @@ docker run --rm \
5050
docker run --rm \
5151
--volume "${PWD}/sample":/root/src \
5252
--workdir /root/src \
53-
joseluisq/rust-linux-darwin-builder:1.58.1 \
53+
joseluisq/rust-linux-darwin-builder:1.59.0 \
5454
sh -c "cargo build --release --target x86_64-apple-darwin"
5555
```
5656

@@ -63,7 +63,7 @@ It's known that the [`CARGO_HOME`](https://doc.rust-lang.org/cargo/guide/cargo-h
6363
You can also use the image as a base for your own Dockerfile:
6464

6565
```Dockerfile
66-
FROM joseluisq/rust-linux-darwin-builder:1.58.1
66+
FROM joseluisq/rust-linux-darwin-builder:1.59.0
6767
```
6868

6969
### OSXCross
@@ -106,7 +106,7 @@ compile:
106106
@docker run --rm -it \
107107
-v $(PWD):/drone/src \
108108
-w /drone/src \
109-
joseluisq/rust-linux-darwin-builder:1.58.1 \
109+
joseluisq/rust-linux-darwin-builder:1.59.0 \
110110
make cross-compile
111111
.PHONY: compile
112112

@@ -131,13 +131,13 @@ Just run the makefile `compile` target, then you will see two release binaries `
131131
make compile
132132
# 1. Cross compiling example...
133133

134-
# rustc 1.58.1 (db9d1b20b 2022-01-20)
134+
# rustc 1.59.0 (9d1b2106e 2022-02-23)
135135
# binary: rustc
136-
# commit-hash: db9d1b20bba1968c1ec1fc49616d4742c1725b4b
137-
# commit-date: 2022-01-20
138-
# host: x86_64-unknown-linux-gnu
139-
# release: 1.58.1
140-
# LLVM version: 13.0.0
136+
# commit-hash: 9d1b2106e23b1abd32fce1f17267604a5102f57a
137+
# commit-date: 2022-02-23
138+
# host: x86_64-apple-darwin
139+
# release: 1.59.0
140+
# LLVM version: 13.0.
141141

142142
# 2. Compiling application (linux-musl x86_64)...
143143
# Finished release [optimized] target(s) in 0.01s

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ ARG OPENSSL_VERSION=1.1.1l
2424
ARG ZLIB_VERSION=1.2.11
2525

2626
# libpq - https://ftp.postgresql.org/pub/source/
27-
ARG POSTGRESQL_VERSION=14.1
27+
ARG POSTGRESQL_VERSION=14.2
2828

2929
# Mac OS X SDK version - https://github.com/joseluisq/macosx-sdks
3030
ARG OSX_SDK_VERSION=12.0
3131
ARG OSX_SDK_SUM=ac07f28c09e6a3b09a1c01f1535ee71abe8017beaedd09181c8f08936a510ffd
3232
ARG OSX_VERSION_MIN=10.14
3333

3434
# OS X Cross - https://github.com/tpoechtrager/osxcross
35-
ARG OSX_CROSS_COMMIT=062922bbb81ac52787d8e53fa4af190acb552ec7
35+
ARG OSX_CROSS_COMMIT=be2b79f444aa0b43b8695a4fb7b920bf49ecc01c
3636

3737
# Make sure we have basic dev tools for building C libraries. Our goal
3838
# here is to support the musl-libc builds and Cargo builds needed for a

0 commit comments

Comments
 (0)