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
Misleading output of --help regarding --with options
When .configure the package, in the help it is written that options to provide STK and SndObj headers are --with-stk and --witch-sndobj, however configure script doesn't recognize them.
I figured out that correct options are similar to --with-sdkdir and need to include dir in the end: --with-stkdir and --with-sndobjdir
Final command that worked for me:
Include dirs messed up
After ./configure script succeeded and both SndObj and STK were enabled (I inspected configure.status and Makefile) actual compilation fails with error
flbase.cpp:31:22: fatal error: g_canvas.h: No such file or directory
that apparently means that somehow even if configure script confirmed the file exists (it actually exists, I checked), include dirs are not properly passed to the compiler.
Further investigation confirms that SndObj and STK include paths somehow overwrite instead of appending to include path given to compiler, because building flext without them succeeds.
Building via build.sh works without problem
The text was updated successfully, but these errors were encountered:
philtgun
changed the title
Configure "--with" options slightly incorrect
Autoconf installation --with-stk and --with-sndobj buggy
Aug 16, 2016
Misleading output of --help regarding --with options
When
.configure
the package, in the help it is written that options to provide STK and SndObj headers are--with-stk
and--witch-sndobj
, however configure script doesn't recognize them.I figured out that correct options are similar to
--with-sdkdir
and need to includedir
in the end:--with-stkdir
and--with-sndobjdir
Final command that worked for me:
Include dirs messed up
After
./configure
script succeeded and both SndObj and STK were enabled (I inspectedconfigure.status
andMakefile
) actual compilation fails with errorthat apparently means that somehow even if configure script confirmed the file exists (it actually exists, I checked), include dirs are not properly passed to the compiler.
Further investigation confirms that SndObj and STK include paths somehow overwrite instead of appending to include path given to compiler, because building flext without them succeeds.
Building via
build.sh
works without problemThe text was updated successfully, but these errors were encountered: