-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from GaloisInc/T51-macos-13
Build x86-64 macOS solvers on `macos-13`
- Loading branch information
Showing
5 changed files
with
116 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
diff --git a/src/lib/bitblast/aig/aig_cnf.cpp b/src/lib/bitblast/aig/aig_cnf.cpp | ||
index a9a00c8e..69a19ad6 100644 | ||
--- a/src/lib/bitblast/aig/aig_cnf.cpp | ||
+++ b/src/lib/bitblast/aig/aig_cnf.cpp | ||
@@ -10,6 +10,7 @@ | ||
|
||
#include "bitblast/aig/aig_cnf.h" | ||
|
||
+#include <cstdlib> | ||
#include <functional> | ||
|
||
namespace bzla::bb { | ||
diff --git a/src/lib/bitblast/aig/aig_manager.cpp b/src/lib/bitblast/aig/aig_manager.cpp | ||
index 878ef276..7d36b76a 100644 | ||
--- a/src/lib/bitblast/aig/aig_manager.cpp | ||
+++ b/src/lib/bitblast/aig/aig_manager.cpp | ||
@@ -10,6 +10,8 @@ | ||
|
||
#include "bitblast/aig/aig_manager.h" | ||
|
||
+#include <cstdlib> | ||
+ | ||
namespace bzla::bb { | ||
|
||
bool | ||
diff --git a/src/main/options.cpp b/src/main/options.cpp | ||
index 0d1e518a..5f3fb97c 100644 | ||
--- a/src/main/options.cpp | ||
+++ b/src/main/options.cpp | ||
@@ -2,6 +2,7 @@ | ||
|
||
#include <bitwuzla/cpp/bitwuzla.h> | ||
|
||
+#include <algorithm> | ||
#include <cassert> | ||
#include <iomanip> | ||
#include <iostream> | ||
diff --git a/src/parser/smt2/parser.cpp b/src/parser/smt2/parser.cpp | ||
index 3bd26ffc..164a48be 100644 | ||
--- a/src/parser/smt2/parser.cpp | ||
+++ b/src/parser/smt2/parser.cpp | ||
@@ -10,6 +10,7 @@ | ||
|
||
#include "parser/smt2/parser.h" | ||
|
||
+#include <algorithm> | ||
#include <iostream> | ||
|
||
namespace bzla { | ||
diff --git a/test/unit/api/test_api.cpp b/test/unit/api/test_api.cpp | ||
index c80bb32d..da7c743d 100644 | ||
--- a/test/unit/api/test_api.cpp | ||
+++ b/test/unit/api/test_api.cpp | ||
@@ -11,6 +11,7 @@ | ||
#include <bitwuzla/cpp/bitwuzla.h> | ||
#include <bitwuzla/cpp/parser.h> | ||
|
||
+#include <algorithm> | ||
#include <chrono> | ||
#include <fstream> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
diff --git a/src/expr/emptyset.h b/src/expr/emptyset.h | ||
index 55e07747e..250185809 100644 | ||
--- a/src/expr/emptyset.h | ||
+++ b/src/expr/emptyset.h | ||
@@ -19,6 +19,7 @@ | ||
|
||
#pragma once | ||
|
||
+#include <cstddef> | ||
#include <iosfwd> | ||
|
||
namespace CVC4 { | ||
diff --git a/src/expr/expr_iomanip.h b/src/expr/expr_iomanip.h | ||
index f8464392a..985a3ca2a 100644 | ||
--- a/src/expr/expr_iomanip.h | ||
+++ b/src/expr/expr_iomanip.h | ||
@@ -19,6 +19,7 @@ | ||
#ifndef CVC4__EXPR__EXPR_IOMANIP_H | ||
#define CVC4__EXPR__EXPR_IOMANIP_H | ||
|
||
+#include <cstddef> | ||
#include <iosfwd> | ||
|
||
namespace CVC4 { | ||
diff --git a/src/util/regexp.h b/src/util/regexp.h | ||
index 180bb0c32..25c5c9ad2 100644 | ||
--- a/src/util/regexp.h | ||
+++ b/src/util/regexp.h | ||
@@ -17,6 +17,7 @@ | ||
#ifndef CVC4__UTIL__REGEXP_H | ||
#define CVC4__UTIL__REGEXP_H | ||
|
||
+#include <cstddef> | ||
#include <cstdint> | ||
#include <iosfwd> | ||
|