This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: Multiple Definitions of
- From: Jeff Sturm <jsturm at one-point dot com>
- To: "Philip T. Gonia" <phil dot gonia at verizon dot net>
- Cc: java at gcc dot gnu dot org
- Date: Mon, 7 Apr 2003 10:29:03 -0400 (EDT)
- Subject: Re: Multiple Definitions of
On Sun, 6 Apr 2003, Philip T. Gonia wrote:
> Below I provide a very small output of the current output of a build I
> am doing from a make file.
> The problem starts at the request to compile an inner class. It falls
> apart from there.
...
> com/rbnb/sapi/ChannelMap$ByteOrderEnum.o com/rbnb/sapi/ChannelMap.o
You'll have to escape the '$' above to avoid interpretation by the shell.
Otherwise you risk inadvertently linking ChannelMap.o twice, with
exactly the symptoms you report.
Jeff