Author: Laurence Tratt <[email protected]>
Branch:
Changeset: r63754:dbd71b24f537
Date: 2013-04-29 17:53 +0200
http://bitbucket.org/pypy/pypy/changeset/dbd71b24f537/
Log: The default compiler on OpenBSD isn't clang.
There's no reason to hard-code a compiler name: cc will always point
to the operating system blessed compiler.
diff --git a/rpython/translator/platform/openbsd.py
b/rpython/translator/platform/openbsd.py
--- a/rpython/translator/platform/openbsd.py
+++ b/rpython/translator/platform/openbsd.py
@@ -5,6 +5,7 @@
from rpython.translator.platform.bsd import BSD
class OpenBSD(BSD):
+ DEFAULT_CC = "cc"
name = "openbsd"
link_flags = os.environ.get("LDFLAGS", '-pthread').split()
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit