Advertisement
Dediggefedde

output makefile ubuntu

Feb 19th, 2014
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.06 KB | None | 0 0
  1. gcc -Wall -g -o extract_timestamps extract_timestamps.c filename_treatment.o \
  2. basic_analysis.o collection.o read_lecroy_file.o read_tek_file.o stamp_handling.o \
  3. treat_lecroy_file.o treat_tek_file.o save_timestamps.o injection_statistics.o \
  4. calc_time_stamp.o peak_finding.o get_timestamps.o; chmod go+rx extract_timestamps -lm
  5. extract_timestamps.c:37:1: Warnung: Rückgabetyp ist auf »int« voreingestellt [-Wreturn-type]
  6. extract_timestamps.c: In Funktion »main«:
  7. extract_timestamps.c:59:3: Warnung: Implizite Deklaration der Funktion »getArgs« [-Wimplicit-function-declaration]
  8. extract_timestamps.c:93:7: Warnung: Implizite Deklaration der Funktion »treat_tek_file« [-Wimplicit-function-declaration]
  9. extract_timestamps.c:122:5: Warnung: Implizite Deklaration der Funktion »treat_lecroy_file« [-Wimplicit-function-declaration]
  10. extract_timestamps.c:38:7: Warnung: Variable »subroutine_return_value« gesetzt, aber nicht verwendet [-Wunused-but-set-variable]
  11. extract_timestamps.c:140:1: Warnung: Kontrollfluss erreicht Ende von Nicht-void-Funktion [-Wreturn-type]
  12. basic_analysis.o: In function `get_baseline':
  13. basic_analysis.c:(.text+0x7b): undefined reference to `pow'
  14. basic_analysis.c:(.text+0x216): undefined reference to `sqrt'
  15. basic_analysis.c:(.text+0x241): undefined reference to `pow'
  16. basic_analysis.c:(.text+0x263): undefined reference to `sqrt'
  17. basic_analysis.o: In function `get_tek_baseline':
  18. basic_analysis.c:(.text+0x2fb): undefined reference to `pow'
  19. basic_analysis.c:(.text+0x496): undefined reference to `sqrt'
  20. basic_analysis.c:(.text+0x4c1): undefined reference to `pow'
  21. basic_analysis.c:(.text+0x4e3): undefined reference to `sqrt'
  22. read_tek_file.o: In function `read_tek_data':
  23. read_tek_file.c:(.text+0x362): undefined reference to `pow'
  24. calc_time_stamp.o: In function `fitline':
  25. calc_time_stamp.c:(.text+0x165): undefined reference to `sqrt'
  26. calc_time_stamp.o: In function `timestamp_line':
  27. calc_time_stamp.c:(.text+0x323): undefined reference to `sqrt'
  28. calc_time_stamp.c:(.text+0x349): undefined reference to `sqrt'
  29. calc_time_stamp.o: In function `timestamp_parabola1':
  30. calc_time_stamp.c:(.text+0xc28): undefined reference to `sqrt'
  31. calc_time_stamp.o: In function `timestamp_parabola2':
  32. calc_time_stamp.c:(.text+0x1063): undefined reference to `pow'
  33. calc_time_stamp.c:(.text+0x107f): undefined reference to `pow'
  34. calc_time_stamp.c:(.text+0x10f2): undefined reference to `pow'
  35. calc_time_stamp.c:(.text+0x116f): undefined reference to `pow'
  36. calc_time_stamp.c:(.text+0x12a8): undefined reference to `sqrt'
  37. calc_time_stamp.c:(.text+0x12e9): undefined reference to `sqrt'
  38. calc_time_stamp.c:(.text+0x1333): undefined reference to `sqrt'
  39. calc_time_stamp.c:(.text+0x1364): undefined reference to `sqrt'
  40. calc_time_stamp.c:(.text+0x13c5): undefined reference to `sqrt'
  41. calc_time_stamp.o:calc_time_stamp.c:(.text+0x144e): more undefined references to `sqrt' follow
  42. collect2: ld gab 1 als Ende-Status zurück
  43. chmod: Ungültige Option -- l
  44. „chmod --help“ gibt weitere Informationen.
  45. make: *** [extract_timestamps] Fehler 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement