Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- This works:
- gcc with_main.c -o dynamically_linked -L. -l v2lin -I../../lib -pthread -lrt -ldl
- This does not:
- The compile (-c) works:
- gcc -I../../lib -g -D _USR_SYS_INIT_KILL -Wall -Wno-format -Wno-unused-label -Wno-unused-variable -fmessage-length=0 -fPIC -DDEBUG -I../../lib -c -o with_main.o with_main.c
- Linking does not:
- gcc -L . -l v2lin -pthread -ldl -lrt with_main.o -o with_main
- with_main.o: In function `main':
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:33: undefined reference to `trace'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:33: undefined reference to `gettid'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:33: undefined reference to `tid'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:33: undefined reference to `gettid'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:33: undefined reference to `tid'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:33: undefined reference to `my_task'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:33: undefined reference to `my_task'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:33: undefined reference to `my_task'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:33: undefined reference to `tid'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:33: undefined reference to `trace_time'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:33: undefined reference to `trace_fn'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:33: undefined reference to `trace_fn'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:33: undefined reference to `trace_fn'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:34: undefined reference to `v2lin_init'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:35: undefined reference to `trace'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:35: undefined reference to `gettid'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:35: undefined reference to `tid'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:35: undefined reference to `gettid'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:35: undefined reference to `tid'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:35: undefined reference to `my_task'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:35: undefined reference to `my_task'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:35: undefined reference to `my_task'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:35: undefined reference to `tid'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:35: undefined reference to `trace_time'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:35: undefined reference to `trace_fn'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:35: undefined reference to `trace_fn'
- /home/jcv/v2lin/v2lin_v02/samples/with_main/with_main.c:35: undefined reference to `trace_fn'
- collect2: ld returned 1 exit status
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement