Marco Antoniotti
Marco Antoniotti
Sorry. I am on the run. I will check it soon. I promise. Marco On Wed, May 27, 2015 at 7:29 AM, Michael Weber [email protected] wrote: > @marcoxa https://github.com/marcoxa, does...
Wow. I need to reconstruct what this is. Marco On Thu, Apr 21, 2022 at 11:01 AM Marco Heisig ***@***.***> wrote: > @marcoxa Any news on this issue? If I...
Hi, this is what I get from `c2ffi` on the file: ``` bash-3.2$ ./build/bin/c2ffi ../tests/test.cpp c2ffi warning: Unhandled environment: '' for triple '' [ { "tag": "const", "name": "BAR", "ns":...
Ok. Something is amiss. Here is a transcript (with some functions TRACEd) of what happens in an empty directory. If you run it a second time, `c2ffi` does not get...
And here is some smoke: ``` bash-3.2$ /Users/marcoxa/Projects/Software/c2ffi/c2ffi/build/bin/c2ffi cl-autowrap-test.h -D null -M zot.tmp -A i686-apple-darwin9 c2ffi warning: Unhandled environment: '' for triple 'i686-apple-darwin9' ``` The file `zot.tmp` is empty. Cheers...
Ok. I understand why the `zot.h` can be empty. I also see the other `.h` file with the includes. However, I do not see other `c2ffi` output. This is what...
The files are there but they are empty. I get the `.h` with the two `#include` (I suppose for each triple) but the included file (the second) is empty. I...
Now I get an error. ``` bash-3.2$ /Users/marcoxa/Projects/Software/c2ffi/c2ffi/build/bin/c2ffi /var/folders/l4/b71hhwhj3f375fqgpw1r_f8c0000gp/T/tmp81CU61X.tmp -o `pwd`/cl-autowrap-test.i686-apple-darwin9.spec -A i686-apple-darwin9 c2ffi warning: Unhandled environment: '' for triple 'i686-apple-darwin9' /var/folders/l4/b71hhwhj3f375fqgpw1r_f8c0000gp/T/tmp81CU61X.tmp:1:10: fatal error: 'cl-autowrap-test.h' file not found #include "cl-autowrap-test.h"...
Ok. Looks like adding manually the `-I .` to `c2ffi` is part of the magic incantation. Here is the transcript: ``` bash-3.2$ /Users/marcoxa/Projects/Software/c2ffi/c2ffi/build/bin/c2ffi \ > /var/folders/l4/b71hhwhj3f375fqgpw1r_f8c0000gp/T/tmpP8PIUX9B.tmp \ > -o cl-autowrap-test.i686-apple-darwin9.spec...
Hi seems like you have to add `:sysinclude (list "./")` to `c-include`. Marco