Author: Wim Lavrijsen <[email protected]> Branch: reflex-support Changeset: r52787:75af268bf2bc Date: 2012-02-22 16:30 -0800 http://bitbucket.org/pypy/pypy/changeset/75af268bf2bc/
Log: required linkdef for CINT diff --git a/pypy/module/cppyy/test/std_streams_LinkDef.h b/pypy/module/cppyy/test/std_streams_LinkDef.h new file mode 100644 --- /dev/null +++ b/pypy/module/cppyy/test/std_streams_LinkDef.h @@ -0,0 +1,9 @@ +#ifdef __CINT__ + +#pragma link off all globals; +#pragma link off all classes; +#pragma link off all functions; + +#pragma link C++ class std::ostream; + +#endif _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
