From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2811 invoked by alias); 23 Jul 2003 21:01:34 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 2804 invoked by uid 48); 23 Jul 2003 21:01:34 -0000 Date: Wed, 23 Jul 2003 21:01:00 -0000 From: "wo701 at yahoo dot com" To: gcc-bugs@gcc.gnu.org Message-ID: <20030723210132.11649.wo701@yahoo.com> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug objc/11649] New: symlinks do not work with #import X-Bugzilla-Reason: CC X-SW-Source: 2003-07/txt/msg02763.txt.bz2 List-Id: PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11649 Summary: symlinks do not work with #import Product: gcc Version: unknown Status: UNCONFIRMED Severity: critical Priority: P2 Component: objc AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: wo701 at yahoo dot com CC: gcc-bugs at gcc dot gnu dot org Symlinks don't work with #import; they work with 2.95. I found out becuase bug compiling, but could generate testcase: create file test1.h with following content: #warning "File imported" create file test2.h as symlink to test1.h: ln -s test1.h test2.h compile file main.m: #import "file1.h" #import "file2.h" int main() {exit(0);} 2.95 print "File imported" once, correct; new gcc print "File imported" twice, wrong.