From 03d29e4c154500b923beaf541b7737fbab5dc6e3 Mon Sep 17 00:00:00 2001 From: Evan Cordell Date: Tue, 5 Apr 2016 14:18:01 -0400 Subject: [PATCH] Update Readme with info on fixing C99/C11 issues on OSX --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index c09a7a367..ed3383737 100644 --- a/README.md +++ b/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 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 +``` +