Skip to content
Snippets Groups Projects
Commit 589c8b27 authored by Stephen A. Wood's avatar Stephen A. Wood
Browse files

Add DYLD_LIBRARY_PATH to setup.csh for MacOSX

parent c1c96f8f
No related branches found
No related tags found
No related merge requests found
......@@ -15,4 +15,9 @@ setenv HCANALYZER $MYDIR
if ( ! ($?LD_LIBRARY_PATH) ) then
setenv LD_LIBRARY_PATH ""
endif
# Check if DYLD_LIBRARY_PATH is defined
if ( ! ($?DYLD_LIBRARY_PATH) ) then
setenv DYLD_LIBRARY_PATH ""
endif
setenv LD_LIBRARY_PATH "${LD_LIBRARY_PATH}:${ANALYZER}:${HCANALYZER}"
setenv DYLD_LIBRARY_PATH "${DYLD_LIBRARY_PATH}:${ANALYZER}:${HCANALYZER}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment