Advertisement
Guest User

Untitled

a guest
Jul 5th, 2017
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.04 KB | None | 0 0
  1. env
  2. ============================
  3. OSTYPE=FreeBSD
  4. MACHTYPE=x86_64
  5. CC=clang
  6. CLICOLOR=
  7. XAUTHORITY=/home/blubee/.Xauthority
  8. MAIL=/var/mail/blubee
  9. PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/home/blubee/bin
  10. EDITOR=vi
  11. LDFLAGS=-L/usr/local/lib
  12. LD_LIBRARY_PATH=/usr/local/llvm38/lib
  13. CPPFLAGS=-I/usr/local/include
  14. USER=blubee
  15. CXX=clang++
  16. SHELL=/bin/tcsh
  17. HOSTTYPE=FreeBSD
  18. CFLAGS=-I/usr/local/include
  19.  
  20.  
  21. ./configure --prefix=/tmp
  22. checking for a BSD-compatible install... /usr/bin/install -c
  23. checking whether build environment is sane... yes
  24. checking for a thread-safe mkdir -p... /usr/local/bin/gmkdir -p
  25. checking for gawk... gawk
  26. checking whether make sets $(MAKE)... yes
  27. checking whether make supports nested variables... yes
  28. checking for gcc... clang
  29. checking whether the C compiler works... yes
  30. checking for C compiler default output file name... a.out
  31. checking for suffix of executables...
  32. checking whether we are cross compiling... no
  33. checking for suffix of object files... o
  34. checking whether we are using the GNU C compiler... yes
  35. checking whether clang accepts -g... yes
  36. checking for clang option to accept ISO C89... none needed
  37. checking whether clang understands -c and -o together... yes
  38. checking for style of include used by make... GNU
  39. checking dependency style of clang... gcc3
  40. checking whether ln -s works... yes
  41. checking build system type... amd64-unknown-freebsd12.0
  42. checking host system type... amd64-unknown-freebsd12.0
  43. checking how to print strings... printf
  44. checking for a sed that does not truncate output... /usr/local/bin/gsed
  45. checking for grep that handles long lines and -e... /usr/bin/grep
  46. checking for egrep... /usr/bin/grep -E
  47. checking for fgrep... /usr/bin/grep -F
  48. checking for ld used by clang... /usr/bin/ld
  49. checking if the linker (/usr/bin/ld) is GNU ld... yes
  50. checking for BSD- or MS-compatible name lister (nm)... /usr/local/bin/nm -B
  51. checking the name lister (/usr/local/bin/nm -B) interface... BSD nm
  52. checking the maximum length of command line arguments... 196608
  53. checking how to convert amd64-unknown-freebsd12.0 file names to amd64-unknown-freebsd12.0 format... func_convert_file_noop
  54. checking how to convert amd64-unknown-freebsd12.0 file names to toolchain format... func_convert_file_noop
  55. checking for /usr/bin/ld option to reload object files... -r
  56. checking for objdump... objdump
  57. checking how to recognize dependent libraries... pass_all
  58. checking for dlltool... no
  59. checking how to associate runtime and link libraries... printf %s\n
  60. checking for ar... ar
  61. checking for archiver @FILE support... no
  62. checking for strip... strip
  63. checking for ranlib... ranlib
  64. checking command to parse /usr/local/bin/nm -B output from clang object... ok
  65. checking for sysroot... no
  66. checking for a working dd... /bin/dd
  67. checking how to truncate binary pipes... /bin/dd bs=4096 count=1
  68. checking for mt... mt
  69. checking if mt is a manifest tool... no
  70. checking how to run the C preprocessor... clang -E
  71. checking for ANSI C header files... yes
  72. checking for sys/types.h... yes
  73. checking for sys/stat.h... yes
  74. checking for stdlib.h... yes
  75. checking for string.h... yes
  76. checking for memory.h... yes
  77. checking for strings.h... yes
  78. checking for inttypes.h... yes
  79. checking for stdint.h... yes
  80. checking for unistd.h... yes
  81. checking for dlfcn.h... yes
  82. checking for objdir... .libs
  83. checking if clang supports -fno-rtti -fno-exceptions... yes
  84. checking for clang option to produce PIC... -fPIC -DPIC
  85. checking if clang PIC flag -fPIC -DPIC works... yes
  86. checking if clang static flag -static works... yes
  87. checking if clang supports -c -o file.o... yes
  88. checking if clang supports -c -o file.o... (cached) yes
  89. checking whether the clang linker (/usr/bin/ld) supports shared libraries... yes
  90. checking whether -lc should be explicitly linked in... no
  91. checking dynamic linker characteristics... freebsd12.0 ld.so
  92. checking how to hardcode library paths into programs... immediate
  93. checking whether stripping libraries is possible... no
  94. checking if libtool supports shared libraries... yes
  95. checking whether to build shared libraries... yes
  96. checking whether to build static libraries... yes
  97. checking for dlopen in -ldl... no
  98. checking for ANSI C header files... (cached) yes
  99. checking fcntl.h usability... yes
  100. checking fcntl.h presence... yes
  101. checking for fcntl.h... yes
  102. checking for stdlib.h... (cached) yes
  103.  
  104. make error
  105. /bin/sh ../libtool --tag=CC --mode=link clang -O2 -L/usr/local/lib -o epson_inkjet_printer_filter main.o raster_to_epson.o -ldl -lstdc++ -lcupsimage -lcups -ljpeg -lm ./memory/libmemory.la ./pagemanager/libpagemanager.la ./filteropt/libfilteropt.la ./raster/libraster.la
  106. libtool: link: clang -O2 -o epson_inkjet_printer_filter main.o raster_to_epson.o -L/usr/local/lib -ldl -lstdc++ -lcupsimage -lcups -ljpeg -lm ./memory/.libs/libmemory.a ./pagemanager/.libs/libpagemanager.a ./filteropt/.libs/libfilteropt.a ./raster/.libs/libraster.a
  107. /usr/bin/ld: cannot find -ldl
  108. clang: error: linker command failed with exit code 1 (use -v to see invocation)
  109. *** Error code 1
  110.  
  111. Stop.
  112. make[3]: stopped
  113. *** Error code 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement