Re: Which library implementation to use/work on?
Bryce McKinlay <[email protected]>
| Newsgroups | gmane.comp.gcc.java.devel |
|---|---|
| Message-ID | <CALUNu-rKCMdSpzNw2rbkB7vc8rgvMb9vp9-f_3AidMVTObfjwg@mail.gmail.com> |
On Sat, Apr 7, 2012 at 4:29 PM, Mike Hearn <[email protected]> wrote: > Unfortunately I had trouble compiling it. I took gcc 4.7 and brought > across the latest Matcher.java. However it appears that you aren't > supposed to edit the copy of classpath included with GCC. Introducing > syntax errors into the file and then running make shows that the .java > file itself does not appear to actually be read. Instead the .class > files are included the tree as well and I didn't see any obvious > script or build step that is supposed to regenerate them. > > Are there instructions anywhere on what I'm supposed to do here? Try configuring with --enable-java-maintainer-mode - this should ensure that the .java files get rebuilt. See the "Java specific options" section at http://gcc.gnu.org/install/configure.html Bryce