projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8f22111
)
exclude clang from checking
author
Miodrag Milanovic
<mmicko@gmail.com>
Fri, 13 Mar 2020 16:23:27 +0000
(17:23 +0100)
committer
Miodrag Milanovic
<mmicko@gmail.com>
Fri, 13 Mar 2020 16:23:27 +0000
(17:23 +0100)
kernel/log.h
patch
|
blob
|
history
diff --git
a/kernel/log.h
b/kernel/log.h
index 61cc246e79fc10f6641c95ba4ca9894db77f133e..cd0e8185c4aa23c91fa4caddb1f20b74dd5f4552 100644
(file)
--- a/
kernel/log.h
+++ b/
kernel/log.h
@@
-26,7
+26,7
@@
// In GCC 4.8 std::regex is not working correctlty, in order to make features
// using regular expressions to work replacement regex library is used
-#if defined(__GNUC__) && ( __GNUC__ == 4 && __GNUC_MINOR__ <= 8)
+#if defined(__GNUC__) &&
!defined( __clang__) &&
( __GNUC__ == 4 && __GNUC_MINOR__ <= 8)
#include <boost/xpressive/xpressive.hpp>
#define YS_REGEX_TYPE boost::xpressive::sregex
#define YS_REGEX_NS boost::xpressive