https://github.com/tktech/manylinux
A derived manylinux image with newer versions of GCC baked in.
https://github.com/tktech/manylinux
Last synced: 16 days ago
JSON representation
A derived manylinux image with newer versions of GCC baked in.
- Host: GitHub
- URL: https://github.com/tktech/manylinux
- Owner: TkTech
- Created: 2019-10-21T18:53:00.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-21T18:57:32.000Z (over 6 years ago)
- Last Synced: 2025-10-26T02:44:53.738Z (5 months ago)
- Language: Dockerfile
- Size: 0 Bytes
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Manylinux
This repository is used to build images derived from
https://github.com/pypa/manylinux that include newer versions of GCC pre-baked.
You can find pre-built images at
https://hub.docker.com/r/tktechdocker/manylinux.
You'll likely need to update your build steps to include at least the
following, changing the path for the version of GCC you're using:
```
export CFLAGS="-static-libstdc++"
export CC=/usr/local/gcc-8.3.0/bin/gcc-8.3.0
export CXX=/usr/local/gcc-8.3.0/bin/g++-8.3.0
```