Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- have_func: checking for rb_thread_blocking_region()... -------------------- yes
- "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 "
- checked program was:
- /* begin */
- 1: #include "ruby.h"
- 2:
- 3: #include <winsock2.h>
- 4: #include <windows.h>
- 5: int main(int argc, char **argv)
- 6: {
- 7: return 0;
- 8: }
- /* end */
- "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 "
- conftest.c: In function 't':
- conftest.c:8:1: warning: 'rb_thread_blocking_region' is deprecated (declared at C:/Ruby200-x64/include/ruby-2.0.0/ruby/intern.h:839) [-Wdeprecated-declarations]
- conftest.c:8:32: warning: variable 'p' set but not used [-Wunused-but-set-variable]
- checked program was:
- /* begin */
- 1: #include "ruby.h"
- 2:
- 3: #include <winsock2.h>
- 4: #include <windows.h>
- 5:
- 6: /*top*/
- 7: extern int t(void);
- 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_thread_blocking_region; return 0; }
- 9: int main(int argc, char **argv)
- 10: {
- 11: if (argc > 1000000) {
- 12: printf("%p", &t);
- 13: }
- 14:
- 15: return 0;
- 16: }
- /* end */
- --------------------
- have_func: checking for rb_wait_for_single_fd()... -------------------- yes
- "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 "
- conftest.c: In function 't':
- conftest.c:8:57: error: 'rb_wait_for_single_fd' undeclared (first use in this function)
- conftest.c:8:57: note: each undeclared identifier is reported only once for each function it appears in
- conftest.c:8:32: warning: variable 'p' set but not used [-Wunused-but-set-variable]
- checked program was:
- /* begin */
- 1: #include "ruby.h"
- 2:
- 3: #include <winsock2.h>
- 4: #include <windows.h>
- 5:
- 6: /*top*/
- 7: extern int t(void);
- 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_wait_for_single_fd; return 0; }
- 9: int main(int argc, char **argv)
- 10: {
- 11: if (argc > 1000000) {
- 12: printf("%p", &t);
- 13: }
- 14:
- 15: return 0;
- 16: }
- /* end */
- "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 "
- conftest.c: In function 't':
- conftest.c:8:1: warning: implicit declaration of function 'rb_wait_for_single_fd' [-Wimplicit-function-declaration]
- checked program was:
- /* begin */
- 1: #include "ruby.h"
- 2:
- 3: #include <winsock2.h>
- 4: #include <windows.h>
- 5:
- 6: /*top*/
- 7: extern int t(void);
- 8: int t(void) { rb_wait_for_single_fd(); return 0; }
- 9: int main(int argc, char **argv)
- 10: {
- 11: if (argc > 1000000) {
- 12: printf("%p", &t);
- 13: }
- 14:
- 15: return 0;
- 16: }
- /* end */
- --------------------
- have_func: checking for rb_hash_dup()... -------------------- yes
- "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 "
- conftest.c: In function 't':
- conftest.c:8:32: warning: variable 'p' set but not used [-Wunused-but-set-variable]
- checked program was:
- /* begin */
- 1: #include "ruby.h"
- 2:
- 3: #include <winsock2.h>
- 4: #include <windows.h>
- 5:
- 6: /*top*/
- 7: extern int t(void);
- 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_hash_dup; return 0; }
- 9: int main(int argc, char **argv)
- 10: {
- 11: if (argc > 1000000) {
- 12: printf("%p", &t);
- 13: }
- 14:
- 15: return 0;
- 16: }
- /* end */
- --------------------
- have_func: checking for rb_intern3()... -------------------- yes
- "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 "
- conftest.c: In function 't':
- conftest.c:8:57: error: 'rb_intern3' undeclared (first use in this function)
- conftest.c:8:57: note: each undeclared identifier is reported only once for each function it appears in
- conftest.c:8:32: warning: variable 'p' set but not used [-Wunused-but-set-variable]
- checked program was:
- /* begin */
- 1: #include "ruby.h"
- 2:
- 3: #include <winsock2.h>
- 4: #include <windows.h>
- 5:
- 6: /*top*/
- 7: extern int t(void);
- 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_intern3; return 0; }
- 9: int main(int argc, char **argv)
- 10: {
- 11: if (argc > 1000000) {
- 12: printf("%p", &t);
- 13: }
- 14:
- 15: return 0;
- 16: }
- /* end */
- "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 "
- conftest.c: In function 't':
- conftest.c:8:1: warning: implicit declaration of function 'rb_intern3' [-Wimplicit-function-declaration]
- checked program was:
- /* begin */
- 1: #include "ruby.h"
- 2:
- 3: #include <winsock2.h>
- 4: #include <windows.h>
- 5:
- 6: /*top*/
- 7: extern int t(void);
- 8: int t(void) { rb_intern3(); return 0; }
- 9: int main(int argc, char **argv)
- 10: {
- 11: if (argc > 1000000) {
- 12: printf("%p", &t);
- 13: }
- 14:
- 15: return 0;
- 16: }
- /* end */
- --------------------
- have_library: checking for main() in -llibmysql... -------------------- no
- "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. -IC:\Program -IC:\Program -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 -LC:\Program -L. -lx64-msvcrt-ruby200 -llibmysql -lshell32 -lws2_32 -limagehlp -lshlwapi "
- conftest.c: In function 't':
- conftest.c:8:57: error: 'main' undeclared (first use in this function)
- conftest.c:8:57: note: each undeclared identifier is reported only once for each function it appears in
- conftest.c:8:32: warning: variable 'p' set but not used [-Wunused-but-set-variable]
- checked program was:
- /* begin */
- 1: #include "ruby.h"
- 2:
- 3: #include <winsock2.h>
- 4: #include <windows.h>
- 5:
- 6: /*top*/
- 7: extern int t(void);
- 8: int t(void) { void ((*volatile p)()); p = (void ((*)()))main; return 0; }
- 9: int main(int argc, char **argv)
- 10: {
- 11: if (argc > 1000000) {
- 12: printf("%p", &t);
- 13: }
- 14:
- 15: return 0;
- 16: }
- /* end */
- "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. -IC:\Program -IC:\Program -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 -LC:\Program -L. -lx64-msvcrt-ruby200 -llibmysql -lshell32 -lws2_32 -limagehlp -lshlwapi "
- conftest.c: In function 't':
- conftest.c:8:1: warning: implicit declaration of function 'main' [-Wimplicit-function-declaration]
- c:/libraries/rubydevkit/mingw/bin/../lib/gcc/x86_64-w64-mingw32/4.7.2/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -llibmysql
- collect2.exe: error: ld returned 1 exit status
- checked program was:
- /* begin */
- 1: #include "ruby.h"
- 2:
- 3: #include <winsock2.h>
- 4: #include <windows.h>
- 5:
- 6: /*top*/
- 7: extern int t(void);
- 8: int t(void) { main(); return 0; }
- 9: int main(int argc, char **argv)
- 10: {
- 11: if (argc > 1000000) {
- 12: printf("%p", &t);
- 13: }
- 14:
- 15: return 0;
- 16: }
- /* end */
- --------------------
Advertisement
Add Comment
Please, Sign In to add comment