Displaying 2 results from an estimated 2 matches for "64031".
Did you mean:
4031
2013 Oct 06
1
R 3.1.0 and C++11
...e/autoconf-archive/ax_cxx_compile_stdcxx_11.html
and made a one-line change to configure.ac (indented two spaces just for email)
edd at max:~/svn/r-devel$ svn di configure.ac
Index: configure.ac
===================================================================
--- configure.ac (revision 64031)
+++ configure.ac (working copy)
@@ -906,6 +906,7 @@
AC_LANG_PUSH(C++)
AC_OPENMP
+AX_CXX_COMPILE_STDCXX_11(noext)
AC_LANG_POP(C++)
### *** ObjC compiler
edd at max:~/svn/r-devel$
After running 'aclocal -Im4; autoheader; autoconf', the configure test then
properly d...
2013 Aug 01
0
[LLVMdev] Tail calls (TCO) in PNaCL | PNaCl Bitcode reference manual
I'm not familiar with PNaCl but, FWIW, I'd say the three main advancements
the CLR made over the JVM are:
. Structs (aka value types).
. Reified generics.
http://research.microsoft.com/pubs/64031/designandimplementationofgenerics.p
df
. Tail call elimination.
http://research.microsoft.com/pubs/69132/babel01.pdf
Structs give you more freedom around memory representation (e.g. the CLR can
represent an array of pairs of floats and ints in a single contiguous block
of memory whereas...