aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-10-19 18:40:22 +0200
committerClifford Wolf <clifford@clifford.at>2014-10-19 18:40:22 +0200
commit3202ba621c3a0cd1e59d796bfb6a893dd964c77d (patch)
treedc5c52dbca537a66d1dd9104a20351cbc2fd7143
parent6c1c1e9a07c66b37f65835ed03370ac062616b7a (diff)
parentde8adb8ec538913b93662198cf12c0f2a3b72630 (diff)
downloadyosys-3202ba621c3a0cd1e59d796bfb6a893dd964c77d.tar.gz
yosys-3202ba621c3a0cd1e59d796bfb6a893dd964c77d.tar.bz2
yosys-3202ba621c3a0cd1e59d796bfb6a893dd964c77d.zip
Merge pull request #40 from parvizp/compile_mac_10.9.2
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 42cfcb5bb..ad0aa5a6d 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>