You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The markdown package (e.g. required by knitr) does not work. When looking into it, it turns out there is some problem with compiling the c code. The compile task "works" in the sense that it completes but when executing the code the following error occurs: Exception calling rmd_render_markdown : Unsupported pointer store to a memory region allocated for primitives., This means something went wrong during compilation and we allocated the wrong type of storage.
During compilation, the following warning occurs:
Checking wether in Makevars CXX_STD is set to CXX11... no
touch 'markdown.so'
Warning: could not generate code for global variable smartypants_cb_ptrs: org.renjin.gcc.codegen.vptr.VPtrExpr cannot be cast to org.renjin.gcc.codegen.type.fun.FunPtrExpr
Warning: could not generate code for global variable markdown_char_ptrs: org.renjin.gcc.codegen.vptr.VPtrExpr cannot be cast to org.renjin.gcc.codegen.type.fun.FunPtrExpr
The markdown package (e.g. required by knitr) does not work. When looking into it, it turns out there is some problem with compiling the c code. The compile task "works" in the sense that it completes but when executing the code the following error occurs:
Exception calling rmd_render_markdown : Unsupported pointer store to a memory region allocated for primitives., This means something went wrong during compilation and we allocated the wrong type of storage.
During compilation, the following warning occurs:
The smartypants_cb_ptrs is defines as follows:
Whereas the markdown_char_ptrs is defined as:
Any ideas of how this might be fixed either by altering the c code or patching some part of the gcc-bridge?
I have forked the markdown project and added a pom.xml and a test to it here: https://github.com/perNyfelt/markdown
The text was updated successfully, but these errors were encountered: