Update INSTALL because of the (USE/DISABLE)_CYTHON env var change

This commit is contained in:
Kai Huuhko 2014-05-16 10:14:15 +03:00
parent b6f2a6822f
commit 5b51428bc8
1 changed files with 4 additions and 5 deletions

View File

@ -26,9 +26,8 @@
-----------------------
Once EFL is built and installed in your desired destination, proceed with
building the wrapper. If you downloaded a tarball with pre-generated
C sources you can proceed to use those, or force distutils to use pyx
sources by setting the environment variable USE_CYTHON to 1.
building the wrapper. The setup script can be forced to use purely C
sources by setting the environment variable DISABLE_CYTHON to 1.
* BUILDING WITH GCC/G++ (Linux, OS X, etc.)
@ -43,9 +42,9 @@
python setup.py build -c mingw32
* FORCING PYX SOURCES FOR BUILD
* FORCING C SOURCES FOR BUILD
env USE_CYTHON=1 python setup.py build
env DISABLE_CYTHON=1 python setup.py build