Recientemente instalé XUbuntu 11.10 64bit, pero tengo problemas para compilar el ejemplo más simple de pthread.
Aquí está el código pthread_simple.c
:
#include <stdio.h>
#include <pthread.h>
main() {
pthread_t f2_thread, f1_thread;
void *f2(), *f1();
int i1,i2;
i1 = 1;
i2 = 2;
pthread_create(&f1_thread,NULL,f1,&i1);
pthread_create(&f2_thread,NULL,f2,&i2);
pthread_join(f1_thread,NULL);
pthread_join(f2_thread,NULL);
}
void *f1(int *x){
int i;
i = *x;
sleep(1);
printf("f1: %d",i);
pthread_exit(0);
}
void *f2(int *x){
int i;
i = *x;
sleep(1);
printf("f2: %d",i);
pthread_exit(0);
}
Y aquí está el comando de compilación
gcc -lpthread pthread_simple.c
Los resultados:
lptang @ tlp-linux: ~ / test / test-pthread $ gcc -lpthread pthread_simple.c /tmp/ccmV0LdM.o: en la función `main ': pthread_simple.c :(. text + 0x2c): referencia indefinida a `pthread_create ' pthread_simple.c :(. text + 0x46): referencia indefinida a `pthread_create ' pthread_simple.c :(. text + 0x57): referencia indefinida a `pthread_join ' pthread_simple.c :(. text + 0x68): referencia indefinida a `pthread_join ' collect2: ld devolvió 1 estado de salida
¿Alguien sabe qué está causando el problema?
#include <pthread.h>
gcc -pthread...
?-Wall
, te faltan encabezados. (Y sr_ es correcto.)Respuestas:
En las últimas versiones del
gcc
compilador se requiere que las bibliotecas sigan el objeto o los archivos fuente.Entonces, para compilar esto debería ser:
Normalmente, aunque el código pthread se compila de esta manera:
fuente
pthread.h
archivo no es suficiente para que gcc resuelva las referencias?fuente
compilar código usando el siguiente comando
fuente