https://github.com/heldplayer/windows-cross-base
Repository containing the base Docker image for cross-compiling Windows apps from Linux using LLVM.
https://github.com/heldplayer/windows-cross-base
Last synced: 23 days ago
JSON representation
Repository containing the base Docker image for cross-compiling Windows apps from Linux using LLVM.
- Host: GitHub
- URL: https://github.com/heldplayer/windows-cross-base
- Owner: heldplayer
- License: mit
- Created: 2022-05-29T21:07:51.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-13T02:09:24.000Z (over 3 years ago)
- Last Synced: 2023-03-23T03:16:02.902Z (over 3 years ago)
- Language: Dockerfile
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# windows-cross-base
Repository containing the base Docker image for cross-compiling Windows apps from Linux using LLVM.
## Building the Docker container
I generally use the following command to build in bash:
```bash
docker build --tag=cross --build-arg USER_ID=$(id -u) --build-arg USER_GROUP=$(id -g) .
```
## Using the Docker container
The general usage pattern I used is to build the container, then when running it just dropping myself into a bash shell:
```bash
docker run --rm -it -v $(pwd):/data cross bash
```