Advertisement
Guest User

Manually compiling xen

a guest
Apr 10th, 2016
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.30 KB | None | 0 0
  1.  
  2.  
  3. ```
  4. [sarimon@sarimon-linux-pc xen-4.6.1]$ ./configure
  5. checking build system type... x86_64-unknown-linux-gnu
  6. checking host system type... x86_64-unknown-linux-gnu
  7. Will build the following subsystems:
  8.   xen
  9.   tools
  10.   stubdom
  11.   docs
  12. configure: creating ./config.status
  13. config.status: creating config/Toplevel.mk
  14. config.status: creating config/Paths.mk
  15. === configuring in tools (/home/sarimon/Downloads/xen-4.6.1/tools)
  16. configure: running /bin/sh ./configure --disable-option-checking '--prefix=/usr/local'  --cache-file=/dev/null --srcdir=.
  17. checking build system type... x86_64-unknown-linux-gnu
  18. checking host system type... x86_64-unknown-linux-gnu
  19. checking for gcc... gcc
  20. checking whether the C compiler works... yes
  21. checking for C compiler default output file name... a.out
  22. checking for suffix of executables...
  23. checking whether we are cross compiling... no
  24. checking for suffix of object files... o
  25. checking whether we are using the GNU C compiler... yes
  26. checking whether gcc accepts -g... yes
  27. checking for gcc option to accept ISO C89... none needed
  28. checking for special C compiler options needed for large files... no
  29. checking for _FILE_OFFSET_BITS value needed for large files... no
  30. checking for gcc... (cached) gcc
  31. checking whether we are using the GNU C compiler... (cached) yes
  32. checking whether gcc accepts -g... (cached) yes
  33. checking for gcc option to accept ISO C89... (cached) none needed
  34. checking whether make sets $(MAKE)... yes
  35. checking for a BSD-compatible install... /usr/bin/install -c
  36. checking for bison... /usr/sbin/bison
  37. checking for flex... /usr/sbin/flex
  38. checking for perl... /usr/sbin/perl
  39. checking for awk... /usr/sbin/awk
  40. checking for ocamlc... ocamlc
  41. OCaml version is 4.02.3
  42. OCaml library path is /usr/lib/ocaml
  43. checking for ocamlopt... ocamlopt
  44. checking for ocamlc.opt... ocamlc.opt
  45. checking for ocamlopt.opt... ocamlopt.opt
  46. checking for ocaml... ocaml
  47. checking for ocamldep... ocamldep
  48. checking for ocamlmktop... ocamlmktop
  49. checking for ocamlmklib... ocamlmklib
  50. checking for ocamldoc... ocamldoc
  51. checking for ocamlbuild... ocamlbuild
  52. checking for ocamlfind... ocamlfind
  53. checking for gawk... /usr/sbin/awk
  54. checking for checkpolicy... no
  55. checking for bash... /bin/sh
  56. checking for python... /usr/sbin/python
  57. checking for python version >= 2.3 ... yes
  58. checking how to run the C preprocessor... gcc -E
  59. checking for grep that handles long lines and -e... /usr/sbin/grep
  60. checking for egrep... /usr/sbin/grep -E
  61. checking for ANSI C header files... yes
  62. checking for sys/types.h... yes
  63. checking for sys/stat.h... yes
  64. checking for stdlib.h... yes
  65. checking for string.h... yes
  66. checking for memory.h... yes
  67. checking for strings.h... yes
  68. checking for inttypes.h... yes
  69. checking for stdint.h... yes
  70. checking for unistd.h... yes
  71.   File "<string>", line 1
  72.     import distutils.sysconfig;     print distutils.sysconfig.get_config_var("VERSION")
  73.                                                   ^
  74. SyntaxError: invalid syntax
  75. checking for python-config... /usr/sbin/python-config
  76. checking Python.h usability... yes
  77. checking Python.h presence... yes
  78. checking for Python.h... yes
  79. checking for PyArg_ParseTuple in -lpython... no
  80. configure: error: Unable to find a suitable python development library
  81. configure: error: ./configure failed for tools
  82. [sarimon@sarimon-linux-pc xen-4.6.1]$
  83.  
  84.  
  85. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement