search for: apath

Displaying 4 results from an estimated 4 matches for "apath".

Did you mean: path
2005 Dec 31
1
New R folder names bring out Windows batch file bug
...g names and I think R does, in fact, handle them but at one time it did not in all cases so use of short file names is likely just a workaround from older times. This does not affect R itself as far as I know but did affect my batchfiles which I have revised. I am using Windows XP. C:\>set apath=\Program Files\R\R-2.2.1 C:\>for /f "delims=" %a in ("%apath%") do set AA=%~sa C:\>set aa AA=C:\PROGRA~1\R\R-22~1.1.2.1 C:\>cd %aa% The system cannot find the path specified.
2005 Jul 28
1
[LLVMdev] [patch] gccld not properly constructing paths when checking for bytecode
...evision 1.43 diff -r1.43 Path.inc 436c436,439 < DIR* direntries = ::opendir(path.c_str()); --- > std::string dirPath = path; > if (dirPath[dirPath.size() - 1] != '/') > dirPath += '/'; > DIR* direntries = ::opendir(dirPath.c_str()); 444c447 < Path aPath(path + (const char*)de->d_name); --- > Path aPath(dirPath + (const char*)de->d_name); -- Nicholas Riley <njriley at uiuc.edu> | <http://www.uiuc.edu/ph/www/njriley>
2009 Feb 06
2
Program won't load fonts when run outside of installed dir
I'm trying get a couple pieces of software we use at work so we can replace a bunch of aging Windows machines with Linux boxes, but I'm having a little trouble. I'll start with the potentially easiest problem first. One of the programs I'm trying to use is Lightspeed Virtual Terminal. It runs fairly well with just a couple of glitches. If I go to the directory it was installed
2016 Dec 09
4
Strange clang behavior when compiled against musl
I have managed to compile llvm and clang against musl, but it behaves really strange: At first I tried to launch the compiler with musl dynamic loader: $ LD_LIBRARY_PATH=/path/to/musl/lib /path/to/musl/lib/ld-musl-x86_64.so.1 /path/to/llvm/bin/clang -v clang version 4.0.0 (https://github.com/llvm-mirror/clang 40adebeca0f99006d407508653c2cbd270a1a51c) (https://github.com/llvm-mirror/llvm