-
Notifications
You must be signed in to change notification settings - Fork 1
Description
Hi I am trying with SDK version on windows (using docker) 6.2.11
Getting this error:
`
D:\Programs\zoom-sdk-linux>docker build -t msdk-6.0.2-on-ubuntu-compact -f Dockerfile-Ubuntu/Dockerfile .
[+] Building 18.8s (9/12)
=> [internal] load build definition from Dockerfile 0.0s
=> => transferring dockerfile: 32B 0.0s
=> [internal] load .dockerignore 0.0s
=> => transferring context: 2B 0.0s
=> [internal] load metadata for docker.io/library/ubuntu:22.04 2.0s
=> [1/8] FROM docker.io/library/ubuntu:22.04@sha256:ed1544e454989078f5dec1bfdabd8c5cc9c48e0705d07b678ab6ae3fb61952d2 0.0s
=> [internal] load build context 0.4s
=> => transferring context: 225.07kB 0.3s
=> CACHED [2/8] RUN apt-get update && apt-get install -y --no-install-recommends build-essential cmake pkgconf libx11- 0.0s
=> CACHED [3/8] WORKDIR /app 0.0s
=> [4/8] COPY demo/ /app/demo/ 6.0s
=> ERROR [5/8] RUN cd /app/demo && rm -rf bin build && cmake -B build && cd build && make 10.3s
[5/8] RUN cd /app/demo && rm -rf bin build && cmake -B build && cd build && make:
#9 2.204 -- The CXX compiler identification is GNU 11.4.0
#9 2.254 -- Detecting CXX compiler ABI info
#9 2.426 -- Detecting CXX compiler ABI info - done
#9 2.442 -- Check for working CXX compiler: /usr/bin/c++ - skipped
#9 2.444 -- Detecting CXX compile features
#9 2.449 -- Detecting CXX compile features - done
#9 2.473 -- Found PkgConfig: /usr/bin/pkg-config (found version "1.8.0")
#9 2.544 -- Found ZLIB: /usr/lib/x86_64-linux-gnu/libz.so (found version "1.2.11")
#9 2.544 -- Checking for module 'glib-2.0'
#9 2.554 -- Found glib-2.0, version 2.72.4
#9 2.586 -- Checking for module 'gio-2.0'
#9 2.604 -- Found gio-2.0, version 2.72.4
#9 3.694 -- Configuring done
#9 3.709 -- Generating done
#9 3.710 -- Build files have been written to: /app/demo/build
#9 3.747 [ 8%] Building CXX object CMakeFiles/meetingSDKDemo.dir/meeting_sdk_demo.cpp.o
#9 5.176 /app/demo/meeting_sdk_demo.cpp: In function 'void JoinMeeting()':
#9 5.176 /app/demo/meeting_sdk_demo.cpp:545:122: error: invalid new-expression of abstract class type 'MeetingServiceEventListener'
#9 5.176 545 | m_pMeetingService->SetEvent(new MeetingServiceEventListener(&onMeetingJoined, &onMeetingEndsQuitApp, &onInMeeting));
#9 5.176 | ^
#9 5.176 In file included from /app/demo/meeting_sdk_demo.cpp:30:
#9 5.176 /app/demo/MeetingServiceEventListener.h:6:7: note: because the following virtual functions are pure within 'MeetingServiceEventListener':
#9 5.176 6 | class MeetingServiceEventListener : public ZOOM_SDK_NAMESPACE::IMeetingServiceEvent
#9 5.176 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
#9 5.176 In file included from /app/demo/meeting_sdk_demo.cpp:19:
#9 5.176 /app/demo/include/h/meeting_service_interface.h:493:22: note: 'virtual void ZOOMSDK::IMeetingServiceEvent::onMeetingFullToWatchLiveStream(const zchar_t*)'
#9 5.176 493 | virtual void onMeetingFullToWatchLiveStream(const zchar_t* sLiveStreamUrl) = 0;
#9 5.176 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#9 5.388 make[2]: *** [CMakeFiles/meetingSDKDemo.dir/build.make:76: CMakeFiles/meetingSDKDemo.dir/meeting_sdk_demo.cpp.o] Error 1
#9 5.388 make[1]: *** [CMakeFiles/Makefile2:83: CMakeFiles/meetingSDKDemo.dir/all] Error 2
#9 5.388 make: *** [Makefile:91: all] Error 2
executor failed running [/bin/sh -c cd /app/demo && rm -rf bin build && cmake -B build && cd build && make]: exit code: 2
D:\Programs\zoom
`