[LLVMdev] ../llvm/configure fails in Cygwin with space character in path name? (original) (raw)
Csaba Raduly rcsaba at gmail.com
Thu Sep 22 05:31:12 PDT 2011
- Previous message: [LLVMdev] ../llvm/configure fails in Cygwin with space character in path name?
- Next message: [LLVMdev] ../llvm/configure fails in Cygwin with space character in path name?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Wed, Sep 21, 2011 at 7:31 PM, Jim Grosbach wrote:
Why shouldn't they accept paths with spaces in them? *nix supports that, generally. So long as the paths are properly escaped in any input, things should work. If they don't, it's a bug.
GNU Make doesn't handle embedded spaces:
$ cat Makefile all: foo\ bar
foo\ bar: foo\ bar.o
$ ls foo bar.c Makefile
$ make
make: *** No rule to make target foo bar.o', needed by
foo bar'. Stop.
Make seems unable to find the link from "foo bar.c" to "foo bar.o" Shell quoting with ' ' does not apply.
It's probably best to avoid spaces in filenames from the outset.
Csaba
GCS a+ e++ d- C++ ULS$ L+$ !E- W++ P+++$ w++$ tv+ b++ DI D++ 5++ The Tao of math: The numbers you can count are not the real numbers. Life is complex, with real and imaginary parts. "Ok, it boots. Which means it must be bug-free and perfect. " -- Linus Torvalds "People disagree with me. I just ignore them." -- Linus Torvalds
- Previous message: [LLVMdev] ../llvm/configure fails in Cygwin with space character in path name?
- Next message: [LLVMdev] ../llvm/configure fails in Cygwin with space character in path name?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]