so i was wondering how come devc++ after compiling a lib still says creating lib_xxxxx.a? also each time i compile a library it seems to work fine but my compiler log always gets 1 error. i was wondering what that means and how to eliminate it. here is a example log from lib i just built.
so i was wondering how come devc++ after compiling a lib still says creating lib_xxxxx.a? also each time i compile a library it seems to work fine but my compiler log always gets 1 error. i was wondering what that means and how to eliminate it. here is a example log from lib i just built.
Compiler: Default compiler
Building Makefile: "C:\Code\Projects\X3\Dependants\ortp-0.13.1\build\dev_static_lib\Makefile.win"
Executing make clean
rm -f ../../src/avprofile.o ../../src/event.o ../../src/jitterctl.o ../../src/ortp.o ../../src/payloadtype.o ../../src/port.o ../../src/posixtimer.o ../../src/rtcp.o ../../src/rtcpparse.o ../../src/rtpparse.o ../../src/rtpsession.o ../../src/rtpsession_inet.o ../../src/rtpsignaltable.o ../../src/rtptimer.o ../../src/scheduler.o ../../src/sessionset.o ../../src/str_utils.o ../../src/stun.o ../../src/stun_udp.o ../../src/telephonyevents.o ../../src/utils.o libortp.a
gcc.exe -c ../../src/avprofile.c -o ../../src/avprofile.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/event.c -o ../../src/event.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/jitterctl.c -o ../../src/jitterctl.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/ortp.c -o ../../src/ortp.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/payloadtype.c -o ../../src/payloadtype.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/port.c -o ../../src/port.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/posixtimer.c -o ../../src/posixtimer.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/rtcp.c -o ../../src/rtcp.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/rtcpparse.c -o ../../src/rtcpparse.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/rtpparse.c -o ../../src/rtpparse.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/rtpsession.c -o ../../src/rtpsession.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/rtpsession_inet.c -o ../../src/rtpsession_inet.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/rtpsignaltable.c -o ../../src/rtpsignaltable.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/rtptimer.c -o ../../src/rtptimer.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/scheduler.c -o ../../src/scheduler.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/sessionset.c -o ../../src/sessionset.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/str_utils.c -o ../../src/str_utils.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/stun.c -o ../../src/stun.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/stun_udp.c -o ../../src/stun_udp.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/telephonyevents.c -o ../../src/telephonyevents.o -I"C:/Dev-Cpp/include"
gcc.exe -c ../../src/utils.c -o ../../src/utils.o -I"C:/Dev-Cpp/include"
ar r libortp.a ../../src/avprofile.o ../../src/event.o ../../src/jitterctl.o ../../src/ortp.o ../../src/payloadtype.o ../../src/port.o ../../src/posixtimer.o ../../src/rtcp.o ../../src/rtcpparse.o ../../src/rtpparse.o ../../src/rtpsession.o ../../src/rtpsession_inet.o ../../src/rtpsignaltable.o ../../src/rtptimer.o ../../src/scheduler.o ../../src/sessionset.o ../../src/str_utils.o ../../src/stun.o ../../src/stun_udp.o ../../src/telephonyevents.o ../../src/utils.o
ar: creating libortp.a
ranlib libortp.a
Execution terminated
Congratulations!! that is not an error; is the normal make output on the successful creation of a library.
Old Newbie
alright thank you.
The error parser is a bit dumb and counts "ar: creating libortp.a" as an error line.