Update Readme with info on fixing C99/C11 issues on OSX
This commit is contained in:
parent
fe480153ea
commit
03d29e4c15
1 changed files with 10 additions and 0 deletions
10
README.md
10
README.md
|
@ -62,3 +62,13 @@ Now run the server; it will use sqlite as the SQL server.
|
||||||
|
|
||||||
Now quay will be running on: http://127.0.0.1:5000
|
Now quay will be running on: http://127.0.0.1:5000
|
||||||
The username is `devtable` and the password is `password`.
|
The username is `devtable` and the password is `password`.
|
||||||
|
|
||||||
|
Some packages may fail to build with clang (which now defaults to C11).
|
||||||
|
They can be installed with C99 with:
|
||||||
|
|
||||||
|
```
|
||||||
|
CFLAGS='-std=c99' pip install --no-cache --no-binary :all: gevent
|
||||||
|
CFLAGS='-std=c99' pip install --no-cache --no-binary :all: cffi
|
||||||
|
CFLAGS='-std=c99' pip install --no-cache --no-binary :all: cryptography
|
||||||
|
```
|
||||||
|
|
||||||
|
|
Reference in a new issue