https://github.com/andriykalashnykov/quadmath-cross
Cross compile quadmath
https://github.com/andriykalashnykov/quadmath-cross
aarch64 arm64 c clang cpp cross-platform quadmath
Last synced: 8 months ago
JSON representation
Cross compile quadmath
- Host: GitHub
- URL: https://github.com/andriykalashnykov/quadmath-cross
- Owner: AndriyKalashnykov
- Created: 2024-10-31T22:52:41.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-02-19T18:38:46.000Z (8 months ago)
- Last Synced: 2025-02-24T06:49:53.600Z (8 months ago)
- Topics: aarch64, arm64, c, clang, cpp, cross-platform, quadmath
- Language: C++
- Homepage:
- Size: 69.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# quadmath-cross
Cross compile quadmath
## Build docker images
Build `amd64` `builder` image first
```bash
docker build --platform linux/amd64 -f Dockerfile.builder -t docker.io/anriykalashnykov/quadmath-cross:v0.0.1-builder .
```Build `arm64` `runtime` image from `amd64` `builder` image
```bash
docker build -f Dockerfile.runtme.local -t docker.io/anriykalashnykov/quadmath-cross:v0.0.1-runtime .
```## Run docker image
Run `arm64` `runtime` image
```bash
docker run -it --rm --platform linux/arm64 docker.io/anriykalashnykov/quadmath-cross:v0.0.1-runtime /bin/sh
```