Skip to content

Commit e88c7b2

Browse files
Merge #454
454: Bump README custom-container cross version to incorporate fixes r=therealprof a=theunkn0wn1 The custom dockerfile example in the README targets cross version 0.1.16, [and is known to not actually work as-is](3b07a08). The fix for this particular issue was released with cross 0.2, thus this PR bumps the cross version. This became an issue in my use case as I wanted to cross-compile to a raspberry Pi, and needed to install some external libraries not included in the base images, and ran into issues such as #149 and #35 while attempting to follow the recommendation in the readme. Bumping the cross version to 0.2.x resolved the above issues for me, and this PR is to help other users that may find themselves running into the same issues when following the readme closely. Co-authored-by: joshua salzedo <[email protected]>
2 parents 699f07a + 3aeb79e commit e88c7b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ This way you won't have to figure out how to install a cross C toolchain in your
112112
custom image. Example below:
113113

114114
``` Dockerfile
115-
FROM rustembedded/cross:aarch64-unknown-linux-gnu-0.1.16
115+
FROM rustembedded/cross:aarch64-unknown-linux-gnu-0.2.1
116116

117117
RUN dpkg --add-architecture arm64 && \
118118
apt-get update && \

0 commit comments

Comments
 (0)