Re: [PATCH v2] build: support building static library liberofsfuse

2024-06-11 Thread Gao Xiang
Hi, On 2024/6/6 15:39, ComixHe wrote: add new option '--enable-static-fuse' so that we could import erofsfuse as a static library directly into other projects Signed-off-by: ComixHe ... + +if ENABLE_STATIC_FUSE +lib_LIBRARIES = liberofsfuse.a +liberofsfuse_a_SOURCES = main.c +liberofsfuse_

Re: [PATCH v2] build: support building static library liberofsfuse

2024-06-06 Thread Gao Xiang
On 2024/6/6 15:39, ComixHe wrote: add new option '--enable-static-fuse' so that we could import erofsfuse as a static library directly into other projects Signed-off-by: ComixHe Reviewed-by: Gao Xiang Thanks, Gao Xiang --- configure.ac | 7 +++ fuse/Makefile.am | 9 +

[PATCH v2] build: support building static library liberofsfuse

2024-06-06 Thread ComixHe
add new option '--enable-static-fuse' so that we could import erofsfuse as a static library directly into other projects Signed-off-by: ComixHe --- configure.ac | 7 +++ fuse/Makefile.am | 9 + 2 files changed, 16 insertions(+) diff --git a/configure.ac b/configure.ac index 1989