Advertisement
rebcabin

kohlhepp transcript 001

Sep 5th, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. ;;; Loading "/Users/rebcabin/Downloads/ecl-develop-dfb0f28ca278a8fa63ab8601e95f18cb356cd795/initrc.lisp"
  2. I've run the contents of initrc.lisp
  3. ;;; Loading "/Users/rebcabin/quicklisp/setup.lisp"
  4. ;;; Loading #P"/usr/local/lib/ecl-16.0.0/cmp.fas"
  5. ;;; Loading #P"/usr/local/lib/ecl-16.0.0/asdf.fas"
  6. Starting program...
  7. A number is 3.2
  8. Time elapsed 0
  9. Time elapsed 1
  10. Time elapsed 2
  11. C-c C-c^CTime elapsed 3
  12.  
  13. Condition of type: INTERACTIVE-INTERRUPT
  14. Console interrupt.
  15. Available restarts:
  16.  
  17. 1. (CONTINUE) CONTINUE
  18.  
  19. Top level in: #<process TOP-LEVEL>.
  20. > (compile-file "benkard.lisp")
  21. (compile-file "benkard.lisp")
  22.  
  23. ;;;
  24. ;;; Compiling benkard.lisp.
  25. ;;; OPTIMIZE levels: Safety=2, Space=0, Speed=3, Debug=0
  26. ;;;
  27. ;;; Compiling (DEFUN C++HEX ...).
  28. ;;; End of Pass 1.
  29. ;;; Emitting code for C++HEX.
  30. In file included from benkard.c:6:
  31. ./benkard.eclh:7:10: fatal error: 'sstream' file not found
  32. #include <sstream>
  33. ^
  34. 1 error generated.
  35. ;;; Internal error:
  36. ;;; ** Error code 1 when executing
  37. ;;; (RUN-PROGRAM "gcc" ("-I." "-I/usr/local/include/" "-g" "-O2" "-fPIC" "-fno-common" "-D_THREAD_SAFE" "-Ddarwin" "-O2" "-c" "benkard.c" "-o" "benkard.o"))
  38. NIL
  39. T
  40. T
  41. > (RUN-PROGRAM "g++" '("-I." "-I/usr/local/include/" "-g" "-O2" "-fPIC" "-fno-common" "-D_THREAD_SAFE" "-Ddarwin" "-O2" "-c" "benkard.c" "-o" "benkard.o"))
  42. (RUN-PROGRAM "g++" '("-I." "-I/usr/local/include/" "-g" "-O2" "-fPIC" "-fno-common" "-D_THREAD_SAFE" "-Ddarwin" "-O2" "-c" "benkard.c" "-o" "benkard.o"))
  43.  
  44. Debugger received error of type: UNDEFINED-FUNCTION
  45. The function RUN-PROGRAM is undefined.
  46. Error flushed.
  47. >
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement