• Login
  • Register
  • Dolphin Forums
  • Home
  • FAQ
  • Download
  • Wiki
  • Code


Dolphin, the GameCube and Wii emulator - Forums › Dolphin Emulator Discussion and Support › Development Discussion v
« Previous 1 ... 54 55 56 57 58 ... 117 Next »

Linux Bluetooth compiling error
View New Posts | View Today's Posts

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Thread Modes
Linux Bluetooth compiling error
03-06-2012, 05:28 AM
#1
SquidLord Offline
Junior Member
**
Posts: 10
Threads: 3
Joined: Dec 2011
I did notice the other thread concerning Bluetooth on Linux, but this differs slightly.

I get 68% of the way compiling [ends at Wiimote.cpp.o] with this long chain of error:

Code:
In file included from /home/squid/git/dolphin-emu/Source/Core/Core/Src/HW/WiimoteReal/WiimoteRealBase.h:26:0,
                 from /home/squid/git/dolphin-emu/Source/Core/Core/Src/HW/WiimoteReal/WiimoteReal.h:24,
                 from /home/squid/git/dolphin-emu/Source/Core/Core/Src/HW/Wiimote.cpp:5:
/usr/include/bluetooth/bluetooth.h: In function ‘uint64_t bt_get_le64(void*)’:
/usr/include/bluetooth/bluetooth.h:131:9: error: expected identifier before ‘*’ token
/usr/include/bluetooth/bluetooth.h:131:9: error: expected ‘,’ or ‘...’ before ‘(’ token
/usr/include/bluetooth/bluetooth.h:131:9: error: expected ‘;’ at end of member declaration
/usr/include/bluetooth/bluetooth.h:131:9: error: ‘__v’ does not name a type
/usr/include/bluetooth/bluetooth.h:131:9: error: ‘typeof’ was not declared in this scope
/usr/include/bluetooth/bluetooth.h:131:9: error: ‘struct bt_get_le64(void*)::<anonymous>’ has no member named ‘__v’
/usr/include/bluetooth/bluetooth.h: In function ‘uint64_t bt_get_be64(void*)’:
/usr/include/bluetooth/bluetooth.h:136:9: error: expected identifier before ‘*’ token
/usr/include/bluetooth/bluetooth.h:136:9: error: expected ‘,’ or ‘...’ before ‘(’ token
/usr/include/bluetooth/bluetooth.h:136:9: error: expected ‘;’ at end of member declaration
/usr/include/bluetooth/bluetooth.h:136:9: error: ‘__v’ does not name a type
/usr/include/bluetooth/bluetooth.h:136:9: error: ‘typeof’ was not declared in this scope
/usr/include/bluetooth/bluetooth.h:136:9: error: ‘struct bt_get_be64(void*)::<anonymous>’ has no member named ‘__v’
/usr/include/bluetooth/bluetooth.h: In function ‘uint32_t bt_get_le32(void*)’:
/usr/include/bluetooth/bluetooth.h:141:9: error: expected identifier before ‘*’ token
/usr/include/bluetooth/bluetooth.h:141:9: error: expected ‘,’ or ‘...’ before ‘(’ token
/usr/include/bluetooth/bluetooth.h:141:9: error: expected ‘;’ at end of member declaration
/usr/include/bluetooth/bluetooth.h:141:9: error: ‘__v’ does not name a type
/usr/include/bluetooth/bluetooth.h:141:9: error: ‘typeof’ was not declared in this scope
/usr/include/bluetooth/bluetooth.h:141:9: error: ‘struct bt_get_le32(void*)::<anonymous>’ has no member named ‘__v’
/usr/include/bluetooth/bluetooth.h: In function ‘uint32_t bt_get_be32(void*)’:
/usr/include/bluetooth/bluetooth.h:146:9: error: expected identifier before ‘*’ token
/usr/include/bluetooth/bluetooth.h:146:9: error: expected ‘,’ or ‘...’ before ‘(’ token
/usr/include/bluetooth/bluetooth.h:146:9: error: expected ‘;’ at end of member declaration
/usr/include/bluetooth/bluetooth.h:146:9: error: ‘__v’ does not name a type
/usr/include/bluetooth/bluetooth.h:146:9: error: ‘typeof’ was not declared in this scope
/usr/include/bluetooth/bluetooth.h:146:9: error: ‘struct bt_get_be32(void*)::<anonymous>’ has no member named ‘__v’
/usr/include/bluetooth/bluetooth.h: In function ‘uint16_t bt_get_le16(void*)’:
/usr/include/bluetooth/bluetooth.h:151:9: error: expected identifier before ‘*’ token
/usr/include/bluetooth/bluetooth.h:151:9: error: expected ‘,’ or ‘...’ before ‘(’ token
/usr/include/bluetooth/bluetooth.h:151:9: error: expected ‘;’ at end of member declaration
/usr/include/bluetooth/bluetooth.h:151:9: error: ‘__v’ does not name a type
/usr/include/bluetooth/bluetooth.h:151:9: error: ‘typeof’ was not declared in this scope
/usr/include/bluetooth/bluetooth.h:151:9: error: ‘struct bt_get_le16(void*)::<anonymous>’ has no member named ‘__v’
/usr/include/bluetooth/bluetooth.h: In function ‘uint16_t bt_get_be16(void*)’:
/usr/include/bluetooth/bluetooth.h:156:9: error: expected identifier before ‘*’ token
/usr/include/bluetooth/bluetooth.h:156:9: error: expected ‘,’ or ‘...’ before ‘(’ token
/usr/include/bluetooth/bluetooth.h:156:9: error: expected ‘;’ at end of member declaration
/usr/include/bluetooth/bluetooth.h:156:9: error: ‘__v’ does not name a type
/usr/include/bluetooth/bluetooth.h:156:9: error: ‘typeof’ was not declared in this scope
/usr/include/bluetooth/bluetooth.h:156:9: error: ‘struct bt_get_be16(void*)::<anonymous>’ has no member named ‘__v’
make[2]: *** [Source/Core/Core/CMakeFiles/core.dir/Src/HW/Wiimote.cpp.o] Error 1
make[1]: *** [Source/Core/Core/CMakeFiles/core.dir/all] Error 2
make: *** [all] Error 2

I'm using bluez 4.98-4 and have tried 4.98-3 and 4.98-2. Odd that 4.98-2 didn't work after I rolled back as it was the last one that did work. I'm also trying to compile the most recent version from the git. I've also tried appending "-DCMAKE_CXX_FLAGS=-fpermissive" to my usual "cmake .." command.

Any idea, or is this the same issue to as the other thread?
Computer
GPU: ATI 5870
CPU: Intel Core 2 Quad Q6600 @ 3.0GHz
RAM: 6GB DDR2 800
MOBO: XFX 750i
OS: Windows 7 x64, Arch Linux x86_64
Find
Reply
« Next Oldest | Next Newest »


Messages In This Thread
Linux Bluetooth compiling error - SquidLord - 03-06-2012, 05:28 AM
RE: Linux Bluetooth compiling error - scummos - 03-06-2012, 08:53 AM
RE: Linux Bluetooth compiling error - SquidLord - 03-09-2012, 08:36 AM
RE: Linux Bluetooth compiling error - delroth - 03-09-2012, 08:35 PM
RE: Linux Bluetooth compiling error - SquidLord - 03-12-2012, 07:52 AM

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:


Users browsing this thread:



Powered By MyBB | Theme by Fragma

Linear Mode
Threaded Mode