From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32541 invoked by alias); 29 Nov 2012 22:20:00 -0000 Received: (qmail 32524 invoked by uid 22791); 29 Nov 2012 22:19:59 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,RCVD_IN_DNSWL_LOW,TW_WX X-Spam-Check-By: sourceware.org Received: from hagrid.ecoscentric.com (HELO mail.ecoscentric.com) (212.13.207.197) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 29 Nov 2012 22:19:53 +0000 Received: from localhost (hagrid.ecoscentric.com [127.0.0.1]) by mail.ecoscentric.com (Postfix) with ESMTP id 16984468001D for ; Thu, 29 Nov 2012 22:19:51 +0000 (GMT) Received: from mail.ecoscentric.com ([127.0.0.1]) by localhost (hagrid.ecoscentric.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id wxudiyWMH7Dm; Thu, 29 Nov 2012 22:19:48 +0000 (GMT) From: bugzilla-daemon@bugs.ecos.sourceware.org To: ecos-bugs@ecos.sourceware.org Subject: [Bug 1001707] New: Compile Errors with 64bit RHE6.4 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: eCos X-Bugzilla-Component: ConfigTool X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: mjones@linear.com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: low X-Bugzilla-Assigned-To: unassigned@bugs.ecos.sourceware.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: X-Bugzilla-URL: http://bugs.ecos.sourceware.org/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Date: Thu, 29 Nov 2012 22:20:00 -0000 Mailing-List: contact ecos-bugs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: ecos-bugs-owner@sourceware.org X-SW-Source: 2012/txt/msg01350.txt.bz2 Please do not reply to this email. Use the web interface provided at: http://bugs.ecos.sourceware.org/show_bug.cgi?id=1001707 Summary: Compile Errors with 64bit RHE6.4 Product: eCos Version: CVS Platform: All OS/Version: HostOS: Linux Status: UNCONFIRMED Severity: normal Priority: low Component: ConfigTool AssignedTo: unassigned@bugs.ecos.sourceware.org ReportedBy: mjones@linear.com CC: ecos-bugs@ecos.sourceware.org Class: Advice Request Compiling the ConfigTool on 64bit RHE6.4 produces errors. The errors are all related to 64bit file handles and pointers that can't automatically cast to 32 bits. To work around the problem, I have forced with a cast like this: (0xFFFF & (long)myVariable) I have not fully tested that this will work in all case. Files with this problem are: eCosSerial, eCosSocket, eCosTestDownloadFilter, eCosTrace, packagesdlg, propertywin, and TestResource There is also a problem compiling wxGTK-2.8.8 that can be solved by using this configure command: ../configure --with-subdirs --disable-shared --disable-sockets --prefix /opt/wxGTK-2.8.8 Using --with-subdirs makes gizmo make files so you can compile it. Compiling it will not copy the resulting lib file, so you have to do that by hand. There is also a problem compiling ConfigTool related to includes. By editing the makefile.gnu file in wxwin to the following, it will compile. EXTRACPPFLAGS=\ -I$(TCLDIR)/include \ -I /opt/wxGTK-2.8.8/include/wx-2.8 \ -I /home/mike/Documents/wxGTK-2.8.8/contrib/include \ -I /home/mike/Documents/wxGTK-2.8.8/wx-build/lib/wx/include/gtk2-ansi-release-static-2.8 \ -I$(INSTALLDIR)/../include \ -I$(INSTALLDIR)/include \ -I$(ECOSSRCDIR)/tools/configtool/common/common \ -I$(ECOSSRCDIR)/tools/Utils/common \ -I$(ECOSSRCDIR)/tools/ecostest/common \ -DecUSE_EXPERIMENTAL_CODE=$(USEEXPERIMENTALCODE) EXTRALDFLAGS=-L$(TCLDIR)/lib -L$(INSTALLDIR)/lib -L/opt/ecos/ecos-3.0/lib -lcdl -lcyginfra -ltcl These can probably be handled on the command line or in a better way, but at least this hack demonstrates the problem. Not the extra include paths, and the path to the ecos lib in EXTRALDFLAGS. All other problems were solved with yum. I tried to compile against the latest wxGTK, and that was such a mess that I gave up and used the 2.8.8 download. If I encounter any crashes or misbehavior in the ConfigTool I can report back and add to this bug. -- Configure bugmail: http://bugs.ecos.sourceware.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.