Issues.00242 - lordmundi/wikidoctest GitHub Wiki
00242: 2.1 appears to be broke on Mac
Summary: 2.1 appears to be broke on Mac
Created: 2010–05–18 14:26
Status: Released
Category: Bug
From: jbullock
Version: 2.1
Released_In: 2.2
Description:
Mac OS X 10.6.3
[tigger:/Graphics/EDGE_v2.1/EDGE_v2.1] jbullock% ./run_benchmarks Not enough data points found in test1 output. Exiting.
run_graphics returns to command prompt.
Comments
frankie May 18, 2010, at 07:00 PM: Some users have reported that using "./run_graphics.compat" as a temporary workaround is working.
frankie May 26, 2010, at 12:33 PM: As a more complete workaround, you can edit your run_standalone, or run_client, or run_blank_graphics to have an "if" block which changes a bit for Mac. For the run_standalone script, you could change the final execution line to be:
if (`uname` == "Darwin") then
setenv EDGE_SETTINGS_FILE edge_settings.cfg
./bin_${VR_HOST_CPU}/doug -double -mode standalone -config cev.cfg -quiet $*
else
./bin_${VR_HOST_CPU}/doug -double -mode standalone -config cev.cfg -DEDGE_SETTINGS_FILE="edge_settings.cfg" -quiet $*
endif
frankie October 06, 2010, at 10:07 AM: To be more clear here, the real issue is that, as you can see above, the mac version does not support the "-D" command line option. Any defines here need to be moved into your DEFINES block in your user.cfg, with the exception of the "EDGE_SETTINGS_FILE" variable… since it must be known further ahead of time, do a setenv in your startup script to define that particular one, as shown above. I'm posting this because there were some users who were passing other defines besides "EDGE_SETTINGS_FILE" on the command line and it was still failing. Make sure they also get removed from your mac command line and get moved into your user.cfg! — FG
Associated Commits
| commit | 2335c27f0c641a7331cdddc272a936a8a341de02
link6 |
||
| Author: | Frank Graffagnino
|
| Date: | Wed May 26 12:31:40 2010 -0500
|
| Message: | [@Issue 00242: In addition to other commit, fix this for run_client
@] |
Affected Files:
run_client | 7 +++++±
1 file changed, 6 insertions(+), 1 deletion(-)