Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2016
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 59.20 KB | None | 0 0
  1. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -ggdb -O2 -pipe -Wimplicit-function-declaration conftest.c -L. -L/usr/lib -L. -fstack-protector -lruby220 -lpthread -lgmp -ldl -lcrypt "
  2. checked program was:
  3. /* begin */
  4. 1: #include "ruby.h"
  5. 2:
  6. 3: int main(int argc, char **argv)
  7. 4: {
  8. 5: return 0;
  9. 6: }
  10. /* end */
  11.  
  12. "gcc -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -ggdb -O2 -pipe -Wimplicit-function-declaration -Werror -c conftest.c"
  13. checked program was:
  14. /* begin */
  15. 1: #include "ruby.h"
  16. 2:
  17. 3: int main() {return 0;}
  18. /* end */
  19.  
  20. have_library: checking for gzdopen() in -lz... -------------------- yes
  21.  
  22. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline conftest.c -L. -L/usr/lib -L. -fstack-protector -lruby220 -lz -lpthread -lgmp -ldl -lcrypt "
  23. conftest.c: In function ‘t’:
  24. conftest.c:15:32: warning: variable ‘p’ set but not used [-Wunused-but-set-variable]
  25. int t(void) { void ((*volatile p)()); p = (void ((*)()))gzdopen; return 0; }
  26. ^
  27. checked program was:
  28. /* begin */
  29. 1: #include "ruby.h"
  30. 2:
  31. 3: #include <zlib.h>
  32. 4:
  33. 5: /*top*/
  34. 6: extern int t(void);
  35. 7: int main(int argc, char **argv)
  36. 8: {
  37. 9: if (argc > 1000000) {
  38. 10: printf("%p", &t);
  39. 11: }
  40. 12:
  41. 13: return 0;
  42. 14: }
  43. 15: int t(void) { void ((*volatile p)()); p = (void ((*)()))gzdopen; return 0; }
  44. /* end */
  45.  
  46. --------------------
  47.  
  48. have_iconv?: checking for iconv... -------------------- yes
  49.  
  50. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline conftest.c -L. -L/usr/lib -L. -fstack-protector -lruby220 -lpthread -lgmp -ldl -lcrypt "
  51. /tmp/ccj4mOvI.o: In function `main':
  52. /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ext/nokogiri/conftest.c:8: undefined reference to `libiconv_open'
  53. /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ext/nokogiri/conftest.c:8:(.text.startup+0x14): relocation truncated to fit: R_X86_64_PC32 against undefined symbol `libiconv_open'
  54. /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ext/nokogiri/conftest.c:9: undefined reference to `libiconv'
  55. /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ext/nokogiri/conftest.c:9:(.text.startup+0x2d): relocation truncated to fit: R_X86_64_PC32 against undefined symbol `libiconv'
  56. collect2: error: ld returned 1 exit status
  57. checked program was:
  58. /* begin */
  59. 1: #include "ruby.h"
  60. 2:
  61. 3: #include <stdlib.h>
  62. 4: #include <iconv.h>
  63. 5:
  64. 6: int main(void)
  65. 7: {
  66. 8: iconv_t cd = iconv_open("", "");
  67. 9: iconv(cd, NULL, NULL, NULL, NULL);
  68. 10: return EXIT_SUCCESS;
  69. 11: }
  70. /* end */
  71.  
  72. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline conftest.c -L. -L/usr/lib -L. -fstack-protector -lruby220 -liconv -lpthread -lgmp -ldl -lcrypt "
  73. checked program was:
  74. /* begin */
  75. 1: #include "ruby.h"
  76. 2:
  77. 3: #include <stdlib.h>
  78. 4: #include <iconv.h>
  79. 5:
  80. 6: int main(void)
  81. 7: {
  82. 8: iconv_t cd = iconv_open("", "");
  83. 9: iconv(cd, NULL, NULL, NULL, NULL);
  84. 10: return EXIT_SUCCESS;
  85. 11: }
  86. /* end */
  87.  
  88. --------------------
  89.  
  90. have_library: checking for main() in -llzma... -------------------- yes
  91.  
  92. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES conftest.c -L. -L/usr/lib -L. -fstack-protector -lruby220 -llzma -lpthread -lgmp -ldl -lcrypt "
  93. conftest.c: In function ‘t’:
  94. conftest.c:13:32: warning: variable ‘p’ set but not used [-Wunused-but-set-variable]
  95. int t(void) { void ((*volatile p)()); p = (void ((*)()))main; return 0; }
  96. ^
  97. checked program was:
  98. /* begin */
  99. 1: #include "ruby.h"
  100. 2:
  101. 3: /*top*/
  102. 4: extern int t(void);
  103. 5: int main(int argc, char **argv)
  104. 6: {
  105. 7: if (argc > 1000000) {
  106. 8: printf("%p", &t);
  107. 9: }
  108. 10:
  109. 11: return 0;
  110. 12: }
  111. 13: int t(void) { void ((*volatile p)()); p = (void ((*)()))main; return 0; }
  112. /* end */
  113.  
  114. --------------------
  115.  
  116. have_func: checking for xmlParseDoc() in libxml/parser.h... -------------------- yes
  117.  
  118. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/include -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC "-DNOKOGIRI_LIBXML2_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4\"" "-DNOKOGIRI_LIBXML2_PATCHES=\"\"" "-DNOKOGIRI_LIBXSLT_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29\"" "-DNOKOGIRI_LIBXSLT_PATCHES=\"\"" -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES conftest.c -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib -L. -L/usr/lib -L. -fstack-protector /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lruby220 /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lpthread -lgmp -ldl -lcrypt "
  119. conftest.c: In function ‘t’:
  120. conftest.c:15:32: warning: variable ‘p’ set but not used [-Wunused-but-set-variable]
  121. int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlParseDoc; return 0; }
  122. ^
  123. checked program was:
  124. /* begin */
  125. 1: #include "ruby.h"
  126. 2:
  127. 3: #include <libxml/parser.h>
  128. 4:
  129. 5: /*top*/
  130. 6: extern int t(void);
  131. 7: int main(int argc, char **argv)
  132. 8: {
  133. 9: if (argc > 1000000) {
  134. 10: printf("%p", &t);
  135. 11: }
  136. 12:
  137. 13: return 0;
  138. 14: }
  139. 15: int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlParseDoc; return 0; }
  140. /* end */
  141.  
  142. --------------------
  143.  
  144. have_func: checking for xsltParseStylesheetDoc() in libxslt/xslt.h... -------------------- yes
  145.  
  146. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/include -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC "-DNOKOGIRI_LIBXML2_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4\"" "-DNOKOGIRI_LIBXML2_PATCHES=\"\"" "-DNOKOGIRI_LIBXSLT_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29\"" "-DNOKOGIRI_LIBXSLT_PATCHES=\"\"" -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES conftest.c -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib -L. -L/usr/lib -L. -fstack-protector /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lruby220 /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lpthread -lgmp -ldl -lcrypt "
  147. conftest.c: In function ‘t’:
  148. conftest.c:15:57: error: ‘xsltParseStylesheetDoc’ undeclared (first use in this function)
  149. int t(void) { void ((*volatile p)()); p = (void ((*)()))xsltParseStylesheetDoc; return 0; }
  150. ^
  151. conftest.c:15:57: note: each undeclared identifier is reported only once for each function it appears in
  152. conftest.c:15:32: warning: variable ‘p’ set but not used [-Wunused-but-set-variable]
  153. int t(void) { void ((*volatile p)()); p = (void ((*)()))xsltParseStylesheetDoc; return 0; }
  154. ^
  155. checked program was:
  156. /* begin */
  157. 1: #include "ruby.h"
  158. 2:
  159. 3: #include <libxslt/xslt.h>
  160. 4:
  161. 5: /*top*/
  162. 6: extern int t(void);
  163. 7: int main(int argc, char **argv)
  164. 8: {
  165. 9: if (argc > 1000000) {
  166. 10: printf("%p", &t);
  167. 11: }
  168. 12:
  169. 13: return 0;
  170. 14: }
  171. 15: int t(void) { void ((*volatile p)()); p = (void ((*)()))xsltParseStylesheetDoc; return 0; }
  172. /* end */
  173.  
  174. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/include -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC "-DNOKOGIRI_LIBXML2_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4\"" "-DNOKOGIRI_LIBXML2_PATCHES=\"\"" "-DNOKOGIRI_LIBXSLT_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29\"" "-DNOKOGIRI_LIBXSLT_PATCHES=\"\"" -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES conftest.c -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib -L. -L/usr/lib -L. -fstack-protector /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lruby220 /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lpthread -lgmp -ldl -lcrypt "
  175. conftest.c: In function ‘t’:
  176. conftest.c:15:15: warning: implicit declaration of function ‘xsltParseStylesheetDoc’ [-Wimplicit-function-declaration]
  177. int t(void) { xsltParseStylesheetDoc(); return 0; }
  178. ^
  179. checked program was:
  180. /* begin */
  181. 1: #include "ruby.h"
  182. 2:
  183. 3: #include <libxslt/xslt.h>
  184. 4:
  185. 5: /*top*/
  186. 6: extern int t(void);
  187. 7: int main(int argc, char **argv)
  188. 8: {
  189. 9: if (argc > 1000000) {
  190. 10: printf("%p", &t);
  191. 11: }
  192. 12:
  193. 13: return 0;
  194. 14: }
  195. 15: int t(void) { xsltParseStylesheetDoc(); return 0; }
  196. /* end */
  197.  
  198. --------------------
  199.  
  200. have_func: checking for exsltFuncRegister() in libexslt/exslt.h... -------------------- yes
  201.  
  202. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/include -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC "-DNOKOGIRI_LIBXML2_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4\"" "-DNOKOGIRI_LIBXML2_PATCHES=\"\"" "-DNOKOGIRI_LIBXSLT_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29\"" "-DNOKOGIRI_LIBXSLT_PATCHES=\"\"" -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES conftest.c -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib -L. -L/usr/lib -L. -fstack-protector /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lruby220 /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lpthread -lgmp -ldl -lcrypt "
  203. conftest.c: In function ‘t’:
  204. conftest.c:15:32: warning: variable ‘p’ set but not used [-Wunused-but-set-variable]
  205. int t(void) { void ((*volatile p)()); p = (void ((*)()))exsltFuncRegister; return 0; }
  206. ^
  207. checked program was:
  208. /* begin */
  209. 1: #include "ruby.h"
  210. 2:
  211. 3: #include <libexslt/exslt.h>
  212. 4:
  213. 5: /*top*/
  214. 6: extern int t(void);
  215. 7: int main(int argc, char **argv)
  216. 8: {
  217. 9: if (argc > 1000000) {
  218. 10: printf("%p", &t);
  219. 11: }
  220. 12:
  221. 13: return 0;
  222. 14: }
  223. 15: int t(void) { void ((*volatile p)()); p = (void ((*)()))exsltFuncRegister; return 0; }
  224. /* end */
  225.  
  226. --------------------
  227.  
  228. have_func: checking for xmlHasFeature()... -------------------- yes
  229.  
  230. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/include -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC "-DNOKOGIRI_LIBXML2_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4\"" "-DNOKOGIRI_LIBXML2_PATCHES=\"\"" "-DNOKOGIRI_LIBXSLT_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29\"" "-DNOKOGIRI_LIBXSLT_PATCHES=\"\"" -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES conftest.c -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib -L. -L/usr/lib -L. -fstack-protector /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lruby220 /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lpthread -lgmp -ldl -lcrypt "
  231. conftest.c: In function ‘t’:
  232. conftest.c:13:57: error: ‘xmlHasFeature’ undeclared (first use in this function)
  233. int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlHasFeature; return 0; }
  234. ^
  235. conftest.c:13:57: note: each undeclared identifier is reported only once for each function it appears in
  236. conftest.c:13:32: warning: variable ‘p’ set but not used [-Wunused-but-set-variable]
  237. int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlHasFeature; return 0; }
  238. ^
  239. checked program was:
  240. /* begin */
  241. 1: #include "ruby.h"
  242. 2:
  243. 3: /*top*/
  244. 4: extern int t(void);
  245. 5: int main(int argc, char **argv)
  246. 6: {
  247. 7: if (argc > 1000000) {
  248. 8: printf("%p", &t);
  249. 9: }
  250. 10:
  251. 11: return 0;
  252. 12: }
  253. 13: int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlHasFeature; return 0; }
  254. /* end */
  255.  
  256. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/include -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC "-DNOKOGIRI_LIBXML2_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4\"" "-DNOKOGIRI_LIBXML2_PATCHES=\"\"" "-DNOKOGIRI_LIBXSLT_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29\"" "-DNOKOGIRI_LIBXSLT_PATCHES=\"\"" -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES conftest.c -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib -L. -L/usr/lib -L. -fstack-protector /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lruby220 /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lpthread -lgmp -ldl -lcrypt "
  257. conftest.c: In function ‘t’:
  258. conftest.c:13:15: warning: implicit declaration of function ‘xmlHasFeature’ [-Wimplicit-function-declaration]
  259. int t(void) { xmlHasFeature(); return 0; }
  260. ^
  261. checked program was:
  262. /* begin */
  263. 1: #include "ruby.h"
  264. 2:
  265. 3: /*top*/
  266. 4: extern int t(void);
  267. 5: int main(int argc, char **argv)
  268. 6: {
  269. 7: if (argc > 1000000) {
  270. 8: printf("%p", &t);
  271. 9: }
  272. 10:
  273. 11: return 0;
  274. 12: }
  275. 13: int t(void) { xmlHasFeature(); return 0; }
  276. /* end */
  277.  
  278. --------------------
  279.  
  280. have_func: checking for xmlFirstElementChild()... -------------------- yes
  281.  
  282. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/include -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC "-DNOKOGIRI_LIBXML2_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4\"" "-DNOKOGIRI_LIBXML2_PATCHES=\"\"" "-DNOKOGIRI_LIBXSLT_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29\"" "-DNOKOGIRI_LIBXSLT_PATCHES=\"\"" -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES conftest.c -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib -L. -L/usr/lib -L. -fstack-protector /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lruby220 /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lpthread -lgmp -ldl -lcrypt "
  283. conftest.c: In function ‘t’:
  284. conftest.c:13:57: error: ‘xmlFirstElementChild’ undeclared (first use in this function)
  285. int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlFirstElementChild; return 0; }
  286. ^
  287. conftest.c:13:57: note: each undeclared identifier is reported only once for each function it appears in
  288. conftest.c:13:32: warning: variable ‘p’ set but not used [-Wunused-but-set-variable]
  289. int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlFirstElementChild; return 0; }
  290. ^
  291. checked program was:
  292. /* begin */
  293. 1: #include "ruby.h"
  294. 2:
  295. 3: /*top*/
  296. 4: extern int t(void);
  297. 5: int main(int argc, char **argv)
  298. 6: {
  299. 7: if (argc > 1000000) {
  300. 8: printf("%p", &t);
  301. 9: }
  302. 10:
  303. 11: return 0;
  304. 12: }
  305. 13: int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlFirstElementChild; return 0; }
  306. /* end */
  307.  
  308. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/include -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC "-DNOKOGIRI_LIBXML2_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4\"" "-DNOKOGIRI_LIBXML2_PATCHES=\"\"" "-DNOKOGIRI_LIBXSLT_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29\"" "-DNOKOGIRI_LIBXSLT_PATCHES=\"\"" -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES conftest.c -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib -L. -L/usr/lib -L. -fstack-protector /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lruby220 /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lpthread -lgmp -ldl -lcrypt "
  309. conftest.c: In function ‘t’:
  310. conftest.c:13:15: warning: implicit declaration of function ‘xmlFirstElementChild’ [-Wimplicit-function-declaration]
  311. int t(void) { xmlFirstElementChild(); return 0; }
  312. ^
  313. checked program was:
  314. /* begin */
  315. 1: #include "ruby.h"
  316. 2:
  317. 3: /*top*/
  318. 4: extern int t(void);
  319. 5: int main(int argc, char **argv)
  320. 6: {
  321. 7: if (argc > 1000000) {
  322. 8: printf("%p", &t);
  323. 9: }
  324. 10:
  325. 11: return 0;
  326. 12: }
  327. 13: int t(void) { xmlFirstElementChild(); return 0; }
  328. /* end */
  329.  
  330. --------------------
  331.  
  332. have_func: checking for xmlRelaxNGSetParserStructuredErrors()... -------------------- yes
  333.  
  334. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/include -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC "-DNOKOGIRI_LIBXML2_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4\"" "-DNOKOGIRI_LIBXML2_PATCHES=\"\"" "-DNOKOGIRI_LIBXSLT_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29\"" "-DNOKOGIRI_LIBXSLT_PATCHES=\"\"" -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES conftest.c -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib -L. -L/usr/lib -L. -fstack-protector /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lruby220 /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lpthread -lgmp -ldl -lcrypt "
  335. conftest.c: In function ‘t’:
  336. conftest.c:13:57: error: ‘xmlRelaxNGSetParserStructuredErrors’ undeclared (first use in this function)
  337. int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlRelaxNGSetParserStructuredErrors; return 0; }
  338. ^
  339. conftest.c:13:57: note: each undeclared identifier is reported only once for each function it appears in
  340. conftest.c:13:32: warning: variable ‘p’ set but not used [-Wunused-but-set-variable]
  341. int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlRelaxNGSetParserStructuredErrors; return 0; }
  342. ^
  343. checked program was:
  344. /* begin */
  345. 1: #include "ruby.h"
  346. 2:
  347. 3: /*top*/
  348. 4: extern int t(void);
  349. 5: int main(int argc, char **argv)
  350. 6: {
  351. 7: if (argc > 1000000) {
  352. 8: printf("%p", &t);
  353. 9: }
  354. 10:
  355. 11: return 0;
  356. 12: }
  357. 13: int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlRelaxNGSetParserStructuredErrors; return 0; }
  358. /* end */
  359.  
  360. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/include -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC "-DNOKOGIRI_LIBXML2_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4\"" "-DNOKOGIRI_LIBXML2_PATCHES=\"\"" "-DNOKOGIRI_LIBXSLT_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29\"" "-DNOKOGIRI_LIBXSLT_PATCHES=\"\"" -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES conftest.c -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib -L. -L/usr/lib -L. -fstack-protector /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lruby220 /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lpthread -lgmp -ldl -lcrypt "
  361. conftest.c: In function ‘t’:
  362. conftest.c:13:15: warning: implicit declaration of function ‘xmlRelaxNGSetParserStructuredErrors’ [-Wimplicit-function-declaration]
  363. int t(void) { xmlRelaxNGSetParserStructuredErrors(); return 0; }
  364. ^
  365. checked program was:
  366. /* begin */
  367. 1: #include "ruby.h"
  368. 2:
  369. 3: /*top*/
  370. 4: extern int t(void);
  371. 5: int main(int argc, char **argv)
  372. 6: {
  373. 7: if (argc > 1000000) {
  374. 8: printf("%p", &t);
  375. 9: }
  376. 10:
  377. 11: return 0;
  378. 12: }
  379. 13: int t(void) { xmlRelaxNGSetParserStructuredErrors(); return 0; }
  380. /* end */
  381.  
  382. --------------------
  383.  
  384. have_func: checking for xmlRelaxNGSetParserStructuredErrors()... -------------------- yes
  385.  
  386. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/include -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC "-DNOKOGIRI_LIBXML2_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4\"" "-DNOKOGIRI_LIBXML2_PATCHES=\"\"" "-DNOKOGIRI_LIBXSLT_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29\"" "-DNOKOGIRI_LIBXSLT_PATCHES=\"\"" -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES conftest.c -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib -L. -L/usr/lib -L. -fstack-protector /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lruby220 /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lpthread -lgmp -ldl -lcrypt "
  387. conftest.c: In function ‘t’:
  388. conftest.c:13:57: error: ‘xmlRelaxNGSetParserStructuredErrors’ undeclared (first use in this function)
  389. int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlRelaxNGSetParserStructuredErrors; return 0; }
  390. ^
  391. conftest.c:13:57: note: each undeclared identifier is reported only once for each function it appears in
  392. conftest.c:13:32: warning: variable ‘p’ set but not used [-Wunused-but-set-variable]
  393. int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlRelaxNGSetParserStructuredErrors; return 0; }
  394. ^
  395. checked program was:
  396. /* begin */
  397. 1: #include "ruby.h"
  398. 2:
  399. 3: /*top*/
  400. 4: extern int t(void);
  401. 5: int main(int argc, char **argv)
  402. 6: {
  403. 7: if (argc > 1000000) {
  404. 8: printf("%p", &t);
  405. 9: }
  406. 10:
  407. 11: return 0;
  408. 12: }
  409. 13: int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlRelaxNGSetParserStructuredErrors; return 0; }
  410. /* end */
  411.  
  412. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/include -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC "-DNOKOGIRI_LIBXML2_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4\"" "-DNOKOGIRI_LIBXML2_PATCHES=\"\"" "-DNOKOGIRI_LIBXSLT_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29\"" "-DNOKOGIRI_LIBXSLT_PATCHES=\"\"" -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES conftest.c -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib -L. -L/usr/lib -L. -fstack-protector /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lruby220 /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lpthread -lgmp -ldl -lcrypt "
  413. conftest.c: In function ‘t’:
  414. conftest.c:13:15: warning: implicit declaration of function ‘xmlRelaxNGSetParserStructuredErrors’ [-Wimplicit-function-declaration]
  415. int t(void) { xmlRelaxNGSetParserStructuredErrors(); return 0; }
  416. ^
  417. checked program was:
  418. /* begin */
  419. 1: #include "ruby.h"
  420. 2:
  421. 3: /*top*/
  422. 4: extern int t(void);
  423. 5: int main(int argc, char **argv)
  424. 6: {
  425. 7: if (argc > 1000000) {
  426. 8: printf("%p", &t);
  427. 9: }
  428. 10:
  429. 11: return 0;
  430. 12: }
  431. 13: int t(void) { xmlRelaxNGSetParserStructuredErrors(); return 0; }
  432. /* end */
  433.  
  434. --------------------
  435.  
  436. have_func: checking for xmlRelaxNGSetValidStructuredErrors()... -------------------- yes
  437.  
  438. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/include -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC "-DNOKOGIRI_LIBXML2_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4\"" "-DNOKOGIRI_LIBXML2_PATCHES=\"\"" "-DNOKOGIRI_LIBXSLT_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29\"" "-DNOKOGIRI_LIBXSLT_PATCHES=\"\"" -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES conftest.c -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib -L. -L/usr/lib -L. -fstack-protector /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lruby220 /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lpthread -lgmp -ldl -lcrypt "
  439. conftest.c: In function ‘t’:
  440. conftest.c:13:57: error: ‘xmlRelaxNGSetValidStructuredErrors’ undeclared (first use in this function)
  441. int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlRelaxNGSetValidStructuredErrors; return 0; }
  442. ^
  443. conftest.c:13:57: note: each undeclared identifier is reported only once for each function it appears in
  444. conftest.c:13:32: warning: variable ‘p’ set but not used [-Wunused-but-set-variable]
  445. int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlRelaxNGSetValidStructuredErrors; return 0; }
  446. ^
  447. checked program was:
  448. /* begin */
  449. 1: #include "ruby.h"
  450. 2:
  451. 3: /*top*/
  452. 4: extern int t(void);
  453. 5: int main(int argc, char **argv)
  454. 6: {
  455. 7: if (argc > 1000000) {
  456. 8: printf("%p", &t);
  457. 9: }
  458. 10:
  459. 11: return 0;
  460. 12: }
  461. 13: int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlRelaxNGSetValidStructuredErrors; return 0; }
  462. /* end */
  463.  
  464. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/include -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC "-DNOKOGIRI_LIBXML2_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4\"" "-DNOKOGIRI_LIBXML2_PATCHES=\"\"" "-DNOKOGIRI_LIBXSLT_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29\"" "-DNOKOGIRI_LIBXSLT_PATCHES=\"\"" -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES conftest.c -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib -L. -L/usr/lib -L. -fstack-protector /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lruby220 /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lpthread -lgmp -ldl -lcrypt "
  465. conftest.c: In function ‘t’:
  466. conftest.c:13:15: warning: implicit declaration of function ‘xmlRelaxNGSetValidStructuredErrors’ [-Wimplicit-function-declaration]
  467. int t(void) { xmlRelaxNGSetValidStructuredErrors(); return 0; }
  468. ^
  469. checked program was:
  470. /* begin */
  471. 1: #include "ruby.h"
  472. 2:
  473. 3: /*top*/
  474. 4: extern int t(void);
  475. 5: int main(int argc, char **argv)
  476. 6: {
  477. 7: if (argc > 1000000) {
  478. 8: printf("%p", &t);
  479. 9: }
  480. 10:
  481. 11: return 0;
  482. 12: }
  483. 13: int t(void) { xmlRelaxNGSetValidStructuredErrors(); return 0; }
  484. /* end */
  485.  
  486. --------------------
  487.  
  488. have_func: checking for xmlSchemaSetValidStructuredErrors()... -------------------- yes
  489.  
  490. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/include -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC "-DNOKOGIRI_LIBXML2_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4\"" "-DNOKOGIRI_LIBXML2_PATCHES=\"\"" "-DNOKOGIRI_LIBXSLT_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29\"" "-DNOKOGIRI_LIBXSLT_PATCHES=\"\"" -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES conftest.c -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib -L. -L/usr/lib -L. -fstack-protector /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lruby220 /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lpthread -lgmp -ldl -lcrypt "
  491. conftest.c: In function ‘t’:
  492. conftest.c:13:57: error: ‘xmlSchemaSetValidStructuredErrors’ undeclared (first use in this function)
  493. int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlSchemaSetValidStructuredErrors; return 0; }
  494. ^
  495. conftest.c:13:57: note: each undeclared identifier is reported only once for each function it appears in
  496. conftest.c:13:32: warning: variable ‘p’ set but not used [-Wunused-but-set-variable]
  497. int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlSchemaSetValidStructuredErrors; return 0; }
  498. ^
  499. checked program was:
  500. /* begin */
  501. 1: #include "ruby.h"
  502. 2:
  503. 3: /*top*/
  504. 4: extern int t(void);
  505. 5: int main(int argc, char **argv)
  506. 6: {
  507. 7: if (argc > 1000000) {
  508. 8: printf("%p", &t);
  509. 9: }
  510. 10:
  511. 11: return 0;
  512. 12: }
  513. 13: int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlSchemaSetValidStructuredErrors; return 0; }
  514. /* end */
  515.  
  516. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/include -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC "-DNOKOGIRI_LIBXML2_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4\"" "-DNOKOGIRI_LIBXML2_PATCHES=\"\"" "-DNOKOGIRI_LIBXSLT_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29\"" "-DNOKOGIRI_LIBXSLT_PATCHES=\"\"" -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES conftest.c -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib -L. -L/usr/lib -L. -fstack-protector /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lruby220 /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lpthread -lgmp -ldl -lcrypt "
  517. conftest.c: In function ‘t’:
  518. conftest.c:13:15: warning: implicit declaration of function ‘xmlSchemaSetValidStructuredErrors’ [-Wimplicit-function-declaration]
  519. int t(void) { xmlSchemaSetValidStructuredErrors(); return 0; }
  520. ^
  521. checked program was:
  522. /* begin */
  523. 1: #include "ruby.h"
  524. 2:
  525. 3: /*top*/
  526. 4: extern int t(void);
  527. 5: int main(int argc, char **argv)
  528. 6: {
  529. 7: if (argc > 1000000) {
  530. 8: printf("%p", &t);
  531. 9: }
  532. 10:
  533. 11: return 0;
  534. 12: }
  535. 13: int t(void) { xmlSchemaSetValidStructuredErrors(); return 0; }
  536. /* end */
  537.  
  538. --------------------
  539.  
  540. have_func: checking for xmlSchemaSetParserStructuredErrors()... -------------------- yes
  541.  
  542. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/include -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC "-DNOKOGIRI_LIBXML2_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4\"" "-DNOKOGIRI_LIBXML2_PATCHES=\"\"" "-DNOKOGIRI_LIBXSLT_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29\"" "-DNOKOGIRI_LIBXSLT_PATCHES=\"\"" -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES conftest.c -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib -L. -L/usr/lib -L. -fstack-protector /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lruby220 /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lpthread -lgmp -ldl -lcrypt "
  543. conftest.c: In function ‘t’:
  544. conftest.c:13:57: error: ‘xmlSchemaSetParserStructuredErrors’ undeclared (first use in this function)
  545. int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlSchemaSetParserStructuredErrors; return 0; }
  546. ^
  547. conftest.c:13:57: note: each undeclared identifier is reported only once for each function it appears in
  548. conftest.c:13:32: warning: variable ‘p’ set but not used [-Wunused-but-set-variable]
  549. int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlSchemaSetParserStructuredErrors; return 0; }
  550. ^
  551. checked program was:
  552. /* begin */
  553. 1: #include "ruby.h"
  554. 2:
  555. 3: /*top*/
  556. 4: extern int t(void);
  557. 5: int main(int argc, char **argv)
  558. 6: {
  559. 7: if (argc > 1000000) {
  560. 8: printf("%p", &t);
  561. 9: }
  562. 10:
  563. 11: return 0;
  564. 12: }
  565. 13: int t(void) { void ((*volatile p)()); p = (void ((*)()))xmlSchemaSetParserStructuredErrors; return 0; }
  566. /* end */
  567.  
  568. "gcc -o conftest.exe -I/usr/include/ruby-2.2.0 -I/usr/include/ruby-2.2.0/ruby/backward -I/usr/include/ruby-2.2.0 -I. -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/include -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC -I/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/include/libxml2 -DLIBXML_STATIC "-DNOKOGIRI_LIBXML2_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4\"" "-DNOKOGIRI_LIBXML2_PATCHES=\"\"" "-DNOKOGIRI_LIBXSLT_PATH=\"/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29\"" "-DNOKOGIRI_LIBXSLT_PATCHES=\"\"" -ggdb -O2 -pipe -Wimplicit-function-declaration -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES conftest.c -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib -L/home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib -L. -L/usr/lib -L. -fstack-protector /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lruby220 /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libexslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxslt/1.1.29/lib/libxslt.a -lm -liconv -llzma -lz /home/Rok/moebooru/.bundle/ruby/gems/nokogiri-1.6.8.1/ports/x86_64-unknown-cygwin/libxml2/2.9.4/lib/libxml2.a -llzma -lpthread -lgmp -ldl -lcrypt "
  569. conftest.c: In function ‘t’:
  570. conftest.c:13:15: warning: implicit declaration of function ‘xmlSchemaSetParserStructuredErrors’ [-Wimplicit-function-declaration]
  571. int t(void) { xmlSchemaSetParserStructuredErrors(); return 0; }
  572. ^
  573. checked program was:
  574. /* begin */
  575. 1: #include "ruby.h"
  576. 2:
  577. 3: /*top*/
  578. 4: extern int t(void);
  579. 5: int main(int argc, char **argv)
  580. 6: {
  581. 7: if (argc > 1000000) {
  582. 8: printf("%p", &t);
  583. 9: }
  584. 10:
  585. 11: return 0;
  586. 12: }
  587. 13: int t(void) { xmlSchemaSetParserStructuredErrors(); return 0; }
  588. /* end */
  589.  
  590. --------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement