my_pipe.h
、 、my_pipe.c
、およびの3 つのファイルがあり、 はライブラリmain.c
でmy_pipe
あるはずです。
Eclipseでコンパイルすると、エラーなしでうまくコンパイルされますが、次のコマンドを実行してヒットすると、次のようmakefile
になります。terminal
make
exer3: main.o libmywrapper.a
gcc main.c libmywrapper.a -o exer3 -static -lrt
libmywrapper.a: my_pipe.o
ar rcs libmywrapper.a my_pipe.o
main.o: main.c my_pipe.h
gcc -lpthread -lrt -c main.c
my_pipe.o: my_pipe.c my_pipe.h
gcc -lpthread -lrt -c my_pipe.c
私はこれを得る:
a@ubuntu:~/Desktop/myExer$ make
gcc -lpthread -lrt -c main.c
gcc -lpthread -lrt -c my_pipe.c
ar rcs libmywrapper.a my_pipe.o
gcc main.c libmywrapper.a -o exer3 -static -lrt
libmywrapper.a(my_pipe.o): In function `shm_pipe_init':
my_pipe.c:(.text+0x61): undefined reference to `sem_init'
libmywrapper.a(my_pipe.o): In function `shm_pipe_read':
my_pipe.c:(.text+0x17f): undefined reference to `sem_wait'
my_pipe.c:(.text+0x196): undefined reference to `sem_getvalue'
my_pipe.c:(.text+0x1ba): undefined reference to `sem_wait'
libmywrapper.a(my_pipe.o): In function `shm_pipe_write':
my_pipe.c:(.text+0x4b7): undefined reference to `sem_post'
collect2: ld returned 1 exit status
make: *** [exer3] Error 1
makefile の何が問題なのか分かりますか?
ありがとう
上記の更新!