Andras Fekete 5e85adee0f Add yet another cross compiling tool | il y a 6 mois | |
---|---|---|
.. | ||
OpenWrt | il y a 1 an | |
packaging | il y a 1 an | |
wolfCLU | il y a 1 an | |
yocto | il y a 7 mois | |
Dockerfile | il y a 7 mois | |
Dockerfile.cross-compiler | il y a 6 mois | |
README.md | il y a 1 an | |
buildAndPush.sh | il y a 1 an | |
include.am | il y a 1 an | |
run.sh | il y a 1 an |
This is a Docker environment for compiling, testing and running WolfSSL. Use run.sh
to build everything (Docker container, WolfSSL, etc.). This script takes in arguments that can be passed to ./configure
. For example: run.sh --enable-all
When the compilation and tests succeed, you will be dropped in to a shell environment within the container. This can be useful to build other things within the environment. Additional tests can be run as well as debugging of code.
These images are also uploaded to the wolfSSL's Docker Hub page. There is a convenience script here buildAndPush.sh
that will create the appropriate containers and push them to the repo.
You need to be added to the docker
group to run Docker containers. Run sudo usermod -aG docker $USER
. You may need to restart the Docker daemon.
The volume mounted in the Docker container needs to have all files that your compilation will need. To solve this, you have a couple options:
WOLFSSL_DIR
variable in the run.sh
to one higher up (by adding /..
to the path). Then update the docker build
to include the correct path to the Dockerfile and the docker run
argument to the working directory (-w
) to the WolfSSL source directoryexternal
folder which has your files. This route may have complications when stashing Git work.