remotecontrol Posted June 3, 2013 at 07:23 AM Share Posted June 3, 2013 at 07:23 AM Hallo TF-Team, bei den neuen C++ Bindings bekomme ich eine neue Compiler-Warnung auf dem Raspi, die bei meinen Settings zum Compile-Abbruch führt (-O2 -Wall -Werror): ip_connection.c:49:3: error: ‘gcc_struct’ attribute directive ignored [-Werror=attributes] ip_connection.c:60:3: error: ‘gcc_struct’ attribute directive ignored [-Werror=attributes] Das stammt von diesem Code #elif defined __GNUC__ #define ATTRIBUTE_PACKED __attribute__((gcc_struct, packed)) Im Header dazu ist eine ähnliche Stelle, dort wird aber nur packed verwendet und nicht gcc_struct,packed. Die packed Option sollte überall gleichartig definiert sein - oder nicht? (Interessanterweise führt das bei OpenSuse mit der identischen Compiler-Version nicht zu einer Warnung) Und noch eine Stelle, die zu einer Warnung führt. Daher wäre folgende Änderung in ip_connection.c noch sinnvoll (hatte ich bisher von Hand geändert): 1275,1276c1275 < length = ((PacketHeader *)pending_data)->length; --- > PacketHeader *ptr = (PacketHeader *)pending_data; > length = ptr->length; Quote Link to comment Share on other sites More sharing options...
photron Posted June 3, 2013 at 02:48 PM Share Posted June 3, 2013 at 02:48 PM Hm, gcc_struct kennt GCC nur für x86. Und ja, gcc_struct sollte auch im Header gesetzt werden, das ist aber nicht kritisch, da das Problem für das ich gcc_struct eingefügt hatte nur die .c Datei betrifft. Als kurzfristigen Workaround kannst du für nicht-Windows Systeme das gcc_struct einfach streichen. In der nächsten Bindingsversion ist dass dann behoben. Welche Warning macht denn die "length = ((PacketHeader *)pending_data)->length;" Zeile? Quote Link to comment Share on other sites More sharing options...
remotecontrol Posted June 3, 2013 at 07:10 PM Author Share Posted June 3, 2013 at 07:10 PM Da kommt diese Meldung: ip_connection.c: In function ‘void ipcon_receive_loop(void*)’: ip_connection.c:1275:43: error: dereferencing type-punned pointer will break strict-aliasing rules [-Werror=strict-aliasing] Quote Link to comment Share on other sites More sharing options...
photron Posted June 4, 2013 at 02:14 PM Share Posted June 4, 2013 at 02:14 PM Ah, ich hatte im Test-Compile-Script -O2 nicht an und dann gibt GCC diese Warning nicht aus. Ist jetzt im git korrigiert. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.