Advertisement
Guest User

Untitled

a guest
Jan 27th, 2017
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.26 KB | None | 0 0
  1. make all-recursive
  2. make[1]: Entering directory 'PBSIM-PacBio-Simulator'
  3. Making all in src
  4. make[2]: Entering directory 'PBSIM-PacBio-Simulator/src'
  5. g++ -DHAVE_CONFIG_H -I. -I.. -g -O2 -MT pbsim.o -MD -MP -MF .deps/pbsim.Tpo -c -o pbsim.o pbsim.cpp
  6. pbsim.cpp: In function ‘int set_mut(sim_t*)’:
  7. pbsim.cpp:1441:18: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
  8. mut.sub_nt_a = "TGC";
  9. ^~~~~
  10. pbsim.cpp:1442:18: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
  11. mut.sub_nt_t = "AGC";
  12. ^~~~~
  13. pbsim.cpp:1443:18: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
  14. mut.sub_nt_g = "ATC";
  15. ^~~~~
  16. pbsim.cpp:1444:18: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
  17. mut.sub_nt_c = "ATG";
  18. ^~~~~
  19. pbsim.cpp:1445:18: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
  20. mut.sub_nt_n = "ATGC";
  21. ^~~~~~
  22. pbsim.cpp:1446:16: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
  23. mut.ins_nt = "ATGC";
  24. ^~~~~~
  25. mv -f .deps/pbsim.Tpo .deps/pbsim.Po
  26. g++ -g -O2 -o pbsim pbsim.o
  27. pbsim.o: In function `get_ref_inf(sim_t const*, ref_t*)':
  28. PBSIM-PacBio-Simulator/src/pbsim.cpp:453: undefined reference to `trim(char*)'
  29. PBSIM-PacBio-Simulator/src/pbsim.cpp:492: undefined reference to `trim(char*)'
  30. pbsim.o: In function `get_ref_seq(sim_t const*, ref_t*)':
  31. PBSIM-PacBio-Simulator/src/pbsim.cpp:549: undefined reference to `trim(char*)'
  32. PBSIM-PacBio-Simulator/src/pbsim.cpp:558: undefined reference to `trim(char*)'
  33. pbsim.o: In function `get_fastq_inf(sim_t const*, qc_t const*)':
  34. PBSIM-PacBio-Simulator/src/pbsim.cpp:644: undefined reference to `trim(char*)'
  35. pbsim.o:PBSIM-PacBio-Simulator/src/pbsim.cpp:610: more undefined references to `trim(char*)' follow
  36. pbsim.o: In function `mutate(sim_t*, ref_t*)':
  37. PBSIM-PacBio-Simulator/src/pbsim.cpp:1622: undefined reference to `revcomp(char*)'
  38. PBSIM-PacBio-Simulator/src/pbsim.cpp:1623: undefined reference to `revcomp(char*)'
  39. pbsim.o: In function `simulate_by_sampling(sim_t*, ref_t*, mut_t*, fastq_t*, qc_t*)':
  40. PBSIM-PacBio-Simulator/src/pbsim.cpp:1015: undefined reference to `trim(char*)'
  41. PBSIM-PacBio-Simulator/src/pbsim.cpp:1064: undefined reference to `count_digit(long)'
  42. PBSIM-PacBio-Simulator/src/pbsim.cpp:1067: undefined reference to `count_digit(long)'
  43. PBSIM-PacBio-Simulator/src/pbsim.cpp:1071: undefined reference to `count_digit(long)'
  44. PBSIM-PacBio-Simulator/src/pbsim.cpp:1072: undefined reference to `count_digit(long)'
  45. PBSIM-PacBio-Simulator/src/pbsim.cpp:1075: undefined reference to `count_digit(long)'
  46. pbsim.o:/home/pierre/dev/PBSIM-PacBio-Simulator/src/pbsim.cpp:1076: more undefined references to `count_digit(long)' follow
  47. pbsim.o: In function `set_model_qc(sim_t const*)':
  48. PBSIM-PacBio-Simulator/src/pbsim.cpp:1653: undefined reference to `trim(char*)'
  49. pbsim.o: In function `initialize_sim_process(sim_t*, fastq_t*, qc_t*)':
  50. PBSIM-PacBio-Simulator/src/pbsim.cpp:166: undefined reference to `print_sim_param(sim_t const*)'
  51. PBSIM-PacBio-Simulator/src/pbsim.cpp:207: undefined reference to `print_fastq_stats(sim_t const*, fastq_t const*)'
  52. pbsim.o: In function `main':
  53. PBSIM-PacBio-Simulator/src/pbsim.cpp:62: undefined reference to `get_time_cpu()'
  54. PBSIM-PacBio-Simulator/src/pbsim.cpp:63: undefined reference to `get_time()'
  55. PBSIM-PacBio-Simulator/src/pbsim.cpp:135: undefined reference to `print_simulation_stats(sim_t const*, ref_t const*)'
  56. PBSIM-PacBio-Simulator/src/pbsim.cpp:146: undefined reference to `get_time_cpu()'
  57. PBSIM-PacBio-Simulator/src/pbsim.cpp:147: undefined reference to `get_time()'
  58. PBSIM-PacBio-Simulator/src/pbsim.cpp:70: undefined reference to `print_help()'
  59. collect2: error: ld returned 1 exit status
  60. Makefile:208: recipe for target 'pbsim' failed
  61. make[2]: *** [pbsim] Error 1
  62. make[2]: Leaving directory '/home/pierre/dev/PBSIM-PacBio-Simulator/src'
  63. Makefile:222: recipe for target 'all-recursive' failed
  64. make[1]: *** [all-recursive] Error 1
  65. make[1]: Leaving directory '/home/pierre/dev/PBSIM-PacBio-Simulator'
  66. Makefile:161: recipe for target 'all' failed
  67. make: *** [all] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement