[pypy-commit] pypy default: Add GNU/kFreeBSD platform description that was accidentally deleted

stefanor noreply at buildbot.pypy.org
Sat May 18 22:32:37 CEST 2013


Author: Stefano Rivera <stefano at rivera.za.net>
Branch: 
Changeset: r64285:35005b65ed35
Date: 2013-05-18 21:05 +0200
http://bitbucket.org/pypy/pypy/changeset/35005b65ed35/

Log:	Add GNU/kFreeBSD platform description that was accidentally deleted

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
@@ -12,3 +12,9 @@
 
 class Freebsd_64(Freebsd):
     shared_only = ('-fPIC',)
+
+class GNUkFreebsd(Freebsd):
+    extra_libs = ('-lrt',)
+
+class GNUkFreebsd_64(Freebsd_64):
+    extra_libs = ('-lrt',)


More information about the pypy-commit mailing list