Advertisement
Guest User

Untitled

a guest
Oct 10th, 2015
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.43 KB | None | 0 0
  1. rm -f cc.h
  2. echo "/* this file automatically generated by the Makefile */" > cc.h
  3. echo '#define COMPILER "gcc"' >> cc.h
  4. echo '#define OPTIMIZE "-O2"' >> cc.h
  5. echo '#define CFLAGS "-D__USE_FIXED_PROTOTYPES__ -O2"' >> cc.h
  6. echo '#define OBJDIR "obj"' >> cc.h
  7. gcc -D__USE_FIXED_PROTOTYPES__ -o obj/edit_source.o -c edit_source.c
  8. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/hash.o -c hash.c
  9. bison -d -y make_func.y
  10. rm -f make_func.tab.c
  11. mv y.tab.c make_func.tab.c
  12. gcc -D__USE_FIXED_PROTOTYPES__ -o obj/make_func.tab.o -c make_func.tab.c
  13. gcc -D__USE_FIXED_PROTOTYPES__ obj/edit_source.o obj/hash.o obj/make_func.tab.o -o edit_source
  14. if test \( ! -r configure.h \) -o \( ! -r configuration \); then \
  15. rm -f configuration; \
  16. touch configuration; \
  17. fi
  18. if test "Machine `uname -a` Configure version 5" = "`cat configuration`"; then \
  19. echo "Skipping configuration ..."; \
  20. else \
  21. ./edit_source -configure; \
  22. echo "Machine `uname -a` Configure version 5" > configuration; \
  23. fi
  24. Checking for include file <stdlib.h> ... exists
  25. Checking for include file <unistd.h> ... exists
  26. Checking for include file <time.h> ... exists
  27. Checking for include file <sys/times.h> ... exists
  28. Checking for include file <fcntl.h> ... exists
  29. Checking for include file <sys/time.h> ... exists
  30. Checking for include file <dos.h> ... does not exist
  31. Checking for include file <usclkc.h> ... does not exist
  32. Checking for include file <limits.h> ... exists
  33. Checking for include file <locale.h> ... exists
  34. Checking for include file <netinet/in.h> ... exists
  35. Checking for include file <arpa/inet.h> ... exists
  36. Checking for include file <sys/types.h> ... exists
  37. Checking for include file <sys/ioctl.h> ... exists
  38. Checking for include file <sys/socket.h> ... exists
  39. Checking for include file <netdb.h> ... exists
  40. Checking for include file <arpa/telnet.h> ... exists
  41. Checking for include file <sys/sema.h> ... does not exist
  42. Checking for include file <sys/socketvar.h> ... exists
  43. Checking for include file <socket.h> ... does not exist
  44. Checking for include file <resolve.h> ... does not exist
  45. Checking for include file <sys/stat.h> ... exists
  46. Checking for include file <dirent.h> ... exists
  47. Checking for include file <sys/dirent.h> ... does not exist
  48. Checking for include file <sys/filio.h> ... does not exist
  49. Checking for include file <sys/sockio.h> ... does not exist
  50. Checking for include file <sys/mkdev.h> ... does not exist
  51. Checking for include file <sys/resource.h> ... exists
  52. Checking for include file <sys/rusage.h> ... does not exist
  53. Checking for include file <sys/wait.h> ... exists
  54. Checking for include file <sys/crypt.h> ... does not exist
  55. Checking for include file <crypt.h> ... exists
  56. Checking for include file <my_malloc.h> ... does not exist
  57. Checking for include file <mach/mach.h> ... does not exist
  58. Checking for include file <mach.h> ... does not exist
  59. Checking for include file <sys/sysmacros.h> ... exists
  60. Checking for include file <dlfcn.h> ... exists
  61. Checking for missing INADDR_NONE ... ok
  62. Checking for random number generator ... using drand48()
  63. Using BSD signals.
  64. Checking if signal() returns SIG_ERR on error ... yes
  65. Not Checking for inline ...(usage in driver code all broken anyway) const ...
  66. Checking for strerror() ... exists
  67. Checking for POSIX getcwd() ... exists
  68. Checking for getrusage() ... exists
  69. Checking for times() ... exists
  70. Checking for gettimeofday() ... exists
  71. Checking for fchmod() ... exists
  72. Checking for big or little endian ... little
  73. Checking for memmove() ... exists
  74. Checking for library -lresolv ... exists
  75. Checking for library -lbsd ... does not exist
  76. Checking for library -lBSD ... does not exist
  77. Checking for library -ly ... exists
  78. Checking for library -lcrypt ... exists
  79. Checking for library -lsocket ... does not exist
  80. Checking for library -linet ... does not exist
  81. Checking for library -lnsl ... exists
  82. Checking for library -lnsl_s ... does not exist
  83. Checking for library -lseq ... does not exist
  84. Checking for library -lm ... exists
  85. Checking for library -lz ... exists
  86. Checking for library -lrt ... exists
  87.  
  88. ./edit_source -options -malloc -build_func_spec 'gcc -E -D__USE_FIXED_PROTOTYPES__' \
  89. -process grammar.y.pre
  90. Using 'local_options' file ...
  91. Using memory allocation package: sysmalloc.c
  92.  
  93. ./edit_source -process packages/Makefile.pre
  94.  
  95. ./edit_source -process packages/GNUmakefile.pre
  96.  
  97. ./edit_source -build_efuns -build_applies
  98.  
  99. touch mallocwrapper.c
  100. touch malloc.c
  101. touch files
  102. make main_build2
  103. make[1]: Entering directory '/home/strbldsnch/dw_fluffos_v3/fluffos-2.15-ds08'
  104. make -C packages 'CC=gcc' 'CFLAGS=-D__USE_FIXED_PROTOTYPES__ -O2' 'OBJDIR=../obj' 'RANLIB=ranlib' 'A=a' 'O=o'
  105. make[2]: Entering directory '/home/strbldsnch/dw_fluffos_v3/fluffos-2.15-ds08/packages'
  106. gcc -I../obj -I.. -D__USE_FIXED_PROTOTYPES__ -O2 -o ../obj/uids.o -c uids.c
  107. gcc -I../obj -I.. -D__USE_FIXED_PROTOTYPES__ -O2 -o ../obj/compress.o -c compress.c
  108. gcc -I../obj -I.. -D__USE_FIXED_PROTOTYPES__ -O2 -o ../obj/math.o -c math.c
  109. gcc -I../obj -I.. -D__USE_FIXED_PROTOTYPES__ -O2 -o ../obj/develop.o -c develop.c
  110. gcc -I../obj -I.. -D__USE_FIXED_PROTOTYPES__ -O2 -o ../obj/external.o -c external.c
  111. gcc -I../obj -I.. -D__USE_FIXED_PROTOTYPES__ -O2 -o ../obj/contrib.o -c contrib.c
  112. gcc -I../obj -I.. -D__USE_FIXED_PROTOTYPES__ -O2 -o ../obj/sockets.o -c sockets.c
  113. gcc -I../obj -I.. -D__USE_FIXED_PROTOTYPES__ -O2 -o ../obj/async.o -c async.c
  114. gcc -I../obj -I.. -D__USE_FIXED_PROTOTYPES__ -O2 -o ../obj/dwlib.o -c dwlib.c
  115. ar rcu packages.a ../obj/uids.o ../obj/compress.o ../obj/math.o ../obj/develop.o ../obj/external.o ../obj/contrib.o ../obj/sockets.o ../obj/async.o ../obj/dwlib.o
  116. ranlib packages.a
  117. make[2]: Leaving directory '/home/strbldsnch/dw_fluffos_v3/fluffos-2.15-ds08/packages'
  118. bison -d -y grammar.y
  119. rm -f grammar.tab.*
  120. sed "s/y.tab.c/grammar.tab.c/g" y.tab.c > grammar.tab.c
  121. mv y.tab.h grammar.tab.h
  122. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/grammar.tab.o -c grammar.tab.c
  123. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/lex.o -c lex.c
  124. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/main.o -c main.c
  125. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/rc.o -c rc.c
  126. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/interpret.o -c interpret.c
  127. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/simulate.o -c simulate.c
  128. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/file.o -c file.c
  129. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/object.o -c object.c
  130. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/backend.o -c backend.c
  131. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/array.o -c array.c
  132. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/mapping.o -c mapping.c
  133. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/comm.o -c comm.c
  134. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/ed.o -c ed.c
  135. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/regexp.o -c regexp.c
  136. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/buffer.o -c buffer.c
  137. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/crc32.o -c crc32.c
  138. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/malloc.o -c malloc.c
  139. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/mallocwrapper.o -c mallocwrapper.c
  140. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/class.o -c class.c
  141. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/efuns_main.o -c efuns_main.c
  142. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/efuns_port.o -c efuns_port.c
  143. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/call_out.o -c call_out.c
  144. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/otable.o -c otable.c
  145. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/dumpstat.o -c dumpstat.c
  146. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/stralloc.o -c stralloc.c
  147. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/port.o -c port.c
  148. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/reclaim.o -c reclaim.c
  149. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/parse.o -c parse.c
  150. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/simul_efun.o -c simul_efun.c
  151. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/sprintf.o -c sprintf.c
  152. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/program.o -c program.c
  153. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/compiler.o -c compiler.c
  154. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/avltree.o -c avltree.c
  155. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/icode.o -c icode.c
  156. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/trees.o -c trees.c
  157. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/generate.o -c generate.c
  158. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/scratchpad.o -c scratchpad.c
  159. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/socket_efuns.o -c socket_efuns.c
  160. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/socket_ctrl.o -c socket_ctrl.c
  161. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/qsort.o -c qsort.c
  162. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/eoperators.o -c eoperators.c
  163. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/socket_err.o -c socket_err.c
  164. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/md.o -c md.c
  165. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/disassembler.o -c disassembler.c
  166. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/uvalarm.o -c uvalarm.c
  167. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/replace_program.o -c replace_program.c
  168. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/master.o -c master.c
  169. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/function.o -c function.c
  170. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/debug.o -c debug.c
  171. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/crypt.o -c crypt.c
  172. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/applies_table.o -c applies_table.c
  173. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/add_action.o -c add_action.c
  174. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/eval.o -c eval.c
  175. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/fliconv.o -c fliconv.c
  176. gcc -D__USE_FIXED_PROTOTYPES__ -O2 -o obj/console.o -c console.c
  177. mv -f driver driver.old
  178. GNUmakefile:113: recipe for target 'driver' failed
  179. gcc -D__USE_FIXED_PROTOTYPES__ -O2 obj/grammar.tab.o obj/lex.o obj/main.o obj/rc.o obj/interpret.o obj/simulate.o obj/file.o obj/object.o obj/backend.o obj/array.o obj/mapping.o obj/comm.o obj/ed.o obj/regexp.o obj/buffer.o obj/crc32.o obj/malloc.o obj/mallocwrapper.o obj/class.o obj/efuns_main.o obj/efuns_port.o obj/call_out.o obj/otable.o obj/dumpstat.o obj/stralloc.o obj/hash.o obj/port.o obj/reclaim.o obj/parse.o obj/simul_efun.o obj/sprintf.o obj/program.o obj/compiler.o obj/avltree.o obj/icode.o obj/trees.o obj/generate.o obj/scratchpad.o obj/socket_efuns.o obj/socket_ctrl.o obj/qsort.o obj/eoperators.o obj/socket_err.o obj/md.o obj/disassembler.o obj/uvalarm.o obj/replace_program.o obj/master.o obj/function.o obj/debug.o obj/crypt.o obj/applies_table.o obj/add_action.o obj/eval.o obj/fliconv.o obj/console.o -o driver packages/packages.a `cat system_libs`
  180. GNUmakefile:113: recipe for target 'driver' failed
  181. make[1]: Leaving directory '/home/strbldsnch/dw_fluffos_v3/fluffos-2.15-ds08'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement