edhu
10/10/2020, 4:17 PMheaders = gumbo.h curl/curl.h
headerFilter = gumbo/* curl/*
compilerOpts.linux = -I/usr/include -I/usr/include/x86_64-linux-gnu -I/usr/local/Cellar/gumbo-parser/0.10.1/include
compilerOpts.osx = -I/usr/include -I/usr/include/x86_64-linux-gnu -I/usr/local/Cellar/gumbo-parser/0.10.1/include
linkerOpts.osx = -L/opt/local/lib -L/usr/local/opt/curl/lib -lcurl -L/usr/local/Cellar/gumbo-parser/0.10.1/lib -lgumbo
linkerOpts.linux = -L/usr/lib/x86_64-linux-gnu -lcurl
there are no compile errors. curl interops are still generated. but there is nothing for gumbo. this is all using the gradle plugin in intellij for macosx64.
since this is not outputting anything for gumbo parser, i did it manually:
cinterop -def interop.def -o gumbo
and then:
klib contents gumbo
and this also outputs nothing. if i try it manually for curl it does output all the info.
why is there nothing happening for gumbo parser?
thanks in advance!msink
10/10/2020, 5:12 PMheaderFilter = gumbo.h curl/*
edhu
10/10/2020, 7:49 PM