Advertisement
pellekrogholt

Untitled

Jan 15th, 2014
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.80 KB | None | 0 0
  1. bash-3.2$ ../bin/python setup.py install
  2. ../bin/python setup.py install
  3. running install
  4. running build
  5. running build_py
  6. creating build
  7. creating build/lib.macosx-10.9-intel-2.7
  8. creating build/lib.macosx-10.9-intel-2.7/bluetooth
  9. copying bluetooth/__init__.py -> build/lib.macosx-10.9-intel-2.7/bluetooth
  10. copying bluetooth/bluez.py -> build/lib.macosx-10.9-intel-2.7/bluetooth
  11. copying bluetooth/btcommon.py -> build/lib.macosx-10.9-intel-2.7/bluetooth
  12. copying bluetooth/msbt.py -> build/lib.macosx-10.9-intel-2.7/bluetooth
  13. copying bluetooth/osx.py -> build/lib.macosx-10.9-intel-2.7/bluetooth
  14. copying bluetooth/widcomm.py -> build/lib.macosx-10.9-intel-2.7/bluetooth
  15. running build_ext
  16. building 'bluetooth._osxbt' extension
  17. creating build/temp.macosx-10.9-intel-2.7
  18. creating build/temp.macosx-10.9-intel-2.7/osx
  19. cc -fno-strict-aliasing -fno-common -dynamic -g -Os -pipe -fno-common -fno-strict-aliasing -fwrapv -mno-fused-madd -DENABLE_DTRACE -DMACOSX -DNDEBUG -Wall -Wstrict-prototypes -Wshorten-64-to-32 -DNDEBUG -g -fwrapv -Os -Wall -Wstrict-prototypes -DENABLE_DTRACE -pipe -arch x86_64 -I/System/Library/Frameworks/IOBluetooth.framework/Headers -I/System/Library/Frameworks/CoreFoundation.framework/Headers -I/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c osx/_osxbt.c -o build/temp.macosx-10.9-intel-2.7/osx/_osxbt.o
  20. clang: warning: argument unused during compilation: '-mno-fused-madd'
  21. osx/_osxbt.c:676:5: error: unknown type name 'IOBluetoothDeviceInquiryRef'; did you
  22. mean 'IOBluetoothDeviceRef'?
  23. IOBluetoothDeviceInquiryRef inquiry;
  24. ^~~~~~~~~~~~~~~~~~~~~~~~~~~
  25. IOBluetoothDeviceRef
  26. /System/Library/Frameworks/IOBluetooth.framework/Headers/IOBluetoothUserLib.h:34:47: note:
  27. 'IOBluetoothDeviceRef' declared here
  28. typedef struct OpaqueIOBluetoothObjectRef * IOBluetooth...
  29. ^
  30. osx/_osxbt.c:688:17: error: unknown type name 'IOBluetoothDeviceInquiryRef'; did
  31. you mean 'IOBluetoothDeviceRef'?
  32. IOBluetoothDeviceInquiryRef inquiryRef,
  33. ^~~~~~~~~~~~~~~~~~~~~~~~~~~
  34. IOBluetoothDeviceRef
  35. /System/Library/Frameworks/IOBluetooth.framework/Headers/IOBluetoothUserLib.h:34:47: note:
  36. 'IOBluetoothDeviceRef' declared here
  37. typedef struct OpaqueIOBluetoothObjectRef * IOBluetooth...
  38. ^
  39. osx/_osxbt.c:703:19: warning: implicit declaration of function
  40. 'IOBluetoothDeviceInquiryCreateWithCallbackRefCon' is invalid in C99
  41. [-Wimplicit-function-declaration]
  42. dd->inquiry = IOBluetoothDeviceInquiryCreateWithCallbackRefCon (&dd);
  43. ^
  44. osx/_osxbt.c:703:17: warning: incompatible integer to pointer conversion assigning
  45. to 'IOBluetoothDeviceRef' (aka 'struct OpaqueIOBluetoothObjectRef *') from
  46. 'int' [-Wint-conversion]
  47. dd->inquiry = IOBluetoothDeviceInquiryCreateWithCallbackRefCon (&dd);
  48. ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  49. osx/_osxbt.c:705:5: warning: implicit declaration of function
  50. 'IOBluetoothDeviceInquirySetCompleteCallback' is invalid in C99
  51. [-Wimplicit-function-declaration]
  52. IOBluetoothDeviceInquirySetCompleteCallback (dd->inquiry,
  53. ^
  54. osx/_osxbt.c:717:5: warning: implicit declaration of function
  55. 'IOBluetoothDeviceInquiryStart' is invalid in C99
  56. [-Wimplicit-function-declaration]
  57. IOBluetoothDeviceInquiryStart (dd->inquiry);
  58. ^
  59. osx/_osxbt.c:721:5: warning: implicit declaration of function
  60. 'IOBluetoothDeviceInquiryDelete' is invalid in C99
  61. [-Wimplicit-function-declaration]
  62. IOBluetoothDeviceInquiryDelete (dd->inquiry);
  63. ^
  64. 5 warnings and 2 errors generated.
  65. error: command 'cc' failed with exit status 1
  66. bash-3.2$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement