@@ -26,7 +26,7 @@ By default the working directory is `/root/src`.
2626docker run --rm \
2727 --volume " ${PWD} /sample" :/root/src \
2828 --workdir /root/src \
29- joseluisq/rust-linux-darwin-builder:1.53 .0 \
29+ joseluisq/rust-linux-darwin-builder:1.54 .0 \
3030 sh -c " cargo build --release"
3131```
3232
@@ -36,7 +36,7 @@ docker run --rm \
3636docker run --rm \
3737 --volume " ${PWD} /sample" :/root/src \
3838 --workdir /root/src \
39- joseluisq/rust-linux-darwin-builder:1.53 .0 \
39+ joseluisq/rust-linux-darwin-builder:1.54 .0 \
4040 sh -c " cargo build --release --target x86_64-apple-darwin"
4141```
4242
@@ -45,7 +45,7 @@ docker run --rm \
4545You can also use the image as a base for your own Dockerfile:
4646
4747``` Dockerfile
48- FROM joseluisq/rust-linux-darwin-builder:1.53 .0
48+ FROM joseluisq/rust-linux-darwin-builder:1.54 .0
4949```
5050
5151### OSXCross
@@ -54,22 +54,22 @@ You can also use o32-clang(++) and o64-clang(++) like a normal compiler.
5454
5555__ Notes:__
5656
57- - The current * 11.1 SDK* does not support i386 anymore. Use <= 10.13 SDK if you rely on i386 support.
58- - The current * 11.1 SDK* does not support libstdc++ anymore. Use <= 10.13 SDK if you rely on libstdc++ support.
57+ - The current * 11.3 SDK* does not support i386 anymore. Use <= 10.13 SDK if you rely on i386 support.
58+ - The current * 11.3 SDK* does not support libstdc++ anymore. Use <= 10.13 SDK if you rely on libstdc++ support.
5959
6060Examples:
6161
6262``` sh
6363Example usage:
6464
65- Example 1: CC=o32-clang ./configure --host=i386-apple-darwin20.2
66- Example 2: CC=i386-apple-darwin20.2 -clang ./configure --host=i386-apple-darwin20.2
65+ Example 1: CC=o32-clang ./configure --host=i386-apple-darwin20.4
66+ Example 2: CC=i386-apple-darwin20.4 -clang ./configure --host=i386-apple-darwin20.4
6767Example 3: o64-clang -Wall test.c -o test
68- Example 4: x86_64-apple-darwin20.2 -strip -x test
68+ Example 4: x86_64-apple-darwin20.4 -strip -x test
6969
70- !!! Use aarch64-apple-darwin20.2 -* instead of arm64-* when dealing with Automake !!!
71- !!! CC=aarch64-apple-darwin20.2 -clang ./configure --host=aarch64-apple-darwin20.2 !!!
72- !!! CC=" aarch64-apple-darwin20.2 -clang -arch arm64e" ./configure --host=aarch64-apple-darwin20.2 !!!
70+ !!! Use aarch64-apple-darwin20.4 -* instead of arm64-* when dealing with Automake !!!
71+ !!! CC=aarch64-apple-darwin20.4 -clang ./configure --host=aarch64-apple-darwin20.4 !!!
72+ !!! CC=" aarch64-apple-darwin20.4 -clang -arch arm64e" ./configure --host=aarch64-apple-darwin20.4 !!!
7373```
7474
7575### Cross-compilation example
0 commit comments