D Thread Starter dMoser Joined Aug 25, 2011 30 Nov 29, 2011 #1 Hi, In an .scr file, I noticed the following line: set_attribute lib_search_path {. ../LIBRARY/LIBS/ } / what does the single dot mean at the beginning of the brackets? Thanks.
Hi, In an .scr file, I noticed the following line: set_attribute lib_search_path {. ../LIBRARY/LIBS/ } / what does the single dot mean at the beginning of the brackets? Thanks.
kubeek Joined Sep 20, 2005 5,736 Nov 29, 2011 #2 What kind of scr file? AFAIK .scr is a screensaver executable file which is not plaintext, so what is your scr for?
What kind of scr file? AFAIK .scr is a screensaver executable file which is not plaintext, so what is your scr for?
jimkeith Joined Oct 26, 2011 540 Nov 29, 2011 #3 My take is that it represents an abbreviated pathname as such can be very long and cumbersome
D Thread Starter dMoser Joined Aug 25, 2011 30 Nov 29, 2011 #4 Hi, its a run file (script) that is run by RTL compiler.
C cheezewizz Joined Apr 16, 2009 82 Nov 30, 2011 #5 like jimkeith says it's probably a pathname, the dot (.) is the current working directory usually and two dots (..) is the parent directory. I imagine that's just saying check this directory and also ../library/libs
like jimkeith says it's probably a pathname, the dot (.) is the current working directory usually and two dots (..) is the parent directory. I imagine that's just saying check this directory and also ../library/libs
thatoneguy Joined Feb 19, 2009 6,359 Nov 30, 2011 #6 The brackets are a search path for the libraries. . means the current directory, it can also be listed as ./ The line tells the compiler to use libraries from the current directory first, and if not found, check the next path.
The brackets are a search path for the libraries. . means the current directory, it can also be listed as ./ The line tells the compiler to use libraries from the current directory first, and if not found, check the next path.