[Opentracker-develop]Re: Time for an OpenTracker Release?
Brought to you by:
axeld
|
From: Alexander G. M. S. <agm...@ro...> - 2005-11-28 07:05:24
|
The PowerPC version does compile, with a few warnings. I'll include the error messages so that someone with CVS access can fix them (mostly changing 1.0 to 1.0F). Seems to run OK as-is. Only worrysome one is the bitwise OR, should be a logical OR.
- Alex
mwcc -c PoseView.cpp -I./ -I../shared -i- -O7 -w all -w nonotinlined -D_BUILDING_tracker=1 -DOPEN_TRACKER=1 -D_INCLUDES_CLASS_DEVICE_MAP=1 -D_SUPPORTS_RESOURCES=1 -D_SUPPORTS_FEATURE_SCRIPTING=1 -Dstd="" -o obj.ppc/PoseView.o
### mwcc Compiler Warning :
# SetHasPosesInClipboard(hasPosesInClipboard | fHasPosesInClipboard);
# ^
# implicit arithmetic conversion from 'int' to 'bool'
#----------------------------------------------------------
File "/CommonPPC/agmsmith/OpenTracker/opentracker/tracker/PoseView.cpp"; Line 2863
#----------------------------------------------------------
mwcc -c QueryPoseView.cpp -I./ -I../shared -i- -O7 -w all -w nonotinlined -D_BUILDING_tracker=1 -DOPEN_TRACKER=1 -D_INCLUDES_CLASS_DEVICE_MAP=1 -D_SUPPORTS_RESOURCES=1 -D_SUPPORTS_FEATURE_SCRIPTING=1 -Dstd="" -o obj.ppc/QueryPoseView.o
### mwcc Compiler Warning :
# if ((buffer = (char *)malloc(info.size)) != NULL
# ^
# implicit arithmetic conversion from 'long long' to 'unsigned long'
#----------------------------------------------------------
File "/CommonPPC/agmsmith/OpenTracker/opentracker/tracker/QueryPoseView.cpp"; Line 457
#----------------------------------------------------------
mwcc -c StatusWindow.cpp -I./ -I../shared -i- -O7 -w all -w nonotinlined -D_BUILDING_tracker=1 -DOPEN_TRACKER=1 -D_INCLUDES_CLASS_DEVICE_MAP=1 -D_SUPPORTS_RESOURCES=1 -D_SUPPORTS_FEATURE_SCRIPTING=1 -Dstd="" -o obj.ppc/StatusWindow.o
### mwcc Compiler Warning :
# AddLine(BPoint(bounds.left, bounds.bottom - 1.0),
# ^
# implicit arithmetic conversion from 'double' to 'float'
#----------------------------------------------------------
File "/CommonPPC/agmsmith/OpenTracker/opentracker/tracker/StatusWindow.cpp"; Line 655
#----------------------------------------------------------
### mwcc Compiler Warning :
# AddLine(BPoint(bounds.left + 1.0, bounds.top),
# ^
# implicit arithmetic conversion from 'double' to 'float'
#----------------------------------------------------------
File "/CommonPPC/agmsmith/OpenTracker/opentracker/tracker/StatusWindow.cpp"; Line 657
#----------------------------------------------------------
### mwcc Compiler Warning :
# AddLine(BPoint(bounds.right, bounds.top + 1.0),
# ^
# implicit arithmetic conversion from 'double' to 'float'
#----------------------------------------------------------
File "/CommonPPC/agmsmith/OpenTracker/opentracker/tracker/StatusWindow.cpp"; Line 659
#----------------------------------------------------------
### mwcc Compiler Warning :
# AddLine(BPoint(bounds.right - 1.0, bounds.bottom),
# ^
# implicit arithmetic conversion from 'double' to 'float'
#----------------------------------------------------------
File "/CommonPPC/agmsmith/OpenTracker/opentracker/tracker/StatusWindow.cpp"; Line 661
#----------------------------------------------------------
mwcc -c CalendarMenuItem.cpp -I./ -I../shared -I../tracker -i- -O7 -w all -w nonotinlined -DDB_ADDONS -DOPEN_TRACKER=1 -D_INCLUDES_CLASS_DEVICE_MAP=1 -D_SUPPORTS_RESOURCES=1 -D_SUPPORTS_FEATURE_SCRIPTING=1 -D_SHOW_CALENDAR_MENU_ITEM=1 -Dstd="" -o obj.ppc/CalendarMenuItem.o
### mwcc Compiler Warning :
# TitleHeight = ceil(fontHeight.ascent + fontHeight.descent + fontHeight.leading);
# ^
# implicit arithmetic conversion from 'double' to 'float'
#----------------------------------------------------------
File "/CommonPPC/agmsmith/OpenTracker/opentracker/deskbar/CalendarMenuItem.cpp"; Line 159
#----------------------------------------------------------
### mwcc Compiler Warning :
# t = ceil(fontHeight.ascent + fontHeight.descent + fontHeight.leading + kRowGap);
# ^
# implicit arithmetic conversion from 'double' to 'float'
#----------------------------------------------------------
File "/CommonPPC/agmsmith/OpenTracker/opentracker/deskbar/CalendarMenuItem.cpp"; Line 163
#----------------------------------------------------------
### mwcc Compiler Warning :
# fFontHeight = ceil(fontHeight.ascent);
# ^
# implicit arithmetic conversion from 'double' to 'float'
#----------------------------------------------------------
File "/CommonPPC/agmsmith/OpenTracker/opentracker/deskbar/CalendarMenuItem.cpp"; Line 164
#----------------------------------------------------------
mwcc -c WindowMenuItem.cpp -I./ -I../shared -I../tracker -i- -O7 -w all -w nonotinlined -DDB_ADDONS -DOPEN_TRACKER=1 -D_INCLUDES_CLASS_DEVICE_MAP=1 -D_SUPPORTS_RESOURCES=1 -D_SUPPORTS_FEATURE_SCRIPTING=1 -D_SHOW_CALENDAR_MENU_ITEM=1 -Dstd="" -o obj.ppc/WindowMenuItem.o
### mwcc Compiler Warning :
# Frame().Width() - contLoc.x - 3.0);
# ^
# implicit arithmetic conversion from 'double' to 'float'
#----------------------------------------------------------
File "/CommonPPC/agmsmith/OpenTracker/opentracker/deskbar/WindowMenuItem.cpp"; Line 126
#----------------------------------------------------------
### mwcc Compiler Warning :
# rgb_color shadow = tint_color(menuColor, (B_NO_TINT + B_DARKEN_1_TINT) / 2.0);
# ^
# implicit arithmetic conversion from 'double' to 'float'
#----------------------------------------------------------
File "/CommonPPC/agmsmith/OpenTracker/opentracker/deskbar/WindowMenuItem.cpp"; Line 180
#----------------------------------------------------------
|