Game Development Community

Newbie to macs

by Devon Ly · in Torque Game Engine · 05/28/2004 (1:37 am) · 2 replies

Hi guys just wondering if some experience mac coders might be able to help
i'm new to the mac scene and need some help

I get the following errors in xcode when i try to compile
"warning prebinding disable because dependant library: /System/Library/frameworks/applicationservices.framework/versions/A/applicationservices can't be searched"

i am also getting out of date warning for the oggvorbis lib

#1
05/28/2004 (4:16 am)
The out of date warning can be fixed using Terminal (it's in your Applications/Utilities/ directory) and running ranlib on the ogg files. Just navigate to your torque/lib/vorbis/macosx directory using the cd command and type...

ranlib libvorbis.a
ranlib libogg.a

As for the prebinding warning, I've never run into it before.

edit: I can replicate the warning you receive with prebinding. It's only a warning, so it won't prevent the build from completing (The warning seems more to do with XCode than with TGE), but the only way I've been able to replicate the warning is if I add duplicate symbols, which WILL prevent the build from completing. Are you getting any other error messages when you try to build? Have you made any modifications to the source?
#2
05/28/2004 (5:22 pm)
Beautiful thank chris.

and chris yeah I have made alterations to a few of the classes, I mainly work on my PC but am porting it over to mac because the rest of my team needs it in mac format.