From 2b9347b8f69a87246723502fe9f1db87429a0778 Mon Sep 17 00:00:00 2001 From: Andres Noetzli Date: Sun, 10 Dec 2017 00:48:05 -0800 Subject: Fix issue with mkConst/getConst of TypeConstant (#1439) When compiling the Java bindings on macOS, the linker complained about CVC4::ExprManager::mkConst() and CVC4::Expr::getConst() being undefined. After some research, I found that the issue has been introduced by commit 36bf9f8bcb2a1a3aea1f90eb4d13aed3bbf6da8f. It looks like adding the -no-undefined flags resulted in the symbols in question being omitted due to TypeConstant not being exported. This commit makes TypeConstant CVC4_PUBLIC, which fixes the issue. --- src/expr/kind_template.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/expr') diff --git a/src/expr/kind_template.h b/src/expr/kind_template.h index 170f51df1..9247f50dd 100644 --- a/src/expr/kind_template.h +++ b/src/expr/kind_template.h @@ -64,7 +64,7 @@ struct KindHashFunction { /** * The enumeration for the built-in atomic types. */ -enum TypeConstant { +enum CVC4_PUBLIC TypeConstant { ${type_constant_list} #line 70 "${template}" LAST_TYPE -- cgit v1.2.3