-
Notifications
You must be signed in to change notification settings - Fork 423
Closed
Labels
Description
I'd like to use an official image like centos/devtoolset-7-toolchain-centos7
, which I can do by adding to my Cross.toml
. However, the image doesn't come with openssl
installed. It seems like overkill to have to create and maintain a Dockerfile, then add an extra build script to my CI just to get openssl
.
Instead, would it be possible to do something like this?
[target.x86_64-unknown-linux-gnu]
image = "centos/devtoolset-7-toolchain-centos7"
pre-build = "yum install openssl-devel"
ciffelia, yujqiao and stopdesignleet4tari