Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r2726:c189e6d62f6b
Date: 2016-07-18 16:53 +0200
http://bitbucket.org/cffi/cffi/changeset/c189e6d62f6b/

Log:    Issue #271: in the test, call "cc" instead of "gcc", in case gcc
        isn't installed but another compiler is.

diff --git a/testing/cffi0/test_ownlib.py b/testing/cffi0/test_ownlib.py
--- a/testing/cffi0/test_ownlib.py
+++ b/testing/cffi0/test_ownlib.py
@@ -129,7 +129,7 @@
                 cls.module = str(udir.join('testownlib.dll'))
         else:
             subprocess.check_call(
-                'gcc testownlib.c -shared -fPIC -o testownlib.so',
+                'cc testownlib.c -shared -fPIC -o testownlib.so',
                 cwd=str(udir), shell=True)
             cls.module = str(udir.join('testownlib.so'))
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to