Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
From: Christopher Sean Morrison <brlcad@ma...> - 2013-02-01 15:44:17
|
On Jan 31, 2013, at 11:04 PM, Bob Anderson wrote: > When I attempt a nirt command, I get the following... > > dyld: Library not loaded: /Users/Morrison/brlcad.STABLE/.cmake/lib/librt.20.dylib > Referenced from: /usr/brlcad/rel-7.22.0/bin/nirt > Reason: image not found > Abnormal exit x5, terminating signal = 5 That is pretty bizarre. That's a build-time path that cmake should have changed during install. I'll have to look into that for the next binary release as that's clearly wrong. This should work around it for now: export DYLD_FALLBACK_LIBRARY_PATH=/usr/brlcad/rel-7.22.0/lib Note that you will want to be sure to unset/update that if you install another version of BRL-CAD. > In my .bash_profile, I have the following export statements... > > export BRLCAD_HOME=/usr/brlcad > export MAGICK_HOME=/usr/ImageMagick/release-6.7.2 Note we have nearly identical convention. If you want to parallel what you did for ImageMagick, that'd be BRLCAD_HOME=/usr/brlcad/rel-7.22.0 > Any ideas? I also notice rt and rtedge failing although I can still use the ray trace tool. Do I need an FB_FILE variable set as well? MGED and tools invoked from within MGED work because the application bundle sets a DYLD_FALLBACK_LIBRARY_PATH within the bundle. You can view package contents and see the 'script' wrapper that is invoked. Cheers! Sean |
From: Tom Browder <tom.browder@gm...> - 2013-01-29 19:09:45
|
I made a new image for the BRL-CAD VM on the downloads page a few weeks ago and I just copied it to: /usr/web/brlcad.org/d/files/logo-vm-gears.png but I can't get it to load. Does the site need to restart to load the new image? Best, -Tom |
From: Christopher Sean Morrison <brlcad@ma...> - 2013-01-29 19:58:35
Attachments:
text/plain
|
On Jan 29, 2013, at 02:08 PM, Tom Browder <tom.browder@...> wrote: I made a new image for the BRL-CAD VM on the downloads page a few weeks ago and I just copied it to: /usr/web/brlcad.org/d/files/logo-vm-gears.png but I can't get it to load. Does the site need to restart to load the new image? Tom, the website was (finally! woo hoo!) migrated to our new server a few days ago. One of the GCI participants, Jacob (maths22) has been working awesomely to get us migrated, updated, and improved. That said, files have to be manually synced. Because that was in the Drupal subdir, it might have been missed during the upgrade -- probably belongs in the top-level images/ directory. I can look into making sure it's copied when I get to verifying the rest of the /usr/web migration (later this week) or you're welcome to copy it again. Note the old server can still be reached for the time being at bz.bzflag.bz while the new server is reached via brlcad.org. Cheers! Sean |
From: Bob Anderson <bob.anderson@su...> - 2013-01-30 15:57:27
Attachments:
Message as HTML
|
Hi Sean, I was pleased to see an updated BRLCAD version for MAC. I was also pleased that it installed like a typical mac app. However, the install did not put any path in the .bash_profile file that would allow me to run MGED from the terminal command line. I attempted to put the /bin and /lib directories in the PATH variable, but it did not seem to work. What am I missing? Any assistance would be much appreciated. Regards, Robert Anderson SURVICE Engineering Dayton Area Operation bob.anderson@... TEL: (937)431-9914 FAX: (937)431-9915 |
From: Christopher Sean Morrison <brlcad@ma...> - 2013-01-30 16:46:52
Attachments:
text/plain
|
On Jan 30, 2013, at 10:45 AM, Bob Anderson <bob.anderson@...> wrote: Hi Sean, I was pleased to see an updated BRLCAD version for MAC. I was also pleased that it installed like a typical mac app. However, the install did not put any path in the .bash_profile file that would allow me to run MGED from the terminal command line. I attempted to put the /bin and /lib directories in the PATH variable, but it did not seem to work. What am I missing? Any assistance would be much appreciated. Hi Bob, thanks for the feedback on the app. It was sort of a quick "hey, I wonder ..." test before release to see if I could pull together a pretty drag-n-drop release quickly. I've been loving it myself now that I can double-click .g files and launch mged by dragging them on the app, but there are some loose ends to be sorted out. The path is one of them. You can add it to your path, but notice the ':' in the application name. That's a tricky problem since you have to escape the colon. Even once you add it to your path, though, you also end up needing to set the DYLD_FALLBACK_LIBRARY_PATH variable too so that it finds the runtime libraries. All that said, the easiest solution is to create a symbolic link. First, create or go to /usr/brlcad: sudo mkdir -p /usr/brlcad cd /usr/brlcad Then create a link into the application bundle for that version: sudo ln -s /Applications/BRL-CAD\ :\ MGED\ 7.22.0.app/Contents/Resources/rel-7.22.0 Tab completion may help there in case I wrote the path wrong or you have it located somewhere else. Once the link is created, it should all work if you add /usr/brlcad/rel-7.22.0/bin to your PATH. Cheers! Sean |
From: Bob Anderson <bob.anderson@su...> - 2013-01-31 17:48:43
Attachments:
Message as HTML
|
I have in my .bash_profile a variable called DYLD_LIBRARY_PATH set to ImageMagik. You mentioned a DYLD_FALLBACK_LIBRARY_PATH. Do I need to add this? What do I set it to? NIRT failed and it mentioned DYLD path. From: Christopher Sean Morrison [mailto:brlcad@...] Sent: Wednesday, January 30, 2013 11:47 AM To: BRL-CAD Developer Mailing List Subject: Re: [brlcad-devel] Running BRLCAD 7.22 on MAC OSX from terminal On Jan 30, 2013, at 10:45 AM, Bob Anderson <bob.anderson@...> wrote: Hi Sean, I was pleased to see an updated BRLCAD version for MAC. I was also pleased that it installed like a typical mac app. However, the install did not put any path in the .bash_profile file that would allow me to run MGED from the terminal command line. I attempted to put the /bin and /lib directories in the PATH variable, but it did not seem to work. What am I missing? Any assistance would be much appreciated. Hi Bob, thanks for the feedback on the app. It was sort of a quick "hey, I wonder ..." test before release to see if I could pull together a pretty drag-n-drop release quickly. I've been loving it myself now that I can double-click .g files and launch mged by dragging them on the app, but there are some loose ends to be sorted out. The path is one of them. You can add it to your path, but notice the ':' in the application name. That's a tricky problem since you have to escape the colon. Even once you add it to your path, though, you also end up needing to set the DYLD_FALLBACK_LIBRARY_PATH variable too so that it finds the runtime libraries. All that said, the easiest solution is to create a symbolic link. First, create or go to /usr/brlcad: sudo mkdir -p /usr/brlcad cd /usr/brlcad Then create a link into the application bundle for that version: sudo ln -s /Applications/BRL-CAD\ :\ MGED\ 7.22.0.app/Contents/Resources/rel-7.22.0 Tab completion may help there in case I wrote the path wrong or you have it located somewhere else. Once the link is created, it should all work if you add /usr/brlcad/rel-7.22.0/bin to your PATH. Cheers! Sean |
From: Christopher Sean Morrison <brlcad@ma...> - 2013-01-31 20:30:56
Attachments:
text/plain
|
On Jan 31, 2013, at 12:48 PM, Bob Anderson <bob.anderson@...> wrote: I have in my .bash_profile a variable called DYLD_LIBRARY_PATH set to ImageMagik. You mentioned a DYLD_FALLBACK_LIBRARY_PATH. Do I need to add this? What do I set it to? NIRT failed and it mentioned DYLD path. If you set up the symbolic link, you shouldn't need to set anything other than PATH (and MANPATH for docs). Did you create the /usr/brlcad symlink? What's the error you're seeing? The variable you have set for ImageMagik might be causing problems. Cheers! Sean From: Christopher Sean Morrison [mailto:brlcad@...] Sent: Wednesday, January 30, 2013 11:47 AM To: BRL-CAD Developer Mailing List Subject: Re: [brlcad-devel] Running BRLCAD 7.22 on MAC OSX from terminal On Jan 30, 2013, at 10:45 AM, Bob Anderson <bob.anderson@...> wrote: Hi Sean, I was pleased to see an updated BRLCAD version for MAC. I was also pleased that it installed like a typical mac app. However, the install did not put any path in the .bash_profile file that would allow me to run MGED from the terminal command line. I attempted to put the /bin and /lib directories in the PATH variable, but it did not seem to work. What am I missing? Any assistance would be much appreciated. Hi Bob, thanks for the feedback on the app. It was sort of a quick "hey, I wonder ..." test before release to see if I could pull together a pretty drag-n-drop release quickly. I've been loving it myself now that I can double-click .g files and launch mged by dragging them on the app, but there are some loose ends to be sorted out. The path is one of them. You can add it to your path, but notice the ':' in the application name. That's a tricky problem since you have to escape the colon. Even once you add it to your path, though, you also end up needing to set the DYLD_FALLBACK_LIBRARY_PATH variable too so that it finds the runtime libraries. All that said, the easiest solution is to create a symbolic link. First, create or go to /usr/brlcad: sudo mkdir -p /usr/brlcad cd /usr/brlcad Then create a link into the application bundle for that version: sudo ln -s /Applications/BRL-CAD\ :\ MGED\ 7.22.0.app/Contents/Resources/rel-7.22.0 Tab completion may help there in case I wrote the path wrong or you have it located somewhere else. Once the link is created, it should all work if you add /usr/brlcad/rel-7.22.0/bin to your PATH. Cheers! Sean ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_d2d_jan _______________________________________________ BRL-CAD Developer mailing list brlcad-devel@... https://lists.sourceforge.net/lists/listinfo/brlcad-devel |
From: Bob Anderson <bob.anderson@su...> - 2013-02-01 04:04:44
Attachments:
Message as HTML
|
When I attempt a nirt command, I get the following... dyld: Library not loaded: /Users/Morrison/brlcad.STABLE/.cmake/lib/librt.20.dylib Referenced from: /usr/brlcad/rel-7.22.0/bin/nirt Reason: image not found Abnormal exit x5, terminating signal = 5 In my .bash_profile, I have the following export statements... export BRLCAD_HOME=/usr/brlcad export MAGICK_HOME=/usr/ImageMagick/release-6.7.2 export DYLD_LIBRARY_PATH=$MAGICK_HOME/lib/ export PATH=${PATH}:$BRLCAD_HOME/rel-7.22.0/bin:MAGICK_HOME/bin Any ideas? I also notice rt and rtedge failing although I can still use the ray trace tool. Do I need an FB_FILE variable set as well? Sent from my iPhone On Jan 31, 2013, at 3:31 PM, "Christopher Sean Morrison" <brlcad@...<mailto:brlcad@...>> wrote: On Jan 31, 2013, at 12:48 PM, Bob Anderson <bob.anderson@...<mailto:bob.anderson@...>> wrote: I have in my .bash_profile a variable called DYLD_LIBRARY_PATH set to ImageMagik. You mentioned a DYLD_FALLBACK_LIBRARY_PATH. Do I need to add this? What do I set it to? NIRT failed and it mentioned DYLD path. If you set up the symbolic link, you shouldn't need to set anything other than PATH (and MANPATH for docs). Did you create the /usr/brlcad symlink? What's the error you're seeing? The variable you have set for ImageMagik might be causing problems. Cheers! Sean From: Christopher Sean Morrison [mailto:brlcad@...] Sent: Wednesday, January 30, 2013 11:47 AM To: BRL-CAD Developer Mailing List Subject: Re: [brlcad-devel] Running BRLCAD 7.22 on MAC OSX from terminal On Jan 30, 2013, at 10:45 AM, Bob Anderson <bob.anderson@...<mailto:bob.anderson@...>> wrote: Hi Sean, I was pleased to see an updated BRLCAD version for MAC. I was also pleased that it installed like a typical mac app. However, the install did not put any path in the .bash_profile file that would allow me to run MGED from the terminal command line. I attempted to put the /bin and /lib directories in the PATH variable, but it did not seem to work. What am I missing? Any assistance would be much appreciated. Hi Bob, thanks for the feedback on the app. It was sort of a quick "hey, I wonder ..." test before release to see if I could pull together a pretty drag-n-drop release quickly. I've been loving it myself now that I can double-click .g files and launch mged by dragging them on the app, but there are some loose ends to be sorted out. The path is one of them. You can add it to your path, but notice the ':' in the application name. That's a tricky problem since you have to escape the colon. Even once you add it to your path, though, you also end up needing to set the DYLD_FALLBACK_LIBRARY_PATH variable too so that it finds the runtime libraries. All that said, the easiest solution is to create a symbolic link. First, create or go to /usr/brlcad: sudo mkdir -p /usr/brlcad cd /usr/brlcad Then create a link into the application bundle for that version: sudo ln -s /Applications/BRL-CAD\ :\ MGED\ 7.22.0.app/Contents/Resources/rel-7.22.0 Tab completion may help there in case I wrote the path wrong or you have it located somewhere else. Once the link is created, it should all work if you add /usr/brlcad/rel-7.22.0/bin to your PATH. Cheers! Sean ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_d2d_jan _______________________________________________ BRL-CAD Developer mailing list brlcad-devel@...<mailto:brlcad-devel@...> https://lists.sourceforge.net/lists/listinfo/brlcad-devel ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_d2d_jan _______________________________________________ BRL-CAD Developer mailing list brlcad-devel@...<mailto:brlcad-devel@...> https://lists.sourceforge.net/lists/listinfo/brlcad-devel |
From: Christopher Sean Morrison <brlcad@ma...> - 2013-02-01 15:44:17
|
On Jan 31, 2013, at 11:04 PM, Bob Anderson wrote: > When I attempt a nirt command, I get the following... > > dyld: Library not loaded: /Users/Morrison/brlcad.STABLE/.cmake/lib/librt.20.dylib > Referenced from: /usr/brlcad/rel-7.22.0/bin/nirt > Reason: image not found > Abnormal exit x5, terminating signal = 5 That is pretty bizarre. That's a build-time path that cmake should have changed during install. I'll have to look into that for the next binary release as that's clearly wrong. This should work around it for now: export DYLD_FALLBACK_LIBRARY_PATH=/usr/brlcad/rel-7.22.0/lib Note that you will want to be sure to unset/update that if you install another version of BRL-CAD. > In my .bash_profile, I have the following export statements... > > export BRLCAD_HOME=/usr/brlcad > export MAGICK_HOME=/usr/ImageMagick/release-6.7.2 Note we have nearly identical convention. If you want to parallel what you did for ImageMagick, that'd be BRLCAD_HOME=/usr/brlcad/rel-7.22.0 > Any ideas? I also notice rt and rtedge failing although I can still use the ray trace tool. Do I need an FB_FILE variable set as well? MGED and tools invoked from within MGED work because the application bundle sets a DYLD_FALLBACK_LIBRARY_PATH within the bundle. You can view package contents and see the 'script' wrapper that is invoked. Cheers! Sean |
From: Tom Browder <tom.browder@gm...> - 2013-01-29 20:18:56
|
On Tue, Jan 29, 2013 at 1:58 PM, Christopher Sean Morrison <brlcad@...> wrote: ... > I can look into making sure it's copied when I get to verifying the rest of > the /usr/web migration (later this week) or you're welcome to copy it again. > Note the old server can still be reached for the time being at bz.bzflag.bz > while the new server is reached via brlcad.org. I'll give it a shot with a manual update on the new server. Best, -Tom |
From: Tom Browder <tom.browder@gm...> - 2013-01-29 20:29:29
Attachments:
logo-vm-gears.png
|
On Tue, Jan 29, 2013 at 2:18 PM, Tom Browder <tom.browder@...> wrote: > On Tue, Jan 29, 2013 at 1:58 PM, Christopher Sean Morrison > <brlcad@...> wrote: ... >> Note the old server can still be reached for the time being at bz.bzflag.bz >> while the new server is reached via brlcad.org. > > I'll give it a shot with a manual update on the new server. Hm, I can ssh to brlcad.org okay but don't have permissions for: /usr/web/ I've attached a copy of the revised image. -Tom |