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
I'm trying to put together a build script for AST for vcpkg, which will make building and distributing AST-based software on Windows platforms far simpler. I've run into a few gcc-specific functions in the code, and I've attached a patch to fix these. The other build issue is that the Makefile.in file is missing a few $(EXEEXT) values.
An explicit cast to void, rather than to void* when using astSetSourceVel
@dsberry please see attached zip for patches to fix these issues. I'm not sure if this is the correct solution though. Should Makefile.in or Makefile.am be changed?
@veggiesaurus I've committed those patches. Although you're right that the $(EXEEXT) change needs to be made to Makefile.am rather than Makefile.in. Thanks for sending thsepatches.
I'm trying to put together a build script for AST for vcpkg, which will make building and distributing AST-based software on Windows platforms far simpler. I've run into a few gcc-specific functions in the code, and I've attached a patch to fix these. The other build issue is that the Makefile.in file is missing a few $(EXEEXT) values.
The specific issues are:
void*
pointer is only allowed in GCC (See https://stackoverflow.com/questions/3523145/pointer-arithmetic-for-void-pointer-in-c)void
, rather than tovoid*
when usingastSetSourceVel
@dsberry please see attached zip for patches to fix these issues. I'm not sure if this is the correct solution though. Should
Makefile.in
orMakefile.am
be changed?patches_ast.zip
The text was updated successfully, but these errors were encountered: