From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32443 invoked by alias); 1 Feb 2005 16:28:19 -0000 Mailing-List: contact java-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-prs-owner@gcc.gnu.org Received: (qmail 32427 invoked by uid 48); 1 Feb 2005 16:28:18 -0000 Date: Tue, 01 Feb 2005 16:28:00 -0000 From: "green at redhat dot com" To: java-prs@gcc.gnu.org Message-ID: <20050201162814.19742.green@redhat.com> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug java/19742] New: gcjh shouldn't mangle names in JNI output. X-Bugzilla-Reason: CC X-SW-Source: 2005-q1/txt/msg00261.txt.bz2 List-Id: A java class has this: public static final int delete = 555; gcjh will correctly mangle the name delete (to delete$) for CNI header output. However, it also does this when generating JNI output (with gcjh -jni). We get output link this, and it is wrong: #undef foo_delete$ #define foo_delete$ 555L This should be just "foo_delete". This is preventing the subversion JNI code from building. -- Summary: gcjh shouldn't mangle names in JNI output. Product: gcc Version: 4.0.0 Status: UNCONFIRMED Severity: normal Priority: P2 Component: java AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: green at redhat dot com CC: gcc-bugs at gcc dot gnu dot org,java-prs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19742