Update Readme with info on fixing C99/C11 issues on OSX

This commit is contained in:
Evan Cordell 2016-04-05 14:18:01 -04:00
parent fe480153ea
commit 03d29e4c15

View file

@ -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
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
```