Aditya Siram

Results 138 comments of Aditya Siram

What is the output of `fltk-config --ldstaticflags --use-gl --use-images --use-glut`? That is the command `fltkhs` uses to determine the location of the libraries.

Yes, I think I see the problem. This is a bug. When building it expects `fltk_gl` etc. to be in a place that can be found using `AC_CHECK_LIB` but this...

This is happening because the Arch package isn't installing the statically linked versions of those libs which are required by `fltkhs`. That's why the installation instructions suggest building from source...

@redneb, I fixed your issue sometime ago. Would you mind reviewing and closing? @mrak, did that work for you?

@tmcdonell Not sure if this helps but when I wanted to link with a static archive produced in my library in my app I had to add the following line...

I am unable to reproduce this. What version of `gcc` are you running?

That's pretty odd. Unfortunately I don't have a Fedora 29 distribution at my disposal so I'm unable to reproduce but I'll leave it open in case someone else does.

Thanks for this awesome bug report. Although I don't know much about inline ASM (`__asm__ (...)`) I was able to get `c2hs` to read this file when I passed `cc-options:...

Is there a reason you can't make your C2HS modules `Internal` and only export the ones you care about in some public facing one? I understand this isn't ideal but...

Did you mean `{#export c_fun#}` or does `{#export#}` mean to export all the C2HS generated functions?