You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to make the buffer and dot2vhdl, however, I have faced some weird error.
For buffer, I got conflicts between string.h and graphviz/cdt.h
/usr/include/string.h:65:12: error: conflicting declaration of ‘int memcmp(const void*, const void*, size_t)’ with ‘C’ linkage
extern int memcmp (const void *__s1, const void *__s2, size_t __n)
^~~~~~
In file included from /usr/include/graphviz/cgraph.h:17,
from src/DFnetlist_read_dot.cpp:4:
/usr/include/graphviz/cdt.h:242:13: note: previous declaration with ‘C++’ linkage
extern int memcmp _ARG_((const Void_t*, const Void_t*, size_t));
^~~~~~
For now I manually commented out the relevant line in graphviz/cdt.h . Is is ok to do so? After the make, I have a file name "buffers" in the bin folder, is this what I susposed to get?
I do not see -lc in the Makefile, and the 2 -lm are both commented out. Do you have any idea why -lm and -lc are needed and how I can get those during the make?
I am now running dynamatic on Centos 7. Latest version of Graphviz available is 2.30.1. The gcc is of version 8.3.1, from using devtoolset-8.
Thank you very much for your help!
The text was updated successfully, but these errors were encountered:
I was trying to make the buffer and dot2vhdl, however, I have faced some weird error.
For buffer, I got conflicts between string.h and graphviz/cdt.h
For now I manually commented out the relevant line in graphviz/cdt.h . Is is ok to do so? After the make, I have a file name "buffers" in the bin folder, is this what I susposed to get?
For dot2vhdl, I got the following erro message
I do not see -lc in the Makefile, and the 2 -lm are both commented out. Do you have any idea why -lm and -lc are needed and how I can get those during the make?
I am now running dynamatic on Centos 7. Latest version of Graphviz available is 2.30.1. The gcc is of version 8.3.1, from using devtoolset-8.
Thank you very much for your help!
The text was updated successfully, but these errors were encountered: