Skip to content

Commit 146e516

Browse files
authored
fix: static library name (#305)
1 parent 2a600fd commit 146e516

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.clusterfuzzlite/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ make uvwasi_a
77

88
$CC $CFLAGS $LIB_FUZZING_ENGINE ../.clusterfuzzlite/fuzz_normalize_path.c \
99
-o $OUT/fuzz_normalize_path \
10-
./libuvwasi_a.a _deps/libuv-build/libuv_a.a \
10+
./libuvwasi.a _deps/libuv-build/libuv_a.a \
1111
-I$SRC/uvwasi/include -I$PWD/_deps/libuv-src/include/

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ endif()
9999

100100
## Static library target.
101101
add_library(uvwasi_a STATIC ${uvwasi_sources})
102+
set_target_properties(uvwasi_a PROPERTIES OUTPUT_NAME "uvwasi")
102103
target_compile_definitions(uvwasi_a PRIVATE ${uvwasi_defines})
103104
target_compile_options(uvwasi_a PRIVATE ${uvwasi_cflags})
104105
target_include_directories(uvwasi_a PRIVATE ${PROJECT_SOURCE_DIR}/include)

0 commit comments

Comments
 (0)