pthread 실행 관련 id-linux.so.3 가 없다고 합니다.
pthread를 테스트 하는데.. 아래와 같이 없다고 합니다.
컴파일은
arm-none-linux-gnueabi-gcc -o pthread_main pthread_main.c -lpthread
이렇게 진행 했습니다.
실행시 이러한 메세지가 발생되네요..
/lib/ld-linux.so.3: No such file or directory
무슨 문제가 있는 건가요?
아래는 테스트 코드 입니다.
#include
#include
#include
char test[13]="before test";
pthread_t threads;
void *thread_test(void * arg);
void main(void)
{
int i=10;
int rc;
int status;
printf("start test thread\n");
printf("main pid = %d \n", getpid());
printf("before thread create :[test][%s] \n", test);
/*
int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine) (void *), void *arg);
*/
rc = pthread_create(&threads, NULL, &thread_test, (void *) i);
//threads를 thread_test 함수로 연결하고인자 i를 넘긴다.
printf("after thread create: test[%s] \n ", test);
rc = pthread_join(threads, (void**)&status);
////threads가 끝나길 기다리고 status로 인자값을 받는다.
printf("get thread join: test[%s] %d \n", test, status);
}
void *thread_test(void * arg)
{
printf("thread pid = %d \n", getpid());
printf("in thread_test received arg : %d\n", (int)arg);
strcpy(test, "Wow~~");
pthread_exit((void *)12); //pthread_joid 에서 받는 값을 인자로 넣어주고 끝낸다.
}
ubuntu 10.4 LTS에서 실행
ubuntu 10.4 LTS에서 실행해서 테스트 했습니다.
왜 않되는것일까요?
링크 단계에서 크로스컴파일러가 참조할수 있는 경로가
링크 단계에서 크로스컴파일러가 참조할수 있는 경로가 설정되어야겠죠. -L 옵션으로 해당 경로를 명시해야할 듯
혹시 arm용 크로스컴파일러로 컴파일한걸 x86리눅스에서 실행한건가여?
그럼 당연히! 에러 납니다.
arm용 크로스 컴파일러로 컴파일한건 arm용 프로그램이지 x86이 아닙니다
즐린
댓글 달기