"bin/nodejs/meson.build:7:25: ERROR: custom_target keyword argument \"output\" Output 'build/Makefile' must not contain a path segment."
master 2fd25c29
$ PKG_CONFIG_PATH="/usr/lib/pkgconfig:/usr/local/lib/pkgconfig" \
LDFLAGS="-v -L/usr/lib -lasan -lnettle -lz -lixml -lupnp -luuid -lnatpmp -luuid" \
/usr/bin/meson setup -Dportaudio=disabled -Dinterfaces="library,dbus,nodejs" --wipe ./build ./
It only happens when nodejs
is added to the interfaces
list.
The Meson build system
Version: 1.4.1
Source dir: /<pathTo>/jami-daemon
Build dir: /<pathTo>/jami-daemon/build
Build type: native build
Project name: jami-daemon
Project version: 15.3.0
C compiler for the host machine: cc (gcc 14.1.1 "cc (GCC) 14.1.1 20240522")
C linker for the host machine: cc ld.bfd 2.42.0
C++ compiler for the host machine: c++ (gcc 14.1.1 "c++ (GCC) 14.1.1 20240522")
C++ linker for the host machine: c++ ld.bfd 2.42.0
Host machine cpu family: x86_64
Host machine cpu: x86_64
Run-time dependency threads found: YES
Found pkg-config: YES (/usr/bin/pkg-config) 2.1.1
Run-time dependency opendht found: YES 3.2.0
Run-time dependency dhtnet found: YES 0.0.1
Run-time dependency gnutls found: YES 3.8.5
Run-time dependency nettle found: YES 3.9.1
Run-time dependency libpjproject found: YES 2.13.1
Run-time dependency libgit2 found: YES 1.8.1
Run-time dependency libsecp256k1 found: YES 0.5.0
Run-time dependency libavcodec found: YES 60.31.102
Run-time dependency libavfilter found: YES 9.12.100
Run-time dependency libavdevice found: YES 60.3.100
Run-time dependency libavformat found: YES 60.16.100
Run-time dependency libswscale found: YES 7.5.100
Run-time dependency libswresample found: YES 4.12.100
Run-time dependency libavutil found: YES 58.29.100
Run-time dependency fmt found: YES 10.2.0
Run-time dependency yaml-cpp found: YES 0.8.0
Run-time dependency jsoncpp found: YES 1.9.4
Run-time dependency zlib found: YES 1.3.1
Run-time dependency sdbus-c++ found: YES 1.5.0
Program sdbus-c++-xml2cpp found: YES (/usr/bin/sdbus-c++-xml2cpp)
Program swig found: YES (/usr/bin/swig)
Program node-gyp found: YES (/usr/bin/node-gyp)
Program pod2man found: YES (/usr/bin/core_perl/pod2man)
Has header "SLES/OpenSLES.h" : NO
Run-time dependency alsa found: YES 1.2.12
Run-time dependency libpulse found: YES 17.0
Run-time dependency jack found: YES 1.9.17
Dependency portaudio-2.0 skipped: feature portaudio disabled
Run-time dependency openssl found: YES 3.3.1
Run-time dependency webrtc-audio-processing found: YES 0.3.1
Run-time dependency speexdsp found: YES 1.2.1
Fetching value of define "__ANDROID__" : (undefined)
Run-time dependency libudev found: YES 255
Run-time dependency libarchive found: YES 3.7.4
Library dl found: YES
Configuring config.h using configuration
Fetching value of define "__ANDROID__" : (undefined) (cached)
Compiler for C++ supports link arguments -Wl,-Bsymbolic: YES
Configuring cx.ring.Ring.service using configuration
1 nodejs_wrapper_target = custom_target('nodejs.wrapper',
2 command: [progswig, '-v', '-c++', '-javascript', '-node', '-o', '@OUTPUT@', '@INPUT@'],
3 input: 'nodejs_interface.i',
4 output: 'nodejs_wrapper.cpp'
5 )
6
7 nodejs_makefile_target = custom_target('nodejs.makefile',
8 command: [prognodegyp, 'configure', '--target=v14.16.1', '--arch=x64'],
--> 9 output: 'build/Makefile',
10 depends: nodejs_wrapper_target
11 )
12
13 nodejs_node_target = custom_target('nodejs.node',
14 command: [prognodegyp, 'build'],
15 output: 'build/Release/obj.target/jami.node',
16 depends: nodejs_makefile_target,
17 build_by_default: true
18 )
Yes, I'm aware of cmake, but using both -DJAMI_DBUS=ON -DJAMI_NODEJS=ON
results in:
-- Found SWIG: /usr/bin/swig (found suitable version "4.2.1", minimum required is "4.2") found components: javascript
-- Checking for one of the modules 'sdbus-c++'
CMake Error at CMakeLists.txt:768 (add_executable):
add_executable cannot create target "jamid" because another target with the
same name already exists. The existing target is a custom target created
in source directory
"/<pathTo>/jami-daemon". See
documentation for policy CMP0002 for more details.
CMake Error at CMakeLists.txt:772 (target_link_libraries):
Utility target "jamid" must not be used as the target of a
target_link_libraries call.
CMake Error at CMakeLists.txt:773 (install):
install TARGETS given target "jamid" which is not an executable, library,
or module.
-- Checking for one of the modules 'cppunit'
EDIT0: Even then, only /usr/local/lib/libjami-core.a
gets installed.
EDIT1: make: *** No rule to make target 'binding.gyp', needed by 'build/Makefile'. Stop.
when using configure/make because it appears it doesn't generate the binding.gyp
file like CMakeLists.txt
does.
Yeesh, what is this mess with build systems not fully being implemented? I would've thought configure/make would've been fully working if you liked it so much.
Pick one, fully implement it, then add other build systems when they achieve parity with the first.