Skip to content

Commit

Permalink
fix: Ignore dlmalloc, because it will link as malloc....
Browse files Browse the repository at this point in the history
  • Loading branch information
Berstanio committed Jul 2, 2024
1 parent be40d4f commit d3b0fc9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gdx-jnigen-runtime/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,8 @@ jnigen {
// Gnu11 is the only one that compiles for whatever reason
cFlags += " -std=gnu11 -fexceptions "
cIncludes += ["**/*.S"]
cExcludes = []
// DON'T COMMENT THIS OUT
cExcludes = ["**/dlmalloc.c"]
headerDirs = [file("jni/libFFI-iOS/include/")]
libraries = ""
}
Expand Down

0 comments on commit d3b0fc9

Please sign in to comment.