aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/log.cc
diff options
context:
space:
mode:
authorJohnny Sorocil <propaliidealist@gmail.com>2018-05-05 13:02:44 +0200
committerClifford Wolf <clifford@clifford.at>2018-05-05 13:02:44 +0200
commite3575a86c525f2511902e7022893c3923ba8093e (patch)
tree0c0a7c7578fcc9c220a2b3c29f6c5dcaccda3e98 /kernel/log.cc
parent145c685de03a0b5f70a3aa821ea1bd221c31d993 (diff)
downloadyosys-e3575a86c525f2511902e7022893c3923ba8093e.tar.gz
yosys-e3575a86c525f2511902e7022893c3923ba8093e.tar.bz2
yosys-e3575a86c525f2511902e7022893c3923ba8093e.zip
Add "#ifdef __FreeBSD__"
Diffstat (limited to 'kernel/log.cc')
-rw-r--r--kernel/log.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/log.cc b/kernel/log.cc
index ff171f3e6..6d562b9e6 100644
--- a/kernel/log.cc
+++ b/kernel/log.cc
@@ -25,7 +25,7 @@
# include <sys/time.h>
#endif
-#ifdef __linux__
+#if defined(__linux__) || defined(__FreeBSD__)
# include <dlfcn.h>
#endif
@@ -392,7 +392,7 @@ void log_pop()
log_flush();
}
-#if defined(__linux__) && defined(YOSYS_ENABLE_PLUGINS)
+#if (defined(__linux__) || defined(__FreeBSD__)) && defined(YOSYS_ENABLE_PLUGINS)
void log_backtrace(const char *prefix, int levels)
{
if (levels <= 0) return;
@@ -587,7 +587,7 @@ void log_wire(RTLIL::Wire *wire, std::string indent)
// ---------------------------------------------------
// This is the magic behind the code coverage counters
// ---------------------------------------------------
-#if defined(YOSYS_ENABLE_COVER) && defined(__linux__)
+#if defined(YOSYS_ENABLE_COVER) && (defined(__linux__) || defined(__FreeBSD__))
dict<std::string, std::pair<std::string, int>> extra_coverage_data;