Advertisement
Xenology

mysql-python install dump

Nov 21st, 2014
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.68 KB | None | 0 0
  1. Running setup.py install for MySQL-python
  2. building '_mysql' extension
  3. cc -fno-strict-aliasing -fno-common -dynamic -g -Os -pipe -fno-common -fno-strict-aliasing -fwrapv -DENABLE_DTRACE -DMACOSX -DNDEBUG -Wall -Wstrict-prototypes -Wshorten-64-to-32 -DNDEBUG -g -fwrapv -Os -Wall -Wstrict-prototypes -DENABLE_DTRACE -pipe -Dversion_info=(1,2,5,'final',1) -D__version__=1.2.5 -I/usr/local/Cellar/mysql/5.6.21/include/mysql -I/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c _mysql.c -o build/temp.macosx-10.9-intel-2.7/_mysql.o -Os -g -fno-strict-aliasing -arch i386 -arch x86_64
  4. In file included from _mysql.c:44:
  5. /usr/local/Cellar/mysql/5.6.21/include/mysql/my_config.h:348:11: warning: 'SIZEOF_SIZE_T' macro redefined
  6. #define SIZEOF_SIZE_T SIZEOF_LONG
  7. ^
  8. /System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/pymacconfig.h:56:17: note: previous definition is here
  9. # define SIZEOF_SIZE_T 4
  10. ^
  11. In file included from _mysql.c:44:
  12. /usr/local/Cellar/mysql/5.6.21/include/mysql/my_config.h:442:9: warning: 'HAVE_WCSCOLL' macro redefined
  13. #define HAVE_WCSCOLL
  14. ^
  15. /System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/pyconfig.h:906:9: note: previous definition is here
  16. #define HAVE_WCSCOLL 1
  17. ^
  18. _mysql.c:1589:10: warning: comparison of unsigned expression < 0 is always false [-Wtautological-compare]
  19. if (how < 0 || how >= sizeof(row_converters)) {
  20. ~~~ ^ ~
  21. 3 warnings generated.
  22. In file included from _mysql.c:44:
  23. /usr/local/Cellar/mysql/5.6.21/include/mysql/my_config.h:348:11: warning: 'SIZEOF_SIZE_T' macro redefined
  24. #define SIZEOF_SIZE_T SIZEOF_LONG
  25. ^
  26. /System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/pymacconfig.h:43:17: note: previous definition is here
  27. # define SIZEOF_SIZE_T 8
  28. ^
  29. In file included from _mysql.c:44:
  30. /usr/local/Cellar/mysql/5.6.21/include/mysql/my_config.h:442:9: warning: 'HAVE_WCSCOLL' macro redefined
  31. #define HAVE_WCSCOLL
  32. ^
  33. /System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/pyconfig.h:906:9: note: previous definition is here
  34. #define HAVE_WCSCOLL 1
  35. ^
  36. _mysql.c:287:14: warning: implicit conversion loses integer precision: 'Py_ssize_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
  37. cmd_argc = PySequence_Size(cmd_args);
  38. ~ ^~~~~~~~~~~~~~~~~~~~~~~~~
  39. _mysql.c:317:12: warning: implicit conversion loses integer precision: 'Py_ssize_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
  40. groupc = PySequence_Size(groups);
  41. ~ ^~~~~~~~~~~~~~~~~~~~~~~
  42. _mysql.c:470:14: warning: implicit conversion loses integer precision: 'Py_ssize_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
  43. int j, n2=PySequence_Size(fun);
  44. ~~ ^~~~~~~~~~~~~~~~~~~~
  45. _mysql.c:1127:9: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
  46. len = mysql_real_escape_string(&(self->connection), out, in, size);
  47. ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  48. _mysql.c:1129:9: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
  49. len = mysql_escape_string(out, in, size);
  50. ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  51. _mysql.c:1168:9: warning: implicit conversion loses integer precision: 'Py_ssize_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
  52. size = PyString_GET_SIZE(s);
  53. ~ ^~~~~~~~~~~~~~~~~~~~
  54. /System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/stringobject.h:92:32: note: expanded from macro 'PyString_GET_SIZE'
  55. #define PyString_GET_SIZE(op) Py_SIZE(op)
  56. ^~~~~~~~~~~
  57. /System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/object.h:116:56: note: expanded from macro 'Py_SIZE'
  58. #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size)
  59. ~~~~~~~~~~~~~~~~~~~~~~^~~~~~~
  60. _mysql.c:1178:9: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
  61. len = mysql_real_escape_string(&(self->connection), out+1, in, size);
  62. ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  63. _mysql.c:1180:9: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
  64. len = mysql_escape_string(out+1, in, size);
  65. ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  66. _mysql.c:1274:11: warning: implicit conversion loses integer precision: 'Py_ssize_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
  67. if ((n = PyObject_Length(o)) == -1) goto error;
  68. ~ ^~~~~~~~~~~~~~~~~~
  69. /System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/abstract.h:434:25: note: expanded from macro 'PyObject_Length'
  70. #define PyObject_Length PyObject_Size
  71. ^
  72. _mysql.c:1466:10: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
  73. len = strlen(buf);
  74. ~ ^~~~~~~~~~~
  75. _mysql.c:1468:10: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
  76. len = strlen(buf);
  77. ~ ^~~~~~~~~~~
  78. _mysql.c:1504:11: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
  79. len = strlen(buf);
  80. ~ ^~~~~~~~~~~
  81. _mysql.c:1506:11: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
  82. len = strlen(buf);
  83. ~ ^~~~~~~~~~~
  84. _mysql.c:1589:10: warning: comparison of unsigned expression < 0 is always false [-Wtautological-compare]
  85. if (how < 0 || how >= sizeof(row_converters)) {
  86. ~~~ ^ ~
  87. 16 warnings generated.
  88. cc -bundle -undefined dynamic_lookup -Wl,-F. build/temp.macosx-10.9-intel-2.7/_mysql.o -L/usr/local/Cellar/mysql/5.6.21/lib -lmysqlclient_r -lssl -lcrypto -o build/lib.macosx-10.9-intel-2.7/_mysql.so -arch i386 -arch x86_64
  89.  
  90. Successfully installed MySQL-python
  91. Cleaning up...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement