Skip to content

Instantly share code, notes, and snippets.

View uweschmitt's full-sized avatar

Uwe Schmitt uweschmitt

  • ETH Zürich
  • Zürich - Switzerland
View GitHub Profile
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.9/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.9.2-10' --with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.9 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-amd64 --with-arch-directory=amd64 --with-ecj-jar
unsorted:
['0.0313', '0.0191', '0.0302', '0.0300', '0.0508', '0.0198', '0.0166', '0.0239', '0.0302', '0.0205', '0.0244', '0.0411', '0.0186', '0.0197', '0.0335', '0.0282', '0.0188', '0.0277', '0.0266', '0.0179', '0.0174', '0.0270', '0.0182', '0.0221', '0.0173', '0.0242', '0.0224', '0.0319', '0.0437', '0.0490', '0.0244', '0.0200', '0.0348', '0.0298', '0.0222', '0.0280', '0.0176', '0.0171', '0.0370', '0.0164', '0.0218', '0.0273', '0.0267', '0.0314', '0.0350', '0.0309', '0.0171', '0.0190', '0.0348', '0.0284', '0.0354', '0.0311', '0.0277', '0.0339', '0.0186', '0.0385', '0.0257', '0.0320', '0.0317', '0.0302', '0.0197', '0.0227', '0.0162', '0.0198', '0.0281', '0.0121', '0.0477', '0.0160', '0.0287', '0.0430', '0.0187', '0.0212', '0.0357', '0.0193', '0.0359', '0.0409', '0.0293', '0.0273', '0.0229', '0.0269', '0.0182', '0.0312', '0.0264', '0.0225', '0.0394', '0.0367', '0.0302', '0.0236', '0.0201', '0.0284', '0.0319', '0.0359', '0.0404', '0.0278', '0.0210', '0.0259', '0.0174', '0.0283', '0.0185', '0.0273']
sorted:
['
@uweschmitt
uweschmitt / gist:4563294
Last active December 11, 2015 06:59
The following code demonstrates a problem discussed on https://groups.google.com/forum/?fromgroups#!forum/cython-users If one runs "cython --cplus ...." on this file the last function produces an error message.
cdef extern from "*":
3
4 cdef cppclass A:
5 A()