descargar - Obtener referencia indefinida al error ''clock_gettime'', para curl program
descargar curl 7.43 0 (2)
Gretings,
Tengo compilación cruzada, OpenSSl, libssh2 y finalmente cURL, no sé por qué ha generado solo la biblioteca estática. De todos modos, traté de ejecutar el programa de muestra ftpget.c vinculando las tres bibliotecas, pero me aparece el siguiente error:
.../libcurl.a(timeval.o): In function ''curlx_tvnow'':
timeval.c:(.text+0xfc): undefined reference to ''clock_gettime''
collect2: ld return 1 exit status
make: *** [all] Error 1
Por favor, ayúdame a resolver este error. ¿Es necesario compilar de forma cruzada cualquier otra biblioteca también?
Gracias, Yuvi
Intente vincular con librt ( -lrt
).
Necesita vincular con la biblioteca en tiempo real.
Utilice -lrt
gcc ... -lrt ...