求助:在Debian Linux 执行CMake Dobby时无法生成静态配置

需求:
我下载了Dobby源码,想要编辑一个静态的libDobby.a文件。但是Cmake报错了。
**日志:
– The C compiler identification is GNU 8.3.0
– The CXX compiler identification is GNU 8.3.0
– Check for working C compiler: /usr/bin/cc
– Check for working C compiler: /usr/bin/cc – works
– Detecting C compiler ABI info
– Detecting C compiler ABI info - done
– Detecting C compile features
– Detecting C compile features - done
– Check for working CXX compiler: /usr/bin/c++
– Check for working CXX compiler: /usr/bin/c++ – works
– Detecting CXX compiler ABI info
– Detecting CXX compiler ABI info - done
– Detecting CXX compile features
– Detecting CXX compile features - done
– The ASM compiler identification is GNU
– Found assembler: /usr/bin/cc

– ********* build-environment-detected ***********
– Compiler: GNU
– Processor: x86_64
– System: Linux
– ***************************************

– CMAKE_C_COMPILER: /usr/bin/cc
– CMAKE_CXX_COMPILER: /usr/bin/c++
– CMAKE_C_FLAGS: -fPIC
– CMAKE_CXX_FLAGS: -fPIC
– CMAKE_SHARED_LINKER_FLAGS:
– [Dobby] Enable dynamic binary instrument(hook instruction with register context)
– [Dobby] Enable near branch trampoline(trampoline within single instruction)
– [Dobby] Enable symbol resolver
– [Dobby] Dobby-20211203-223aabc
– [Dobby] Generate static library
CMake Error at CMakeLists.txt:428 (install):
install TARGETS given no ARCHIVE DESTINATION for static library target
“dobby”.

– Configuring incomplete, errors occurred!

操作步骤:

git clone https://github.com/jmpews/Dobby.git --depth=1
将CMakeLists.txt 的
option(DOBBY_GENERATE_SHARED “Build shared library” ON)改为
option(DOBBY_GENERATE_SHARED “Build shared library” OFF)
cd Dobby && mkdir build_for_host && cd build_for_host
cmake …
make -j4

** 任何其他描述:
下载后只改了上面一行配置,没有再做其它修改

** 环境:
cmake version 3.13.4
Debian GNU/Linux 10