Advertisement
Guest User

Untitled

a guest
Aug 7th, 2014
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 140.32 KB | None | 0 0
  1. have_header: checking for ruby/thread.h... -------------------- yes
  2.  
  3. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L.      -lx64-msvcrt-ruby200  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  4. checked program was:
  5. /* begin */
  6. 1: #include "ruby.h"
  7. 2:
  8. 3: #include <winsock2.h>
  9. 4: #include <windows.h>
  10. 5: int main(int argc, char **argv)
  11. 6: {
  12. 7:   return 0;
  13. 8: }
  14. /* end */
  15.  
  16. "x86_64-w64-mingw32-gcc -E -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration  conftest.c -o conftest.i"
  17. checked program was:
  18. /* begin */
  19. 1: #include "ruby.h"
  20. 2:
  21. 3: #include <winsock2.h>
  22. 4: #include <windows.h>
  23. 5: #include <ruby/thread.h>
  24. /* end */
  25.  
  26. --------------------
  27.  
  28. have_func: checking for rb_thread_call_without_gvl() in ruby/thread.h... -------------------- yes
  29.  
  30. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L.      -lx64-msvcrt-ruby200  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  31. conftest.c: In function 't':
  32. conftest.c:9:32: warning: variable 'p' set but not used [-Wunused-but-set-variable]
  33. checked program was:
  34. /* begin */
  35.  1: #include "ruby.h"
  36.  2:
  37.  3: #include <winsock2.h>
  38.  4: #include <windows.h>
  39.  5: #include <ruby/thread.h>
  40.  6:
  41.  7: /*top*/
  42.  8: extern int t(void);
  43.  9: int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_thread_call_without_gvl; return 0; }
  44. 10: int main(int argc, char **argv)
  45. 11: {
  46. 12:   if (argc > 1000000) {
  47. 13:     printf("%p", &t);
  48. 14:   }
  49. 15:
  50. 16:   return 0;
  51. 17: }
  52. /* end */
  53.  
  54. --------------------
  55.  
  56. have_func: checking for rb_thread_blocking_region()... -------------------- yes
  57.  
  58. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L.      -lx64-msvcrt-ruby200  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  59. conftest.c: In function 't':
  60. conftest.c:8:1: warning: 'rb_thread_blocking_region' is deprecated (declared at C:/Ruby200-x64/include/ruby-2.0.0/ruby/intern.h:841) [-Wdeprecated-declarations]
  61. conftest.c:8:32: warning: variable 'p' set but not used [-Wunused-but-set-variable]
  62. checked program was:
  63. /* begin */
  64.  1: #include "ruby.h"
  65.  2:
  66.  3: #include <winsock2.h>
  67.  4: #include <windows.h>
  68.  5:
  69.  6: /*top*/
  70.  7: extern int t(void);
  71.  8: int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_thread_blocking_region; return 0; }
  72.  9: int main(int argc, char **argv)
  73. 10: {
  74. 11:   if (argc > 1000000) {
  75. 12:     printf("%p", &t);
  76. 13:   }
  77. 14:
  78. 15:   return 0;
  79. 16: }
  80. /* end */
  81.  
  82. --------------------
  83.  
  84. have_func: checking for rb_wait_for_single_fd()... -------------------- yes
  85.  
  86. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L.      -lx64-msvcrt-ruby200  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  87. conftest.c: In function 't':
  88. conftest.c:8:57: error: 'rb_wait_for_single_fd' undeclared (first use in this function)
  89. conftest.c:8:57: note: each undeclared identifier is reported only once for each function it appears in
  90. conftest.c:8:32: warning: variable 'p' set but not used [-Wunused-but-set-variable]
  91. checked program was:
  92. /* begin */
  93.  1: #include "ruby.h"
  94.  2:
  95.  3: #include <winsock2.h>
  96.  4: #include <windows.h>
  97.  5:
  98.  6: /*top*/
  99.  7: extern int t(void);
  100.  8: int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_wait_for_single_fd; return 0; }
  101.  9: int main(int argc, char **argv)
  102. 10: {
  103. 11:   if (argc > 1000000) {
  104. 12:     printf("%p", &t);
  105. 13:   }
  106. 14:
  107. 15:   return 0;
  108. 16: }
  109. /* end */
  110.  
  111. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L.      -lx64-msvcrt-ruby200  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  112. conftest.c: In function 't':
  113. conftest.c:8:1: warning: implicit declaration of function 'rb_wait_for_single_fd' [-Wimplicit-function-declaration]
  114. checked program was:
  115. /* begin */
  116.  1: #include "ruby.h"
  117.  2:
  118.  3: #include <winsock2.h>
  119.  4: #include <windows.h>
  120.  5:
  121.  6: /*top*/
  122.  7: extern int t(void);
  123.  8: int t(void) { rb_wait_for_single_fd(); return 0; }
  124.  9: int main(int argc, char **argv)
  125. 10: {
  126. 11:   if (argc > 1000000) {
  127. 12:     printf("%p", &t);
  128. 13:   }
  129. 14:
  130. 15:   return 0;
  131. 16: }
  132. /* end */
  133.  
  134. --------------------
  135.  
  136. have_func: checking for rb_hash_dup()... -------------------- yes
  137.  
  138. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L.      -lx64-msvcrt-ruby200  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  139. conftest.c: In function 't':
  140. conftest.c:8:32: warning: variable 'p' set but not used [-Wunused-but-set-variable]
  141. checked program was:
  142. /* begin */
  143.  1: #include "ruby.h"
  144.  2:
  145.  3: #include <winsock2.h>
  146.  4: #include <windows.h>
  147.  5:
  148.  6: /*top*/
  149.  7: extern int t(void);
  150.  8: int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_hash_dup; return 0; }
  151.  9: int main(int argc, char **argv)
  152. 10: {
  153. 11:   if (argc > 1000000) {
  154. 12:     printf("%p", &t);
  155. 13:   }
  156. 14:
  157. 15:   return 0;
  158. 16: }
  159. /* end */
  160.  
  161. --------------------
  162.  
  163. have_func: checking for rb_intern3()... -------------------- yes
  164.  
  165. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L.      -lx64-msvcrt-ruby200  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  166. conftest.c: In function 't':
  167. conftest.c:8:57: error: 'rb_intern3' undeclared (first use in this function)
  168. conftest.c:8:57: note: each undeclared identifier is reported only once for each function it appears in
  169. conftest.c:8:32: warning: variable 'p' set but not used [-Wunused-but-set-variable]
  170. checked program was:
  171. /* begin */
  172.  1: #include "ruby.h"
  173.  2:
  174.  3: #include <winsock2.h>
  175.  4: #include <windows.h>
  176.  5:
  177.  6: /*top*/
  178.  7: extern int t(void);
  179.  8: int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_intern3; return 0; }
  180.  9: int main(int argc, char **argv)
  181. 10: {
  182. 11:   if (argc > 1000000) {
  183. 12:     printf("%p", &t);
  184. 13:   }
  185. 14:
  186. 15:   return 0;
  187. 16: }
  188. /* end */
  189.  
  190. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L.      -lx64-msvcrt-ruby200  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  191. conftest.c: In function 't':
  192. conftest.c:8:1: warning: implicit declaration of function 'rb_intern3' [-Wimplicit-function-declaration]
  193. checked program was:
  194. /* begin */
  195.  1: #include "ruby.h"
  196.  2:
  197.  3: #include <winsock2.h>
  198.  4: #include <windows.h>
  199.  5:
  200.  6: /*top*/
  201.  7: extern int t(void);
  202.  8: int t(void) { rb_intern3(); return 0; }
  203.  9: int main(int argc, char **argv)
  204. 10: {
  205. 11:   if (argc > 1000000) {
  206. 12:     printf("%p", &t);
  207. 13:   }
  208. 14:
  209. 15:   return 0;
  210. 16: }
  211. /* end */
  212.  
  213. --------------------
  214.  
  215. find_library: checking for mysql_query() in -lmysqlclient... -------------------- no
  216.  
  217. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  218. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  219. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  220. checked program was:
  221. /* begin */
  222. 1: #include "ruby.h"
  223. 2:
  224. 3: #include <winsock2.h>
  225. 4: #include <windows.h>
  226. 5:
  227. 6: /*top*/
  228. 7: extern int t(void);
  229. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  230. 9: int main(int argc, char **argv)
  231. 10: {
  232. 11:   if (argc > 1000000) {
  233. 12:     printf("%p", &t);
  234. 13:   }
  235. 14:
  236. 15:   return 0;
  237. 16: }
  238. /* end */
  239.  
  240. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  241. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  242. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  243. checked program was:
  244. /* begin */
  245.  1: #include "ruby.h"
  246.  2:
  247.  3: #include <winsock2.h>
  248.  4: #include <windows.h>
  249.  5:
  250.  6: /*top*/
  251.  7: extern int t(void);
  252.  8: int t(void) { mysql_query(); return 0; }
  253.  9: int main(int argc, char **argv)
  254. 10: {
  255. 11:   if (argc > 1000000) {
  256. 12:     printf("%p", &t);
  257. 13:   }
  258. 14:
  259. 15:   return 0;
  260. 16: }
  261. /* end */
  262.  
  263. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  264. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  265. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  266. checked program was:
  267. /* begin */
  268. 1: #include "ruby.h"
  269. 2:
  270. 3: #include <winsock2.h>
  271. 4: #include <windows.h>
  272. 5:
  273. 6: /*top*/
  274. 7: extern int t(void);
  275. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  276. 9: int main(int argc, char **argv)
  277. 10: {
  278. 11:   if (argc > 1000000) {
  279. 12:     printf("%p", &t);
  280. 13:   }
  281. 14:
  282. 15:   return 0;
  283. 16: }
  284. /* end */
  285.  
  286. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  287. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  288. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  289. checked program was:
  290. /* begin */
  291.  1: #include "ruby.h"
  292.  2:
  293.  3: #include <winsock2.h>
  294.  4: #include <windows.h>
  295.  5:
  296.  6: /*top*/
  297.  7: extern int t(void);
  298.  8: int t(void) { mysql_query(); return 0; }
  299.  9: int main(int argc, char **argv)
  300. 10: {
  301. 11:   if (argc > 1000000) {
  302. 12:     printf("%p", &t);
  303. 13:   }
  304. 14:
  305. 15:   return 0;
  306. 16: }
  307. /* end */
  308.  
  309. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  310. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  311. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  312. checked program was:
  313. /* begin */
  314. 1: #include "ruby.h"
  315. 2:
  316. 3: #include <winsock2.h>
  317. 4: #include <windows.h>
  318. 5:
  319. 6: /*top*/
  320. 7: extern int t(void);
  321. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  322. 9: int main(int argc, char **argv)
  323. 10: {
  324. 11:   if (argc > 1000000) {
  325. 12:     printf("%p", &t);
  326. 13:   }
  327. 14:
  328. 15:   return 0;
  329. 16: }
  330. /* end */
  331.  
  332. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  333. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  334. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  335. checked program was:
  336. /* begin */
  337.  1: #include "ruby.h"
  338.  2:
  339.  3: #include <winsock2.h>
  340.  4: #include <windows.h>
  341.  5:
  342.  6: /*top*/
  343.  7: extern int t(void);
  344.  8: int t(void) { mysql_query(); return 0; }
  345.  9: int main(int argc, char **argv)
  346. 10: {
  347. 11:   if (argc > 1000000) {
  348. 12:     printf("%p", &t);
  349. 13:   }
  350. 14:
  351. 15:   return 0;
  352. 16: }
  353. /* end */
  354.  
  355. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  356. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  357. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  358. checked program was:
  359. /* begin */
  360. 1: #include "ruby.h"
  361. 2:
  362. 3: #include <winsock2.h>
  363. 4: #include <windows.h>
  364. 5:
  365. 6: /*top*/
  366. 7: extern int t(void);
  367. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  368. 9: int main(int argc, char **argv)
  369. 10: {
  370. 11:   if (argc > 1000000) {
  371. 12:     printf("%p", &t);
  372. 13:   }
  373. 14:
  374. 15:   return 0;
  375. 16: }
  376. /* end */
  377.  
  378. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  379. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  380. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  381. checked program was:
  382. /* begin */
  383.  1: #include "ruby.h"
  384.  2:
  385.  3: #include <winsock2.h>
  386.  4: #include <windows.h>
  387.  5:
  388.  6: /*top*/
  389.  7: extern int t(void);
  390.  8: int t(void) { mysql_query(); return 0; }
  391.  9: int main(int argc, char **argv)
  392. 10: {
  393. 11:   if (argc > 1000000) {
  394. 12:     printf("%p", &t);
  395. 13:   }
  396. 14:
  397. 15:   return 0;
  398. 16: }
  399. /* end */
  400.  
  401. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  402. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  403. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  404. checked program was:
  405. /* begin */
  406. 1: #include "ruby.h"
  407. 2:
  408. 3: #include <winsock2.h>
  409. 4: #include <windows.h>
  410. 5:
  411. 6: /*top*/
  412. 7: extern int t(void);
  413. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  414. 9: int main(int argc, char **argv)
  415. 10: {
  416. 11:   if (argc > 1000000) {
  417. 12:     printf("%p", &t);
  418. 13:   }
  419. 14:
  420. 15:   return 0;
  421. 16: }
  422. /* end */
  423.  
  424. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  425. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  426. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  427. checked program was:
  428. /* begin */
  429.  1: #include "ruby.h"
  430.  2:
  431.  3: #include <winsock2.h>
  432.  4: #include <windows.h>
  433.  5:
  434.  6: /*top*/
  435.  7: extern int t(void);
  436.  8: int t(void) { mysql_query(); return 0; }
  437.  9: int main(int argc, char **argv)
  438. 10: {
  439. 11:   if (argc > 1000000) {
  440. 12:     printf("%p", &t);
  441. 13:   }
  442. 14:
  443. 15:   return 0;
  444. 16: }
  445. /* end */
  446.  
  447. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  448. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  449. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  450. checked program was:
  451. /* begin */
  452. 1: #include "ruby.h"
  453. 2:
  454. 3: #include <winsock2.h>
  455. 4: #include <windows.h>
  456. 5:
  457. 6: /*top*/
  458. 7: extern int t(void);
  459. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  460. 9: int main(int argc, char **argv)
  461. 10: {
  462. 11:   if (argc > 1000000) {
  463. 12:     printf("%p", &t);
  464. 13:   }
  465. 14:
  466. 15:   return 0;
  467. 16: }
  468. /* end */
  469.  
  470. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  471. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  472. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  473. checked program was:
  474. /* begin */
  475.  1: #include "ruby.h"
  476.  2:
  477.  3: #include <winsock2.h>
  478.  4: #include <windows.h>
  479.  5:
  480.  6: /*top*/
  481.  7: extern int t(void);
  482.  8: int t(void) { mysql_query(); return 0; }
  483.  9: int main(int argc, char **argv)
  484. 10: {
  485. 11:   if (argc > 1000000) {
  486. 12:     printf("%p", &t);
  487. 13:   }
  488. 14:
  489. 15:   return 0;
  490. 16: }
  491. /* end */
  492.  
  493. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  494. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  495. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  496. checked program was:
  497. /* begin */
  498. 1: #include "ruby.h"
  499. 2:
  500. 3: #include <winsock2.h>
  501. 4: #include <windows.h>
  502. 5:
  503. 6: /*top*/
  504. 7: extern int t(void);
  505. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  506. 9: int main(int argc, char **argv)
  507. 10: {
  508. 11:   if (argc > 1000000) {
  509. 12:     printf("%p", &t);
  510. 13:   }
  511. 14:
  512. 15:   return 0;
  513. 16: }
  514. /* end */
  515.  
  516. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  517. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  518. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  519. checked program was:
  520. /* begin */
  521.  1: #include "ruby.h"
  522.  2:
  523.  3: #include <winsock2.h>
  524.  4: #include <windows.h>
  525.  5:
  526.  6: /*top*/
  527.  7: extern int t(void);
  528.  8: int t(void) { mysql_query(); return 0; }
  529.  9: int main(int argc, char **argv)
  530. 10: {
  531. 11:   if (argc > 1000000) {
  532. 12:     printf("%p", &t);
  533. 13:   }
  534. 14:
  535. 15:   return 0;
  536. 16: }
  537. /* end */
  538.  
  539. --------------------
  540.  
  541. have_library: checking for main() in -lm... -------------------- yes
  542.  
  543. --------------------
  544.  
  545. find_library: checking for mysql_query() in -lmysqlclient... -------------------- no
  546.  
  547. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  548. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  549. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  550. checked program was:
  551. /* begin */
  552. 1: #include "ruby.h"
  553. 2:
  554. 3: #include <winsock2.h>
  555. 4: #include <windows.h>
  556. 5:
  557. 6: /*top*/
  558. 7: extern int t(void);
  559. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  560. 9: int main(int argc, char **argv)
  561. 10: {
  562. 11:   if (argc > 1000000) {
  563. 12:     printf("%p", &t);
  564. 13:   }
  565. 14:
  566. 15:   return 0;
  567. 16: }
  568. /* end */
  569.  
  570. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  571. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  572. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  573. checked program was:
  574. /* begin */
  575.  1: #include "ruby.h"
  576.  2:
  577.  3: #include <winsock2.h>
  578.  4: #include <windows.h>
  579.  5:
  580.  6: /*top*/
  581.  7: extern int t(void);
  582.  8: int t(void) { mysql_query(); return 0; }
  583.  9: int main(int argc, char **argv)
  584. 10: {
  585. 11:   if (argc > 1000000) {
  586. 12:     printf("%p", &t);
  587. 13:   }
  588. 14:
  589. 15:   return 0;
  590. 16: }
  591. /* end */
  592.  
  593. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  594. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  595. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  596. checked program was:
  597. /* begin */
  598. 1: #include "ruby.h"
  599. 2:
  600. 3: #include <winsock2.h>
  601. 4: #include <windows.h>
  602. 5:
  603. 6: /*top*/
  604. 7: extern int t(void);
  605. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  606. 9: int main(int argc, char **argv)
  607. 10: {
  608. 11:   if (argc > 1000000) {
  609. 12:     printf("%p", &t);
  610. 13:   }
  611. 14:
  612. 15:   return 0;
  613. 16: }
  614. /* end */
  615.  
  616. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  617. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  618. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  619. checked program was:
  620. /* begin */
  621.  1: #include "ruby.h"
  622.  2:
  623.  3: #include <winsock2.h>
  624.  4: #include <windows.h>
  625.  5:
  626.  6: /*top*/
  627.  7: extern int t(void);
  628.  8: int t(void) { mysql_query(); return 0; }
  629.  9: int main(int argc, char **argv)
  630. 10: {
  631. 11:   if (argc > 1000000) {
  632. 12:     printf("%p", &t);
  633. 13:   }
  634. 14:
  635. 15:   return 0;
  636. 16: }
  637. /* end */
  638.  
  639. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  640. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  641. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  642. checked program was:
  643. /* begin */
  644. 1: #include "ruby.h"
  645. 2:
  646. 3: #include <winsock2.h>
  647. 4: #include <windows.h>
  648. 5:
  649. 6: /*top*/
  650. 7: extern int t(void);
  651. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  652. 9: int main(int argc, char **argv)
  653. 10: {
  654. 11:   if (argc > 1000000) {
  655. 12:     printf("%p", &t);
  656. 13:   }
  657. 14:
  658. 15:   return 0;
  659. 16: }
  660. /* end */
  661.  
  662. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  663. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  664. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  665. checked program was:
  666. /* begin */
  667.  1: #include "ruby.h"
  668.  2:
  669.  3: #include <winsock2.h>
  670.  4: #include <windows.h>
  671.  5:
  672.  6: /*top*/
  673.  7: extern int t(void);
  674.  8: int t(void) { mysql_query(); return 0; }
  675.  9: int main(int argc, char **argv)
  676. 10: {
  677. 11:   if (argc > 1000000) {
  678. 12:     printf("%p", &t);
  679. 13:   }
  680. 14:
  681. 15:   return 0;
  682. 16: }
  683. /* end */
  684.  
  685. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  686. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  687. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  688. checked program was:
  689. /* begin */
  690. 1: #include "ruby.h"
  691. 2:
  692. 3: #include <winsock2.h>
  693. 4: #include <windows.h>
  694. 5:
  695. 6: /*top*/
  696. 7: extern int t(void);
  697. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  698. 9: int main(int argc, char **argv)
  699. 10: {
  700. 11:   if (argc > 1000000) {
  701. 12:     printf("%p", &t);
  702. 13:   }
  703. 14:
  704. 15:   return 0;
  705. 16: }
  706. /* end */
  707.  
  708. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  709. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  710. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  711. checked program was:
  712. /* begin */
  713.  1: #include "ruby.h"
  714.  2:
  715.  3: #include <winsock2.h>
  716.  4: #include <windows.h>
  717.  5:
  718.  6: /*top*/
  719.  7: extern int t(void);
  720.  8: int t(void) { mysql_query(); return 0; }
  721.  9: int main(int argc, char **argv)
  722. 10: {
  723. 11:   if (argc > 1000000) {
  724. 12:     printf("%p", &t);
  725. 13:   }
  726. 14:
  727. 15:   return 0;
  728. 16: }
  729. /* end */
  730.  
  731. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  732. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  733. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  734. checked program was:
  735. /* begin */
  736. 1: #include "ruby.h"
  737. 2:
  738. 3: #include <winsock2.h>
  739. 4: #include <windows.h>
  740. 5:
  741. 6: /*top*/
  742. 7: extern int t(void);
  743. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  744. 9: int main(int argc, char **argv)
  745. 10: {
  746. 11:   if (argc > 1000000) {
  747. 12:     printf("%p", &t);
  748. 13:   }
  749. 14:
  750. 15:   return 0;
  751. 16: }
  752. /* end */
  753.  
  754. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  755. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  756. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  757. checked program was:
  758. /* begin */
  759.  1: #include "ruby.h"
  760.  2:
  761.  3: #include <winsock2.h>
  762.  4: #include <windows.h>
  763.  5:
  764.  6: /*top*/
  765.  7: extern int t(void);
  766.  8: int t(void) { mysql_query(); return 0; }
  767.  9: int main(int argc, char **argv)
  768. 10: {
  769. 11:   if (argc > 1000000) {
  770. 12:     printf("%p", &t);
  771. 13:   }
  772. 14:
  773. 15:   return 0;
  774. 16: }
  775. /* end */
  776.  
  777. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  778. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  779. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  780. checked program was:
  781. /* begin */
  782. 1: #include "ruby.h"
  783. 2:
  784. 3: #include <winsock2.h>
  785. 4: #include <windows.h>
  786. 5:
  787. 6: /*top*/
  788. 7: extern int t(void);
  789. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  790. 9: int main(int argc, char **argv)
  791. 10: {
  792. 11:   if (argc > 1000000) {
  793. 12:     printf("%p", &t);
  794. 13:   }
  795. 14:
  796. 15:   return 0;
  797. 16: }
  798. /* end */
  799.  
  800. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  801. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  802. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  803. checked program was:
  804. /* begin */
  805.  1: #include "ruby.h"
  806.  2:
  807.  3: #include <winsock2.h>
  808.  4: #include <windows.h>
  809.  5:
  810.  6: /*top*/
  811.  7: extern int t(void);
  812.  8: int t(void) { mysql_query(); return 0; }
  813.  9: int main(int argc, char **argv)
  814. 10: {
  815. 11:   if (argc > 1000000) {
  816. 12:     printf("%p", &t);
  817. 13:   }
  818. 14:
  819. 15:   return 0;
  820. 16: }
  821. /* end */
  822.  
  823. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  824. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  825. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  826. checked program was:
  827. /* begin */
  828. 1: #include "ruby.h"
  829. 2:
  830. 3: #include <winsock2.h>
  831. 4: #include <windows.h>
  832. 5:
  833. 6: /*top*/
  834. 7: extern int t(void);
  835. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  836. 9: int main(int argc, char **argv)
  837. 10: {
  838. 11:   if (argc > 1000000) {
  839. 12:     printf("%p", &t);
  840. 13:   }
  841. 14:
  842. 15:   return 0;
  843. 16: }
  844. /* end */
  845.  
  846. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  847. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  848. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  849. checked program was:
  850. /* begin */
  851.  1: #include "ruby.h"
  852.  2:
  853.  3: #include <winsock2.h>
  854.  4: #include <windows.h>
  855.  5:
  856.  6: /*top*/
  857.  7: extern int t(void);
  858.  8: int t(void) { mysql_query(); return 0; }
  859.  9: int main(int argc, char **argv)
  860. 10: {
  861. 11:   if (argc > 1000000) {
  862. 12:     printf("%p", &t);
  863. 13:   }
  864. 14:
  865. 15:   return 0;
  866. 16: }
  867. /* end */
  868.  
  869. --------------------
  870.  
  871. have_library: checking for main() in -lz... -------------------- no
  872.  
  873. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lz  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  874. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  875. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lz  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  876. checked program was:
  877. /* begin */
  878. 1: #include "ruby.h"
  879. 2:
  880. 3: #include <winsock2.h>
  881. 4: #include <windows.h>
  882. 5:
  883. 6: /*top*/
  884. 7: extern int t(void);
  885. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))main; return 0; }
  886. 9: int main(int argc, char **argv)
  887. 10: {
  888. 11:   if (argc > 1000000) {
  889. 12:     printf("%p", &t);
  890. 13:   }
  891. 14:
  892. 15:   return 0;
  893. 16: }
  894. /* end */
  895.  
  896. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lz  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  897. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  898. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lz  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  899. checked program was:
  900. /* begin */
  901.  1: #include "ruby.h"
  902.  2:
  903.  3: #include <winsock2.h>
  904.  4: #include <windows.h>
  905.  5:
  906.  6: /*top*/
  907.  7: extern int t(void);
  908.  8: int t(void) { main(); return 0; }
  909.  9: int main(int argc, char **argv)
  910. 10: {
  911. 11:   if (argc > 1000000) {
  912. 12:     printf("%p", &t);
  913. 13:   }
  914. 14:
  915. 15:   return 0;
  916. 16: }
  917. /* end */
  918.  
  919. --------------------
  920.  
  921. find_library: checking for mysql_query() in -lmysqlclient... -------------------- no
  922.  
  923. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  924. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  925. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  926. checked program was:
  927. /* begin */
  928. 1: #include "ruby.h"
  929. 2:
  930. 3: #include <winsock2.h>
  931. 4: #include <windows.h>
  932. 5:
  933. 6: /*top*/
  934. 7: extern int t(void);
  935. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  936. 9: int main(int argc, char **argv)
  937. 10: {
  938. 11:   if (argc > 1000000) {
  939. 12:     printf("%p", &t);
  940. 13:   }
  941. 14:
  942. 15:   return 0;
  943. 16: }
  944. /* end */
  945.  
  946. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  947. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  948. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  949. checked program was:
  950. /* begin */
  951.  1: #include "ruby.h"
  952.  2:
  953.  3: #include <winsock2.h>
  954.  4: #include <windows.h>
  955.  5:
  956.  6: /*top*/
  957.  7: extern int t(void);
  958.  8: int t(void) { mysql_query(); return 0; }
  959.  9: int main(int argc, char **argv)
  960. 10: {
  961. 11:   if (argc > 1000000) {
  962. 12:     printf("%p", &t);
  963. 13:   }
  964. 14:
  965. 15:   return 0;
  966. 16: }
  967. /* end */
  968.  
  969. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  970. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  971. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  972. checked program was:
  973. /* begin */
  974. 1: #include "ruby.h"
  975. 2:
  976. 3: #include <winsock2.h>
  977. 4: #include <windows.h>
  978. 5:
  979. 6: /*top*/
  980. 7: extern int t(void);
  981. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  982. 9: int main(int argc, char **argv)
  983. 10: {
  984. 11:   if (argc > 1000000) {
  985. 12:     printf("%p", &t);
  986. 13:   }
  987. 14:
  988. 15:   return 0;
  989. 16: }
  990. /* end */
  991.  
  992. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  993. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  994. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  995. checked program was:
  996. /* begin */
  997.  1: #include "ruby.h"
  998.  2:
  999.  3: #include <winsock2.h>
  1000.  4: #include <windows.h>
  1001.  5:
  1002.  6: /*top*/
  1003.  7: extern int t(void);
  1004.  8: int t(void) { mysql_query(); return 0; }
  1005.  9: int main(int argc, char **argv)
  1006. 10: {
  1007. 11:   if (argc > 1000000) {
  1008. 12:     printf("%p", &t);
  1009. 13:   }
  1010. 14:
  1011. 15:   return 0;
  1012. 16: }
  1013. /* end */
  1014.  
  1015. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1016. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1017. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1018. checked program was:
  1019. /* begin */
  1020. 1: #include "ruby.h"
  1021. 2:
  1022. 3: #include <winsock2.h>
  1023. 4: #include <windows.h>
  1024. 5:
  1025. 6: /*top*/
  1026. 7: extern int t(void);
  1027. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  1028. 9: int main(int argc, char **argv)
  1029. 10: {
  1030. 11:   if (argc > 1000000) {
  1031. 12:     printf("%p", &t);
  1032. 13:   }
  1033. 14:
  1034. 15:   return 0;
  1035. 16: }
  1036. /* end */
  1037.  
  1038. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1039. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1040. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1041. checked program was:
  1042. /* begin */
  1043.  1: #include "ruby.h"
  1044.  2:
  1045.  3: #include <winsock2.h>
  1046.  4: #include <windows.h>
  1047.  5:
  1048.  6: /*top*/
  1049.  7: extern int t(void);
  1050.  8: int t(void) { mysql_query(); return 0; }
  1051.  9: int main(int argc, char **argv)
  1052. 10: {
  1053. 11:   if (argc > 1000000) {
  1054. 12:     printf("%p", &t);
  1055. 13:   }
  1056. 14:
  1057. 15:   return 0;
  1058. 16: }
  1059. /* end */
  1060.  
  1061. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1062. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1063. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1064. checked program was:
  1065. /* begin */
  1066. 1: #include "ruby.h"
  1067. 2:
  1068. 3: #include <winsock2.h>
  1069. 4: #include <windows.h>
  1070. 5:
  1071. 6: /*top*/
  1072. 7: extern int t(void);
  1073. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  1074. 9: int main(int argc, char **argv)
  1075. 10: {
  1076. 11:   if (argc > 1000000) {
  1077. 12:     printf("%p", &t);
  1078. 13:   }
  1079. 14:
  1080. 15:   return 0;
  1081. 16: }
  1082. /* end */
  1083.  
  1084. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1085. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1086. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1087. checked program was:
  1088. /* begin */
  1089.  1: #include "ruby.h"
  1090.  2:
  1091.  3: #include <winsock2.h>
  1092.  4: #include <windows.h>
  1093.  5:
  1094.  6: /*top*/
  1095.  7: extern int t(void);
  1096.  8: int t(void) { mysql_query(); return 0; }
  1097.  9: int main(int argc, char **argv)
  1098. 10: {
  1099. 11:   if (argc > 1000000) {
  1100. 12:     printf("%p", &t);
  1101. 13:   }
  1102. 14:
  1103. 15:   return 0;
  1104. 16: }
  1105. /* end */
  1106.  
  1107. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1108. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1109. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1110. checked program was:
  1111. /* begin */
  1112. 1: #include "ruby.h"
  1113. 2:
  1114. 3: #include <winsock2.h>
  1115. 4: #include <windows.h>
  1116. 5:
  1117. 6: /*top*/
  1118. 7: extern int t(void);
  1119. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  1120. 9: int main(int argc, char **argv)
  1121. 10: {
  1122. 11:   if (argc > 1000000) {
  1123. 12:     printf("%p", &t);
  1124. 13:   }
  1125. 14:
  1126. 15:   return 0;
  1127. 16: }
  1128. /* end */
  1129.  
  1130. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1131. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1132. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1133. checked program was:
  1134. /* begin */
  1135.  1: #include "ruby.h"
  1136.  2:
  1137.  3: #include <winsock2.h>
  1138.  4: #include <windows.h>
  1139.  5:
  1140.  6: /*top*/
  1141.  7: extern int t(void);
  1142.  8: int t(void) { mysql_query(); return 0; }
  1143.  9: int main(int argc, char **argv)
  1144. 10: {
  1145. 11:   if (argc > 1000000) {
  1146. 12:     printf("%p", &t);
  1147. 13:   }
  1148. 14:
  1149. 15:   return 0;
  1150. 16: }
  1151. /* end */
  1152.  
  1153. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1154. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1155. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1156. checked program was:
  1157. /* begin */
  1158. 1: #include "ruby.h"
  1159. 2:
  1160. 3: #include <winsock2.h>
  1161. 4: #include <windows.h>
  1162. 5:
  1163. 6: /*top*/
  1164. 7: extern int t(void);
  1165. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  1166. 9: int main(int argc, char **argv)
  1167. 10: {
  1168. 11:   if (argc > 1000000) {
  1169. 12:     printf("%p", &t);
  1170. 13:   }
  1171. 14:
  1172. 15:   return 0;
  1173. 16: }
  1174. /* end */
  1175.  
  1176. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1177. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1178. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1179. checked program was:
  1180. /* begin */
  1181.  1: #include "ruby.h"
  1182.  2:
  1183.  3: #include <winsock2.h>
  1184.  4: #include <windows.h>
  1185.  5:
  1186.  6: /*top*/
  1187.  7: extern int t(void);
  1188.  8: int t(void) { mysql_query(); return 0; }
  1189.  9: int main(int argc, char **argv)
  1190. 10: {
  1191. 11:   if (argc > 1000000) {
  1192. 12:     printf("%p", &t);
  1193. 13:   }
  1194. 14:
  1195. 15:   return 0;
  1196. 16: }
  1197. /* end */
  1198.  
  1199. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1200. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1201. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1202. checked program was:
  1203. /* begin */
  1204. 1: #include "ruby.h"
  1205. 2:
  1206. 3: #include <winsock2.h>
  1207. 4: #include <windows.h>
  1208. 5:
  1209. 6: /*top*/
  1210. 7: extern int t(void);
  1211. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  1212. 9: int main(int argc, char **argv)
  1213. 10: {
  1214. 11:   if (argc > 1000000) {
  1215. 12:     printf("%p", &t);
  1216. 13:   }
  1217. 14:
  1218. 15:   return 0;
  1219. 16: }
  1220. /* end */
  1221.  
  1222. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1223. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1224. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1225. checked program was:
  1226. /* begin */
  1227.  1: #include "ruby.h"
  1228.  2:
  1229.  3: #include <winsock2.h>
  1230.  4: #include <windows.h>
  1231.  5:
  1232.  6: /*top*/
  1233.  7: extern int t(void);
  1234.  8: int t(void) { mysql_query(); return 0; }
  1235.  9: int main(int argc, char **argv)
  1236. 10: {
  1237. 11:   if (argc > 1000000) {
  1238. 12:     printf("%p", &t);
  1239. 13:   }
  1240. 14:
  1241. 15:   return 0;
  1242. 16: }
  1243. /* end */
  1244.  
  1245. --------------------
  1246.  
  1247. have_library: checking for main() in -lsocket... -------------------- no
  1248.  
  1249. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lsocket  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1250. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1251. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lsocket  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1252. checked program was:
  1253. /* begin */
  1254. 1: #include "ruby.h"
  1255. 2:
  1256. 3: #include <winsock2.h>
  1257. 4: #include <windows.h>
  1258. 5:
  1259. 6: /*top*/
  1260. 7: extern int t(void);
  1261. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))main; return 0; }
  1262. 9: int main(int argc, char **argv)
  1263. 10: {
  1264. 11:   if (argc > 1000000) {
  1265. 12:     printf("%p", &t);
  1266. 13:   }
  1267. 14:
  1268. 15:   return 0;
  1269. 16: }
  1270. /* end */
  1271.  
  1272. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lsocket  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1273. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1274. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lsocket  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1275. checked program was:
  1276. /* begin */
  1277.  1: #include "ruby.h"
  1278.  2:
  1279.  3: #include <winsock2.h>
  1280.  4: #include <windows.h>
  1281.  5:
  1282.  6: /*top*/
  1283.  7: extern int t(void);
  1284.  8: int t(void) { main(); return 0; }
  1285.  9: int main(int argc, char **argv)
  1286. 10: {
  1287. 11:   if (argc > 1000000) {
  1288. 12:     printf("%p", &t);
  1289. 13:   }
  1290. 14:
  1291. 15:   return 0;
  1292. 16: }
  1293. /* end */
  1294.  
  1295. --------------------
  1296.  
  1297. find_library: checking for mysql_query() in -lmysqlclient... -------------------- no
  1298.  
  1299. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1300. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1301. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1302. checked program was:
  1303. /* begin */
  1304. 1: #include "ruby.h"
  1305. 2:
  1306. 3: #include <winsock2.h>
  1307. 4: #include <windows.h>
  1308. 5:
  1309. 6: /*top*/
  1310. 7: extern int t(void);
  1311. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  1312. 9: int main(int argc, char **argv)
  1313. 10: {
  1314. 11:   if (argc > 1000000) {
  1315. 12:     printf("%p", &t);
  1316. 13:   }
  1317. 14:
  1318. 15:   return 0;
  1319. 16: }
  1320. /* end */
  1321.  
  1322. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1323. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1324. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1325. checked program was:
  1326. /* begin */
  1327.  1: #include "ruby.h"
  1328.  2:
  1329.  3: #include <winsock2.h>
  1330.  4: #include <windows.h>
  1331.  5:
  1332.  6: /*top*/
  1333.  7: extern int t(void);
  1334.  8: int t(void) { mysql_query(); return 0; }
  1335.  9: int main(int argc, char **argv)
  1336. 10: {
  1337. 11:   if (argc > 1000000) {
  1338. 12:     printf("%p", &t);
  1339. 13:   }
  1340. 14:
  1341. 15:   return 0;
  1342. 16: }
  1343. /* end */
  1344.  
  1345. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1346. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1347. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1348. checked program was:
  1349. /* begin */
  1350. 1: #include "ruby.h"
  1351. 2:
  1352. 3: #include <winsock2.h>
  1353. 4: #include <windows.h>
  1354. 5:
  1355. 6: /*top*/
  1356. 7: extern int t(void);
  1357. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  1358. 9: int main(int argc, char **argv)
  1359. 10: {
  1360. 11:   if (argc > 1000000) {
  1361. 12:     printf("%p", &t);
  1362. 13:   }
  1363. 14:
  1364. 15:   return 0;
  1365. 16: }
  1366. /* end */
  1367.  
  1368. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1369. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1370. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1371. checked program was:
  1372. /* begin */
  1373.  1: #include "ruby.h"
  1374.  2:
  1375.  3: #include <winsock2.h>
  1376.  4: #include <windows.h>
  1377.  5:
  1378.  6: /*top*/
  1379.  7: extern int t(void);
  1380.  8: int t(void) { mysql_query(); return 0; }
  1381.  9: int main(int argc, char **argv)
  1382. 10: {
  1383. 11:   if (argc > 1000000) {
  1384. 12:     printf("%p", &t);
  1385. 13:   }
  1386. 14:
  1387. 15:   return 0;
  1388. 16: }
  1389. /* end */
  1390.  
  1391. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1392. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1393. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1394. checked program was:
  1395. /* begin */
  1396. 1: #include "ruby.h"
  1397. 2:
  1398. 3: #include <winsock2.h>
  1399. 4: #include <windows.h>
  1400. 5:
  1401. 6: /*top*/
  1402. 7: extern int t(void);
  1403. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  1404. 9: int main(int argc, char **argv)
  1405. 10: {
  1406. 11:   if (argc > 1000000) {
  1407. 12:     printf("%p", &t);
  1408. 13:   }
  1409. 14:
  1410. 15:   return 0;
  1411. 16: }
  1412. /* end */
  1413.  
  1414. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1415. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1416. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1417. checked program was:
  1418. /* begin */
  1419.  1: #include "ruby.h"
  1420.  2:
  1421.  3: #include <winsock2.h>
  1422.  4: #include <windows.h>
  1423.  5:
  1424.  6: /*top*/
  1425.  7: extern int t(void);
  1426.  8: int t(void) { mysql_query(); return 0; }
  1427.  9: int main(int argc, char **argv)
  1428. 10: {
  1429. 11:   if (argc > 1000000) {
  1430. 12:     printf("%p", &t);
  1431. 13:   }
  1432. 14:
  1433. 15:   return 0;
  1434. 16: }
  1435. /* end */
  1436.  
  1437. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1438. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1439. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1440. checked program was:
  1441. /* begin */
  1442. 1: #include "ruby.h"
  1443. 2:
  1444. 3: #include <winsock2.h>
  1445. 4: #include <windows.h>
  1446. 5:
  1447. 6: /*top*/
  1448. 7: extern int t(void);
  1449. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  1450. 9: int main(int argc, char **argv)
  1451. 10: {
  1452. 11:   if (argc > 1000000) {
  1453. 12:     printf("%p", &t);
  1454. 13:   }
  1455. 14:
  1456. 15:   return 0;
  1457. 16: }
  1458. /* end */
  1459.  
  1460. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1461. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1462. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1463. checked program was:
  1464. /* begin */
  1465.  1: #include "ruby.h"
  1466.  2:
  1467.  3: #include <winsock2.h>
  1468.  4: #include <windows.h>
  1469.  5:
  1470.  6: /*top*/
  1471.  7: extern int t(void);
  1472.  8: int t(void) { mysql_query(); return 0; }
  1473.  9: int main(int argc, char **argv)
  1474. 10: {
  1475. 11:   if (argc > 1000000) {
  1476. 12:     printf("%p", &t);
  1477. 13:   }
  1478. 14:
  1479. 15:   return 0;
  1480. 16: }
  1481. /* end */
  1482.  
  1483. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1484. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1485. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1486. checked program was:
  1487. /* begin */
  1488. 1: #include "ruby.h"
  1489. 2:
  1490. 3: #include <winsock2.h>
  1491. 4: #include <windows.h>
  1492. 5:
  1493. 6: /*top*/
  1494. 7: extern int t(void);
  1495. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  1496. 9: int main(int argc, char **argv)
  1497. 10: {
  1498. 11:   if (argc > 1000000) {
  1499. 12:     printf("%p", &t);
  1500. 13:   }
  1501. 14:
  1502. 15:   return 0;
  1503. 16: }
  1504. /* end */
  1505.  
  1506. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1507. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1508. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1509. checked program was:
  1510. /* begin */
  1511.  1: #include "ruby.h"
  1512.  2:
  1513.  3: #include <winsock2.h>
  1514.  4: #include <windows.h>
  1515.  5:
  1516.  6: /*top*/
  1517.  7: extern int t(void);
  1518.  8: int t(void) { mysql_query(); return 0; }
  1519.  9: int main(int argc, char **argv)
  1520. 10: {
  1521. 11:   if (argc > 1000000) {
  1522. 12:     printf("%p", &t);
  1523. 13:   }
  1524. 14:
  1525. 15:   return 0;
  1526. 16: }
  1527. /* end */
  1528.  
  1529. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1530. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1531. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1532. checked program was:
  1533. /* begin */
  1534. 1: #include "ruby.h"
  1535. 2:
  1536. 3: #include <winsock2.h>
  1537. 4: #include <windows.h>
  1538. 5:
  1539. 6: /*top*/
  1540. 7: extern int t(void);
  1541. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  1542. 9: int main(int argc, char **argv)
  1543. 10: {
  1544. 11:   if (argc > 1000000) {
  1545. 12:     printf("%p", &t);
  1546. 13:   }
  1547. 14:
  1548. 15:   return 0;
  1549. 16: }
  1550. /* end */
  1551.  
  1552. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1553. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1554. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1555. checked program was:
  1556. /* begin */
  1557.  1: #include "ruby.h"
  1558.  2:
  1559.  3: #include <winsock2.h>
  1560.  4: #include <windows.h>
  1561.  5:
  1562.  6: /*top*/
  1563.  7: extern int t(void);
  1564.  8: int t(void) { mysql_query(); return 0; }
  1565.  9: int main(int argc, char **argv)
  1566. 10: {
  1567. 11:   if (argc > 1000000) {
  1568. 12:     printf("%p", &t);
  1569. 13:   }
  1570. 14:
  1571. 15:   return 0;
  1572. 16: }
  1573. /* end */
  1574.  
  1575. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1576. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1577. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1578. checked program was:
  1579. /* begin */
  1580. 1: #include "ruby.h"
  1581. 2:
  1582. 3: #include <winsock2.h>
  1583. 4: #include <windows.h>
  1584. 5:
  1585. 6: /*top*/
  1586. 7: extern int t(void);
  1587. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  1588. 9: int main(int argc, char **argv)
  1589. 10: {
  1590. 11:   if (argc > 1000000) {
  1591. 12:     printf("%p", &t);
  1592. 13:   }
  1593. 14:
  1594. 15:   return 0;
  1595. 16: }
  1596. /* end */
  1597.  
  1598. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1599. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1600. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1601. checked program was:
  1602. /* begin */
  1603.  1: #include "ruby.h"
  1604.  2:
  1605.  3: #include <winsock2.h>
  1606.  4: #include <windows.h>
  1607.  5:
  1608.  6: /*top*/
  1609.  7: extern int t(void);
  1610.  8: int t(void) { mysql_query(); return 0; }
  1611.  9: int main(int argc, char **argv)
  1612. 10: {
  1613. 11:   if (argc > 1000000) {
  1614. 12:     printf("%p", &t);
  1615. 13:   }
  1616. 14:
  1617. 15:   return 0;
  1618. 16: }
  1619. /* end */
  1620.  
  1621. --------------------
  1622.  
  1623. have_library: checking for main() in -lnsl... -------------------- no
  1624.  
  1625. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lnsl  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1626. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1627. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lnsl  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1628. checked program was:
  1629. /* begin */
  1630. 1: #include "ruby.h"
  1631. 2:
  1632. 3: #include <winsock2.h>
  1633. 4: #include <windows.h>
  1634. 5:
  1635. 6: /*top*/
  1636. 7: extern int t(void);
  1637. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))main; return 0; }
  1638. 9: int main(int argc, char **argv)
  1639. 10: {
  1640. 11:   if (argc > 1000000) {
  1641. 12:     printf("%p", &t);
  1642. 13:   }
  1643. 14:
  1644. 15:   return 0;
  1645. 16: }
  1646. /* end */
  1647.  
  1648. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lnsl  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1649. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1650. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lnsl  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1651. checked program was:
  1652. /* begin */
  1653.  1: #include "ruby.h"
  1654.  2:
  1655.  3: #include <winsock2.h>
  1656.  4: #include <windows.h>
  1657.  5:
  1658.  6: /*top*/
  1659.  7: extern int t(void);
  1660.  8: int t(void) { main(); return 0; }
  1661.  9: int main(int argc, char **argv)
  1662. 10: {
  1663. 11:   if (argc > 1000000) {
  1664. 12:     printf("%p", &t);
  1665. 13:   }
  1666. 14:
  1667. 15:   return 0;
  1668. 16: }
  1669. /* end */
  1670.  
  1671. --------------------
  1672.  
  1673. find_library: checking for mysql_query() in -lmysqlclient... -------------------- no
  1674.  
  1675. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1676. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1677. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1678. checked program was:
  1679. /* begin */
  1680. 1: #include "ruby.h"
  1681. 2:
  1682. 3: #include <winsock2.h>
  1683. 4: #include <windows.h>
  1684. 5:
  1685. 6: /*top*/
  1686. 7: extern int t(void);
  1687. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  1688. 9: int main(int argc, char **argv)
  1689. 10: {
  1690. 11:   if (argc > 1000000) {
  1691. 12:     printf("%p", &t);
  1692. 13:   }
  1693. 14:
  1694. 15:   return 0;
  1695. 16: }
  1696. /* end */
  1697.  
  1698. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1699. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1700. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1701. checked program was:
  1702. /* begin */
  1703.  1: #include "ruby.h"
  1704.  2:
  1705.  3: #include <winsock2.h>
  1706.  4: #include <windows.h>
  1707.  5:
  1708.  6: /*top*/
  1709.  7: extern int t(void);
  1710.  8: int t(void) { mysql_query(); return 0; }
  1711.  9: int main(int argc, char **argv)
  1712. 10: {
  1713. 11:   if (argc > 1000000) {
  1714. 12:     printf("%p", &t);
  1715. 13:   }
  1716. 14:
  1717. 15:   return 0;
  1718. 16: }
  1719. /* end */
  1720.  
  1721. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1722. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1723. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1724. checked program was:
  1725. /* begin */
  1726. 1: #include "ruby.h"
  1727. 2:
  1728. 3: #include <winsock2.h>
  1729. 4: #include <windows.h>
  1730. 5:
  1731. 6: /*top*/
  1732. 7: extern int t(void);
  1733. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  1734. 9: int main(int argc, char **argv)
  1735. 10: {
  1736. 11:   if (argc > 1000000) {
  1737. 12:     printf("%p", &t);
  1738. 13:   }
  1739. 14:
  1740. 15:   return 0;
  1741. 16: }
  1742. /* end */
  1743.  
  1744. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1745. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1746. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1747. checked program was:
  1748. /* begin */
  1749.  1: #include "ruby.h"
  1750.  2:
  1751.  3: #include <winsock2.h>
  1752.  4: #include <windows.h>
  1753.  5:
  1754.  6: /*top*/
  1755.  7: extern int t(void);
  1756.  8: int t(void) { mysql_query(); return 0; }
  1757.  9: int main(int argc, char **argv)
  1758. 10: {
  1759. 11:   if (argc > 1000000) {
  1760. 12:     printf("%p", &t);
  1761. 13:   }
  1762. 14:
  1763. 15:   return 0;
  1764. 16: }
  1765. /* end */
  1766.  
  1767. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1768. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1769. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1770. checked program was:
  1771. /* begin */
  1772. 1: #include "ruby.h"
  1773. 2:
  1774. 3: #include <winsock2.h>
  1775. 4: #include <windows.h>
  1776. 5:
  1777. 6: /*top*/
  1778. 7: extern int t(void);
  1779. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  1780. 9: int main(int argc, char **argv)
  1781. 10: {
  1782. 11:   if (argc > 1000000) {
  1783. 12:     printf("%p", &t);
  1784. 13:   }
  1785. 14:
  1786. 15:   return 0;
  1787. 16: }
  1788. /* end */
  1789.  
  1790. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1791. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1792. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1793. checked program was:
  1794. /* begin */
  1795.  1: #include "ruby.h"
  1796.  2:
  1797.  3: #include <winsock2.h>
  1798.  4: #include <windows.h>
  1799.  5:
  1800.  6: /*top*/
  1801.  7: extern int t(void);
  1802.  8: int t(void) { mysql_query(); return 0; }
  1803.  9: int main(int argc, char **argv)
  1804. 10: {
  1805. 11:   if (argc > 1000000) {
  1806. 12:     printf("%p", &t);
  1807. 13:   }
  1808. 14:
  1809. 15:   return 0;
  1810. 16: }
  1811. /* end */
  1812.  
  1813. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1814. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1815. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1816. checked program was:
  1817. /* begin */
  1818. 1: #include "ruby.h"
  1819. 2:
  1820. 3: #include <winsock2.h>
  1821. 4: #include <windows.h>
  1822. 5:
  1823. 6: /*top*/
  1824. 7: extern int t(void);
  1825. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  1826. 9: int main(int argc, char **argv)
  1827. 10: {
  1828. 11:   if (argc > 1000000) {
  1829. 12:     printf("%p", &t);
  1830. 13:   }
  1831. 14:
  1832. 15:   return 0;
  1833. 16: }
  1834. /* end */
  1835.  
  1836. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1837. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1838. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1839. checked program was:
  1840. /* begin */
  1841.  1: #include "ruby.h"
  1842.  2:
  1843.  3: #include <winsock2.h>
  1844.  4: #include <windows.h>
  1845.  5:
  1846.  6: /*top*/
  1847.  7: extern int t(void);
  1848.  8: int t(void) { mysql_query(); return 0; }
  1849.  9: int main(int argc, char **argv)
  1850. 10: {
  1851. 11:   if (argc > 1000000) {
  1852. 12:     printf("%p", &t);
  1853. 13:   }
  1854. 14:
  1855. 15:   return 0;
  1856. 16: }
  1857. /* end */
  1858.  
  1859. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1860. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1861. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1862. checked program was:
  1863. /* begin */
  1864. 1: #include "ruby.h"
  1865. 2:
  1866. 3: #include <winsock2.h>
  1867. 4: #include <windows.h>
  1868. 5:
  1869. 6: /*top*/
  1870. 7: extern int t(void);
  1871. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  1872. 9: int main(int argc, char **argv)
  1873. 10: {
  1874. 11:   if (argc > 1000000) {
  1875. 12:     printf("%p", &t);
  1876. 13:   }
  1877. 14:
  1878. 15:   return 0;
  1879. 16: }
  1880. /* end */
  1881.  
  1882. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1883. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1884. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1885. checked program was:
  1886. /* begin */
  1887.  1: #include "ruby.h"
  1888.  2:
  1889.  3: #include <winsock2.h>
  1890.  4: #include <windows.h>
  1891.  5:
  1892.  6: /*top*/
  1893.  7: extern int t(void);
  1894.  8: int t(void) { mysql_query(); return 0; }
  1895.  9: int main(int argc, char **argv)
  1896. 10: {
  1897. 11:   if (argc > 1000000) {
  1898. 12:     printf("%p", &t);
  1899. 13:   }
  1900. 14:
  1901. 15:   return 0;
  1902. 16: }
  1903. /* end */
  1904.  
  1905. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1906. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1907. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1908. checked program was:
  1909. /* begin */
  1910. 1: #include "ruby.h"
  1911. 2:
  1912. 3: #include <winsock2.h>
  1913. 4: #include <windows.h>
  1914. 5:
  1915. 6: /*top*/
  1916. 7: extern int t(void);
  1917. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  1918. 9: int main(int argc, char **argv)
  1919. 10: {
  1920. 11:   if (argc > 1000000) {
  1921. 12:     printf("%p", &t);
  1922. 13:   }
  1923. 14:
  1924. 15:   return 0;
  1925. 16: }
  1926. /* end */
  1927.  
  1928. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1929. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1930. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1931. checked program was:
  1932. /* begin */
  1933.  1: #include "ruby.h"
  1934.  2:
  1935.  3: #include <winsock2.h>
  1936.  4: #include <windows.h>
  1937.  5:
  1938.  6: /*top*/
  1939.  7: extern int t(void);
  1940.  8: int t(void) { mysql_query(); return 0; }
  1941.  9: int main(int argc, char **argv)
  1942. 10: {
  1943. 11:   if (argc > 1000000) {
  1944. 12:     printf("%p", &t);
  1945. 13:   }
  1946. 14:
  1947. 15:   return 0;
  1948. 16: }
  1949. /* end */
  1950.  
  1951. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1952. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1953. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1954. checked program was:
  1955. /* begin */
  1956. 1: #include "ruby.h"
  1957. 2:
  1958. 3: #include <winsock2.h>
  1959. 4: #include <windows.h>
  1960. 5:
  1961. 6: /*top*/
  1962. 7: extern int t(void);
  1963. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  1964. 9: int main(int argc, char **argv)
  1965. 10: {
  1966. 11:   if (argc > 1000000) {
  1967. 12:     printf("%p", &t);
  1968. 13:   }
  1969. 14:
  1970. 15:   return 0;
  1971. 16: }
  1972. /* end */
  1973.  
  1974. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  1975. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  1976. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  1977. checked program was:
  1978. /* begin */
  1979.  1: #include "ruby.h"
  1980.  2:
  1981.  3: #include <winsock2.h>
  1982.  4: #include <windows.h>
  1983.  5:
  1984.  6: /*top*/
  1985.  7: extern int t(void);
  1986.  8: int t(void) { mysql_query(); return 0; }
  1987.  9: int main(int argc, char **argv)
  1988. 10: {
  1989. 11:   if (argc > 1000000) {
  1990. 12:     printf("%p", &t);
  1991. 13:   }
  1992. 14:
  1993. 15:   return 0;
  1994. 16: }
  1995. /* end */
  1996.  
  1997. --------------------
  1998.  
  1999. have_library: checking for main() in -lmygcc... -------------------- no
  2000.  
  2001. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmygcc  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  2002. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  2003. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmygcc  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  2004. checked program was:
  2005. /* begin */
  2006. 1: #include "ruby.h"
  2007. 2:
  2008. 3: #include <winsock2.h>
  2009. 4: #include <windows.h>
  2010. 5:
  2011. 6: /*top*/
  2012. 7: extern int t(void);
  2013. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))main; return 0; }
  2014. 9: int main(int argc, char **argv)
  2015. 10: {
  2016. 11:   if (argc > 1000000) {
  2017. 12:     printf("%p", &t);
  2018. 13:   }
  2019. 14:
  2020. 15:   return 0;
  2021. 16: }
  2022. /* end */
  2023.  
  2024. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmygcc  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  2025. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  2026. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmygcc  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  2027. checked program was:
  2028. /* begin */
  2029.  1: #include "ruby.h"
  2030.  2:
  2031.  3: #include <winsock2.h>
  2032.  4: #include <windows.h>
  2033.  5:
  2034.  6: /*top*/
  2035.  7: extern int t(void);
  2036.  8: int t(void) { main(); return 0; }
  2037.  9: int main(int argc, char **argv)
  2038. 10: {
  2039. 11:   if (argc > 1000000) {
  2040. 12:     printf("%p", &t);
  2041. 13:   }
  2042. 14:
  2043. 15:   return 0;
  2044. 16: }
  2045. /* end */
  2046.  
  2047. --------------------
  2048.  
  2049. find_library: checking for mysql_query() in -lmysqlclient... -------------------- no
  2050.  
  2051. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  2052. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  2053. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  2054. checked program was:
  2055. /* begin */
  2056. 1: #include "ruby.h"
  2057. 2:
  2058. 3: #include <winsock2.h>
  2059. 4: #include <windows.h>
  2060. 5:
  2061. 6: /*top*/
  2062. 7: extern int t(void);
  2063. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  2064. 9: int main(int argc, char **argv)
  2065. 10: {
  2066. 11:   if (argc > 1000000) {
  2067. 12:     printf("%p", &t);
  2068. 13:   }
  2069. 14:
  2070. 15:   return 0;
  2071. 16: }
  2072. /* end */
  2073.  
  2074. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  2075. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  2076. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  2077. checked program was:
  2078. /* begin */
  2079.  1: #include "ruby.h"
  2080.  2:
  2081.  3: #include <winsock2.h>
  2082.  4: #include <windows.h>
  2083.  5:
  2084.  6: /*top*/
  2085.  7: extern int t(void);
  2086.  8: int t(void) { mysql_query(); return 0; }
  2087.  9: int main(int argc, char **argv)
  2088. 10: {
  2089. 11:   if (argc > 1000000) {
  2090. 12:     printf("%p", &t);
  2091. 13:   }
  2092. 14:
  2093. 15:   return 0;
  2094. 16: }
  2095. /* end */
  2096.  
  2097. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  2098. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  2099. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  2100. checked program was:
  2101. /* begin */
  2102. 1: #include "ruby.h"
  2103. 2:
  2104. 3: #include <winsock2.h>
  2105. 4: #include <windows.h>
  2106. 5:
  2107. 6: /*top*/
  2108. 7: extern int t(void);
  2109. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  2110. 9: int main(int argc, char **argv)
  2111. 10: {
  2112. 11:   if (argc > 1000000) {
  2113. 12:     printf("%p", &t);
  2114. 13:   }
  2115. 14:
  2116. 15:   return 0;
  2117. 16: }
  2118. /* end */
  2119.  
  2120. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  2121. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  2122. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  2123. checked program was:
  2124. /* begin */
  2125.  1: #include "ruby.h"
  2126.  2:
  2127.  3: #include <winsock2.h>
  2128.  4: #include <windows.h>
  2129.  5:
  2130.  6: /*top*/
  2131.  7: extern int t(void);
  2132.  8: int t(void) { mysql_query(); return 0; }
  2133.  9: int main(int argc, char **argv)
  2134. 10: {
  2135. 11:   if (argc > 1000000) {
  2136. 12:     printf("%p", &t);
  2137. 13:   }
  2138. 14:
  2139. 15:   return 0;
  2140. 16: }
  2141. /* end */
  2142.  
  2143. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  2144. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  2145. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  2146. checked program was:
  2147. /* begin */
  2148. 1: #include "ruby.h"
  2149. 2:
  2150. 3: #include <winsock2.h>
  2151. 4: #include <windows.h>
  2152. 5:
  2153. 6: /*top*/
  2154. 7: extern int t(void);
  2155. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  2156. 9: int main(int argc, char **argv)
  2157. 10: {
  2158. 11:   if (argc > 1000000) {
  2159. 12:     printf("%p", &t);
  2160. 13:   }
  2161. 14:
  2162. 15:   return 0;
  2163. 16: }
  2164. /* end */
  2165.  
  2166. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  2167. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  2168. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  2169. checked program was:
  2170. /* begin */
  2171.  1: #include "ruby.h"
  2172.  2:
  2173.  3: #include <winsock2.h>
  2174.  4: #include <windows.h>
  2175.  5:
  2176.  6: /*top*/
  2177.  7: extern int t(void);
  2178.  8: int t(void) { mysql_query(); return 0; }
  2179.  9: int main(int argc, char **argv)
  2180. 10: {
  2181. 11:   if (argc > 1000000) {
  2182. 12:     printf("%p", &t);
  2183. 13:   }
  2184. 14:
  2185. 15:   return 0;
  2186. 16: }
  2187. /* end */
  2188.  
  2189. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  2190. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  2191. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  2192. checked program was:
  2193. /* begin */
  2194. 1: #include "ruby.h"
  2195. 2:
  2196. 3: #include <winsock2.h>
  2197. 4: #include <windows.h>
  2198. 5:
  2199. 6: /*top*/
  2200. 7: extern int t(void);
  2201. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  2202. 9: int main(int argc, char **argv)
  2203. 10: {
  2204. 11:   if (argc > 1000000) {
  2205. 12:     printf("%p", &t);
  2206. 13:   }
  2207. 14:
  2208. 15:   return 0;
  2209. 16: }
  2210. /* end */
  2211.  
  2212. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  2213. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  2214. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  2215. checked program was:
  2216. /* begin */
  2217.  1: #include "ruby.h"
  2218.  2:
  2219.  3: #include <winsock2.h>
  2220.  4: #include <windows.h>
  2221.  5:
  2222.  6: /*top*/
  2223.  7: extern int t(void);
  2224.  8: int t(void) { mysql_query(); return 0; }
  2225.  9: int main(int argc, char **argv)
  2226. 10: {
  2227. 11:   if (argc > 1000000) {
  2228. 12:     printf("%p", &t);
  2229. 13:   }
  2230. 14:
  2231. 15:   return 0;
  2232. 16: }
  2233. /* end */
  2234.  
  2235. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  2236. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  2237. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  2238. checked program was:
  2239. /* begin */
  2240. 1: #include "ruby.h"
  2241. 2:
  2242. 3: #include <winsock2.h>
  2243. 4: #include <windows.h>
  2244. 5:
  2245. 6: /*top*/
  2246. 7: extern int t(void);
  2247. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  2248. 9: int main(int argc, char **argv)
  2249. 10: {
  2250. 11:   if (argc > 1000000) {
  2251. 12:     printf("%p", &t);
  2252. 13:   }
  2253. 14:
  2254. 15:   return 0;
  2255. 16: }
  2256. /* end */
  2257.  
  2258. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  2259. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  2260. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  2261. checked program was:
  2262. /* begin */
  2263.  1: #include "ruby.h"
  2264.  2:
  2265.  3: #include <winsock2.h>
  2266.  4: #include <windows.h>
  2267.  5:
  2268.  6: /*top*/
  2269.  7: extern int t(void);
  2270.  8: int t(void) { mysql_query(); return 0; }
  2271.  9: int main(int argc, char **argv)
  2272. 10: {
  2273. 11:   if (argc > 1000000) {
  2274. 12:     printf("%p", &t);
  2275. 13:   }
  2276. 14:
  2277. 15:   return 0;
  2278. 16: }
  2279. /* end */
  2280.  
  2281. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  2282. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  2283. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  2284. checked program was:
  2285. /* begin */
  2286. 1: #include "ruby.h"
  2287. 2:
  2288. 3: #include <winsock2.h>
  2289. 4: #include <windows.h>
  2290. 5:
  2291. 6: /*top*/
  2292. 7: extern int t(void);
  2293. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  2294. 9: int main(int argc, char **argv)
  2295. 10: {
  2296. 11:   if (argc > 1000000) {
  2297. 12:     printf("%p", &t);
  2298. 13:   }
  2299. 14:
  2300. 15:   return 0;
  2301. 16: }
  2302. /* end */
  2303.  
  2304. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  2305. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  2306. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  2307. checked program was:
  2308. /* begin */
  2309.  1: #include "ruby.h"
  2310.  2:
  2311.  3: #include <winsock2.h>
  2312.  4: #include <windows.h>
  2313.  5:
  2314.  6: /*top*/
  2315.  7: extern int t(void);
  2316.  8: int t(void) { mysql_query(); return 0; }
  2317.  9: int main(int argc, char **argv)
  2318. 10: {
  2319. 11:   if (argc > 1000000) {
  2320. 12:     printf("%p", &t);
  2321. 13:   }
  2322. 14:
  2323. 15:   return 0;
  2324. 16: }
  2325. /* end */
  2326.  
  2327. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  2328. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  2329. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  2330. checked program was:
  2331. /* begin */
  2332. 1: #include "ruby.h"
  2333. 2:
  2334. 3: #include <winsock2.h>
  2335. 4: #include <windows.h>
  2336. 5:
  2337. 6: /*top*/
  2338. 7: extern int t(void);
  2339. 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))mysql_query; return 0; }
  2340. 9: int main(int argc, char **argv)
  2341. 10: {
  2342. 11:   if (argc > 1000000) {
  2343. 12:     printf("%p", &t);
  2344. 13:   }
  2345. 14:
  2346. 15:   return 0;
  2347. 16: }
  2348. /* end */
  2349.  
  2350. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/Ruby200-x64/include/ruby-2.0.0/x64-mingw32 -IC:/Ruby200-x64/include/ruby-2.0.0/ruby/backward -IC:/Ruby200-x64/include/ruby-2.0.0 -I. -I/usr/local/include -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64   -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c  -L. -LC:/Ruby200-x64/lib -L"C:\wamp\bin\mysql\mysql5.6.17\lib" --with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include 2>&1" -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  "
  2351. x86_64-w64-mingw32-gcc: error: unrecognized command line option '--with-mysql-include=C:\wamp\bin\mysql\mysql5.6.17\include'
  2352. x86_64-w64-mingw32-gcc: error:  -L/usr/local/ -L/usr/local//mysql -L.      -lx64-msvcrt-ruby200 -lmysqlclient  -lshell32 -lws2_32 -limagehlp -lshlwapi  : No such file or directory
  2353. checked program was:
  2354. /* begin */
  2355.  1: #include "ruby.h"
  2356.  2:
  2357.  3: #include <winsock2.h>
  2358.  4: #include <windows.h>
  2359.  5:
  2360.  6: /*top*/
  2361.  7: extern int t(void);
  2362.  8: int t(void) { mysql_query(); return 0; }
  2363.  9: int main(int argc, char **argv)
  2364. 10: {
  2365. 11:   if (argc > 1000000) {
  2366. 12:     printf("%p", &t);
  2367. 13:   }
  2368. 14:
  2369. 15:   return 0;
  2370. 16: }
  2371. /* end */
  2372.  
  2373. --------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement