[pypy-svn] pypy default: Remove 'separate_module_sources', which seems to be useless because

arigo commits-noreply at bitbucket.org
Mon Feb 14 13:55:54 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r41897:5951571530f3
Date: 2011-02-14 13:54 +0100
http://bitbucket.org/pypy/pypy/changeset/5951571530f3/

Log:	Remove 'separate_module_sources', which seems to be useless because
	compiling a .c file with only these #include has no effect.

diff --git a/pypy/rlib/rdtoa.py b/pypy/rlib/rdtoa.py
--- a/pypy/rlib/rdtoa.py
+++ b/pypy/rlib/rdtoa.py
@@ -15,11 +15,6 @@
     includes = ['src/dtoa.h'],
     libraries = [],
     separate_module_files = [cdir / 'src' / 'dtoa.c'],
-    separate_module_sources = ['''
-       #include <stdlib.h>
-       #include <assert.h>
-       #include "src/allocator.h"
-    '''],
     export_symbols = ['_PyPy_dg_strtod',
                       '_PyPy_dg_dtoa',
                       '_PyPy_dg_freedtoa',


More information about the Pypy-commit mailing list