Skip to content

Commit ee76b82

Browse files
committed
feat: Bump versions to latest
Signed-off-by: Gordon Smith <[email protected]>
1 parent 56091e0 commit ee76b82

File tree

9 files changed

+761
-632
lines changed

9 files changed

+761
-632
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
![Test PR](https://github.com/hpcc-systems/hpcc-js-wasm/workflows/Test%20PR/badge.svg)
44

55
This repository contains a collection of useful c++ libraries compiled to WASM for (re)use in Node JS, Web Browsers and JavaScript Libraries:
6-
* [graphviz](https://www.graphviz.org/) - v3.0.0
7-
* [expat](https://libexpat.github.io/) - v2.4.6
6+
* [graphviz](https://www.graphviz.org/) - v5.0.0
7+
* [expat](https://libexpat.github.io/) - v2.4.8
88

99
Built with:
10-
* [emsdk](https://github.com/emscripten-core/emsdk) - v3.1.6
10+
* [emsdk](https://github.com/emscripten-core/emsdk) - v3.1.15
1111

1212
## Quick GraphViz Demos
1313
* https://raw.githack.com/hpcc-systems/hpcc-js-wasm/trunk/index.html

cpp/expat/expatlib/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PROJECT(expatlib)
22

3-
SET(EM_FLAGS "-s WASM=1 -s INVOKE_RUN=0 -s ALLOW_MEMORY_GROWTH=1 -s MODULARIZE=2 -s EXPORT_NAME='${CMAKE_PROJECT_NAME}' -s EXPORTED_FUNCTIONS=\"['_malloc']\" --post-js ${CMAKE_CURRENT_BINARY_DIR}/main_glue.js")
3+
SET(EM_FLAGS "-s WASM=1 -s INVOKE_RUN=0 -s ALLOW_MEMORY_GROWTH=1 -s MODULARIZE=1 -s EXPORT_NAME='${CMAKE_PROJECT_NAME}' -s EXPORTED_FUNCTIONS=\"['_malloc']\" --post-js ${CMAKE_CURRENT_BINARY_DIR}/main_glue.js")
44

55
# Generate Glue from IDL file ---
66
ADD_CUSTOM_COMMAND(

cpp/graphviz/graphvizlib/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PROJECT(graphvizlib)
22

3-
SET(EM_FLAGS "-s WASM=1 -s INVOKE_RUN=0 -s ALLOW_MEMORY_GROWTH=1 -s MODULARIZE=2 -s EXPORT_NAME='${CMAKE_PROJECT_NAME}' --post-js ${CMAKE_CURRENT_BINARY_DIR}/main_glue.js")
3+
SET(EM_FLAGS "-s WASM=1 -s INVOKE_RUN=0 -s ALLOW_MEMORY_GROWTH=1 -s MODULARIZE=1 -s EXPORT_NAME='${CMAKE_PROJECT_NAME}' -s EXPORTED_FUNCTIONS=\"['_free']\" --post-js ${CMAKE_CURRENT_BINARY_DIR}/main_glue.js")
44

55
# Generate Glue from IDL file ---
66
ADD_CUSTOM_COMMAND(

cpp/graphviz/lib/cgraph/CMakeLists.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,22 @@
22
add_library(cgraph STATIC
33
# Header files
44
${GRAPHVIZ_LIB_DIR}/cgraph/agxbuf.h
5+
${GRAPHVIZ_LIB_DIR}/cgraph/alloc.h
56
${GRAPHVIZ_LIB_DIR}/cgraph/bitarray.h
67
${GRAPHVIZ_LIB_DIR}/cgraph/cghdr.h
78
${GRAPHVIZ_LIB_DIR}/cgraph/cgraph.h
89
${GRAPHVIZ_LIB_DIR}/cgraph/exit.h
910
${GRAPHVIZ_LIB_DIR}/cgraph/itos.h
1011
${GRAPHVIZ_LIB_DIR}/cgraph/likely.h
1112
${GRAPHVIZ_LIB_DIR}/cgraph/prisize_t.h
12-
${GRAPHVIZ_LIB_DIR}/cgraph/sprint.h
13+
${GRAPHVIZ_LIB_DIR}/cgraph/stack.h
1314
${GRAPHVIZ_LIB_DIR}/cgraph/strcasecmp.h
15+
${GRAPHVIZ_LIB_DIR}/cgraph/strview.h
1416
${GRAPHVIZ_LIB_DIR}/cgraph/unreachable.h
17+
${GRAPHVIZ_LIB_DIR}/cgraph/unused.h
1518

1619
# Source files
1720
${GRAPHVIZ_LIB_DIR}/cgraph/agerror.c
18-
${GRAPHVIZ_LIB_DIR}/cgraph/agxbuf.c
1921
${GRAPHVIZ_LIB_DIR}/cgraph/apply.c
2022
${GRAPHVIZ_LIB_DIR}/cgraph/attr.c
2123
${GRAPHVIZ_LIB_DIR}/cgraph/edge.c

0 commit comments

Comments
 (0)