[LLVMbugs] [Bug 9129] New: Compiling relative paths with parent directories (../../file.c) broken
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Wed Feb 2 15:40:24 PST 2011
http://llvm.org/bugs/show_bug.cgi?id=9129
Summary: Compiling relative paths with parent directories
(../../file.c) broken
Product: clang
Version: trunk
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P
Component: Frontend
AssignedTo: unassignedclangbugs at nondot.org
ReportedBy: tss at iki.fi
CC: llvmbugs at cs.uiuc.edu
I have a test.c that works:
~% clang -c test.c
and this works:
~% mkdir m && cd m
~/m% clang -c ../test.c
but:
~/m/m% clang -c ../../test.c -Wall
error: error reading '../../test.c'
1 error generated.
--
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
More information about the llvm-bugs
mailing list