| Anonymous | Login | Signup for a new account | 11-10-2008 11:06 PST |
| Main | My View | View Issues | Change Log | Docs |
| Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ Issue History ] [ Print ] | |||||||||||
| ID | Category | Severity | Reproducibility | Date Submitted | Last Update | |||||||
| 0001043 | [buildroot] New Features | feature | N/A | 09-21-06 06:37 | 07-08-07 04:40 | |||||||
| Reporter | belandor | View Status | public | |||||||||
| Assigned To | buildroot | |||||||||||
| Priority | normal | Resolution | open | |||||||||
| Status | assigned | Product Version | ||||||||||
| Summary | 0001043: ada support for buildroot | |||||||||||
| Description |
I have included the option to add --enable-languages=ada when compiling gcc. The problem is though, that gcc-4.1.1 needs a patch to compile - namely the files s-wchcon.adb and s-wchcon.ads need to be replaced with the SVN versions. gcc-SVN should compile fine though. I haven't tried compiling Ada support for older gcc versions. I got this to compile targetting arm-linux-uclibcgnueabi. However, building the target compiler supporting ada did not work (Configure chokes over the wrong gmp.h version). Any comments? |
|||||||||||
| Additional Information |
that's my output of svn diff Index: gcc-uclibc-3.x.mk =================================================================== --- gcc-uclibc-3.x.mk (revision 16170) +++ gcc-uclibc-3.x.mk (working copy) @@ -55,6 +55,10 @@ TARGET_LANGUAGES:=$(TARGET_LANGUAGES),fortran endif +ifeq ($(BR2_INSTALL_ADA),y) +TARGET_LANGUAGES:=$(TARGET_LANGUAGES),ada +endif + ############################################################# # # build the first pass gcc compiler Index: Config.in =================================================================== --- Config.in (revision 16170) +++ Config.in (working copy) @@ -126,3 +126,10 @@ default n help Build/install Objective-C compiler and runtime? + +config BR2_INSTALL_ADA + bool "Build/install Ada compiler and runtime" + default n + help + set --enable-languages=ada + HINT: needs an Ada Compiler installed on your build system |
|||||||||||
| Attached Files | ||||||||||||
|
|
||||||||||||
| Copyright © 2000 - 2006 Mantis Group |