-
Notifications
You must be signed in to change notification settings - Fork 11
bpartridge/graphviz.js
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
graphviz.js is an experimental port of the Graphviz graph visualization software to in-browser Javascript. Once optimized for size, this will allow on-the-fly layout of graph nodes on the client, with all the layout features of Graphviz. graphviz.js contains all the required code, and it can be minified to fit your use case. To build the library from the graphviz source code, use the supplied Makefile, which will download the graphviz source code and compile it using your installed version of emscripten (as per your ~/.emscripten file). Both of the following fixes to emscripten are worked around in the most recent version of this repository, although they should eventually be submitted as issues. ============ Outstanding issue in emscripten when <sys/types.h> is included before <stdint.h>... hack is to comment out block at stdint.h:114 as follows: #if 0 #if __have_long64 typedef signed long int64_t; typedef unsigned long uint64_t; #define __int64_t_defined 1 #elif __have_longlong64 typedef signed long long int64_t; typedef unsigned long long uint64_t; #define __int64_t_defined 1 #elif __STDINT_EXP(INT_MAX) > 0x7fffffff typedef signed int int64_t; typedef unsigned int uint64_t; #define __int64_t_defined 1 #endif #endif If the dirent struct is never actually used, it only occurs as a return value by pointer in glob.h, and it shows up in the .ll as an opaque type. Unfortunately, this breaks runtime.js, which expects the type to match library.js's description of what a dirent should be. By commenting out this assertion, it's possible that dirent will no longer work. But since we don't expect the code to be globbing files anyways, it seems to be acceptable.
About
Graphviz layout engine running in the browser using the Emscripten cross-compiler
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published