aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorParviz Palangpour <parviz@nanowattdesign.com>2014-10-18 14:26:49 -0500
committerParviz Palangpour <parviz@nanowattdesign.com>2014-10-19 11:14:43 -0500
commitde8adb8ec538913b93662198cf12c0f2a3b72630 (patch)
tree81692aea726b6084694b39222bf580ac37b7bf1c
parent84ffe04075bbddfd1b288295c07d036416923c3a (diff)
downloadyosys-de8adb8ec538913b93662198cf12c0f2a3b72630.tar.gz
yosys-de8adb8ec538913b93662198cf12c0f2a3b72630.tar.bz2
yosys-de8adb8ec538913b93662198cf12c0f2a3b72630.zip
Builds on Mac 10.9.2 with LLVM 3.5.
-rw-r--r--frontends/ast/ast.cc5
-rw-r--r--kernel/yosys.cc3
2 files changed, 8 insertions, 0 deletions
diff --git a/frontends/ast/ast.cc b/frontends/ast/ast.cc
index 87b073ff3..e41416efc 100644
--- a/frontends/ast/ast.cc
+++ b/frontends/ast/ast.cc
@@ -32,7 +32,12 @@
#include <sstream>
#include <stdarg.h>
+
+#if defined(__APPLE__)
+#include <cmath>
+#else
#include <math.h>
+#endif
YOSYS_NAMESPACE_BEGIN
diff --git a/kernel/yosys.cc b/kernel/yosys.cc
index f314f546a..e9b113dd2 100644
--- a/kernel/yosys.cc
+++ b/kernel/yosys.cc
@@ -33,6 +33,9 @@
# include <io.h>
#elif defined(__APPLE__)
# include <mach-o/dyld.h>
+# include <unistd.h>
+# include <dirent.h>
+# include <sys/stat.h>
#else
# include <unistd.h>
# include <dirent.h>