The following warnings occurred:
Warning [2] Undefined array key "lockoutexpiry" - Line: 94 - File: global.php PHP 8.1.27 (Linux)
File Line Function
/global.php 94 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined array key "lockoutexpiry" - Line: 573 - File: global.php PHP 8.1.27 (Linux)
File Line Function
/global.php 573 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined variable $can_access_moderationqueue - Line: 752 - File: global.php PHP 8.1.27 (Linux)
File Line Function
/global.php 752 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined array key "avatartype" - Line: 892 - File: global.php PHP 8.1.27 (Linux)
File Line Function
/global.php 892 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined array key "avatartype" - Line: 892 - File: global.php PHP 8.1.27 (Linux)
File Line Function
/global.php 892 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined variable $awaitingusers - Line: 34 - File: global.php(959) : eval()'d code PHP 8.1.27 (Linux)
File Line Function
/global.php(959) : eval()'d code 34 errorHandler->error
/global.php 959 eval
/printthread.php 16 require_once
Warning [2] Undefined array key "style" - Line: 1024 - File: global.php PHP 8.1.27 (Linux)
File Line Function
/global.php 1024 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined property: MyLanguage::$lang_select_default - Line: 5308 - File: inc/functions.php PHP 8.1.27 (Linux)
File Line Function
/inc/functions.php 5308 errorHandler->error
/global.php 1024 build_theme_select
/printthread.php 16 require_once
Warning [2] Undefined array key 1 - Line: 1474 - File: inc/functions.php PHP 8.1.27 (Linux)
File Line Function
/inc/functions.php 1474 errorHandler->error
/inc/functions.php 1429 fetch_forum_permissions
/printthread.php 76 forum_permissions
Warning [2] Undefined property: MyLanguage::$archive_pages - Line: 2 - File: printthread.php(257) : eval()'d code PHP 8.1.27 (Linux)
File Line Function
/printthread.php(257) : eval()'d code 2 errorHandler->error
/printthread.php 257 eval
/printthread.php 117 printthread_multipage
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.27 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.27 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.27 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.27 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.27 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.27 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.27 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.27 (Linux)
File Line Function
/printthread.php 165 errorHandler->error



Forums
Mac OS X Leopard (10.5) - Printable Version

+- Forums (https://www.vdrift.net/Forum)
+-- Forum: Community (https://www.vdrift.net/Forum/forumdisplay.php?fid=3)
+--- Forum: General Discussion (https://www.vdrift.net/Forum/forumdisplay.php?fid=8)
+--- Thread: Mac OS X Leopard (10.5) (/showthread.php?tid=803)

Pages: 1 2 3


- cotharyus - 11-24-2007

I assume you're running leopard? What build are you using? Building your own from the latest SVN? Downloaded from my website?

Basically, if you've got shaders off, and it won't crash when you run it from command line (even if you're not using gdb?) then you're seeing something I haven't seen before. Now, if it only won't crash when you're using gdb, I can believe that - I'm fighting this bug right now, and the only thing I can tell you is, some cars will work on some tracks when the game is run normally, but everything seems to work just fine when you run through gdb, which is making it hard to figure out what's going on. This is the problem that's been documented several times over in the development section and has a place in Abs1nth's thread about OS X development. I'm still playing with things, I've sent a report to Apple, and I'm not giving up. All I can tell you is if you want to play with it just to play, play through gdb - then you're a step up on the game if something stupid happens, you can get everyone a backtrace.


- kidrock - 11-25-2007

whats gdb lol.... im building my own from the latest SVN.... do i need to rebuild after turning shaders off in preferences? i assumed no because it doesn't affect the build files... just the preferences.


- cotharyus - 11-25-2007

No, you don't need to rebuild after changing game preferences. What kind of Mac do you have?

gdb is a debugging program. If the game should crash while it's connected to gdb, you can get all sorts of useful information. Open a terminal and type man gdb


- joevenzon - 11-25-2007

Here's the 10 second tutorial on gdb:

Code:
gdb some/path/to/vdrift
(replace "some/path/to/vdrift" with the actual path to the vdrift executable... for me it's build/vdrift)

at the (gdb) prompt, do this:
Code:
run

after the program quits or there's a crash, you'll be back at the (gdb) prompt. if it crashed, do this:
Code:
bt
(if there was no crash it'll just say "No stack.")

to quit gdb, then just do:
Code:
quit