Author: Brian Kearns <[email protected]>
Branch:
Changeset: r75255:7ee4207de06d
Date: 2015-01-07 19:38 -0500
http://bitbucket.org/pypy/pypy/changeset/7ee4207de06d/
Log: try to fix freebsd translation
diff --git a/rpython/translator/platform/freebsd.py
b/rpython/translator/platform/freebsd.py
--- a/rpython/translator/platform/freebsd.py
+++ b/rpython/translator/platform/freebsd.py
@@ -6,9 +6,12 @@
class Freebsd(BSD):
name = "freebsd"
- link_flags = ['-pthread'] + os.environ.get('LDFLAGS', '').split()
- cflags = ['-O3', '-pthread', '-fomit-frame-pointer'
- ] + os.environ.get('CFLAGS', '').split()
+ link_flags = tuple(
+ ['-pthread'] +
+ os.environ.get('LDFLAGS', '').split())
+ cflags = tuple(
+ ['-O3', '-pthread', '-fomit-frame-pointer'] +
+ os.environ.get('CFLAGS', '').split())
class Freebsd_64(Freebsd):
shared_only = ('-fPIC',)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit