Guest User

Untitled

a guest
Jan 28th, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.33 KB | None | 0 0
  1. cconvey@spaceman /tmp/y $ cat blacklist.txt
  2. src:/tmp/y/test.c
  3. fun:readline=uninstrumented
  4. fun:readline=discard
  5. cconvey@spaceman /tmp/y $ /home/cconvey/src/llvm-install/bin/clang -fsanitize=dataflow -fsanitize-blacklist=blacklist.txt example.c -lreadline
  6. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 0 has invalid symbol index 11
  7. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 1 has invalid symbol index 12
  8. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 2 has invalid symbol index 2
  9. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 3 has invalid symbol index 2
  10. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 4 has invalid symbol index 11
  11. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 5 has invalid symbol index 13
  12. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 6 has invalid symbol index 13
  13. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 7 has invalid symbol index 13
  14. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 8 has invalid symbol index 12
  15. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 9 has invalid symbol index 13
  16. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 10 has invalid symbol index 13
  17. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 11 has invalid symbol index 13
  18. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 12 has invalid symbol index 13
  19. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 13 has invalid symbol index 13
  20. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 14 has invalid symbol index 13
  21. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 15 has invalid symbol index 13
  22. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 16 has invalid symbol index 13
  23. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 17 has invalid symbol index 13
  24. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 18 has invalid symbol index 13
  25. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_info): relocation 19 has invalid symbol index 22
  26. /usr/bin/ld: /usr/lib/debug/usr/lib/x86_64-linux-gnu/Scrt1.o(.debug_line): relocation 0 has invalid symbol index 2
  27. /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/Scrt1.o: In function `_start':
  28. (.text+0x20): undefined reference to `main'
  29. /tmp/example-509890.o: In function `dfs$main':
  30. example.c:(.text+0x88): undefined reference to `dfs$dfsan_create_label'
  31. example.c:(.text+0xdc): undefined reference to `dfs$dfsan_set_label'
  32. example.c:(.text+0x118): undefined reference to `dfs$dfsan_create_label'
  33. example.c:(.text+0x155): undefined reference to `dfs$dfsan_set_label'
  34. example.c:(.text+0x191): undefined reference to `dfs$dfsan_create_label'
  35. example.c:(.text+0x1cf): undefined reference to `dfs$dfsan_set_label'
  36. example.c:(.text+0x2e6): undefined reference to `dfs$dfsan_get_label'
  37. example.c:(.text+0x328): undefined reference to `dfs$dfsan_has_label'
  38. example.c:(.text+0x366): undefined reference to `dfs$__assert_fail'
  39. example.c:(.text+0x391): undefined reference to `dfs$dfsan_has_label'
  40. example.c:(.text+0x3cf): undefined reference to `dfs$__assert_fail'
  41. example.c:(.text+0x3fa): undefined reference to `dfs$dfsan_has_label'
  42. example.c:(.text+0x438): undefined reference to `dfs$__assert_fail'
  43. example.c:(.text+0x607): undefined reference to `dfs$dfsan_get_label'
  44. example.c:(.text+0x649): undefined reference to `dfs$dfsan_has_label'
  45. example.c:(.text+0x687): undefined reference to `dfs$__assert_fail'
  46. example.c:(.text+0x6b2): undefined reference to `dfs$dfsan_has_label'
  47. example.c:(.text+0x6f0): undefined reference to `dfs$__assert_fail'
  48. example.c:(.text+0x71b): undefined reference to `dfs$dfsan_has_label'
  49. example.c:(.text+0x759): undefined reference to `dfs$__assert_fail'
  50. clang-3.6: error: linker command failed with exit code 1 (use -v to see invocation)
  51. cconvey@spaceman /tmp/y $
Advertisement
Add Comment
Please, Sign In to add comment