Bug 32706 - gcj -M's dependency list is empty
Summary: gcj -M's dependency list is empty
Status: RESOLVED WONTFIX
Alias: None
Product: gcc
Classification: Unclassified
Component: java (show other bugs)
Version: 4.1.0
: P3 normal
Target Milestone: ---
Assignee: Not yet assigned to anyone
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-07-09 18:16 UTC by cagney
Modified: 2016-09-30 22:51 UTC (History)
2 users (show)

See Also:
Host:
Target:
Build:
Known to work:
Known to fail:
Last reconfirmed:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description cagney 2007-07-09 18:16:23 UTC
GCJ -M is producing an empty dependency list vis:

package frysk4742;
class Referee
{
    static int i;
    int j;
    Referee() {
        j = i++;
    }
}

package frysk4742;

class Referer {
    static public void main(String[] args) {
        new Referee();
    }
}

gcj -M frysk4742/Referer.java

gcc (GCC) 4.1.1 20070105 (Red Hat 4.1.1-51):
imports/tests/frysk4742/Referer.java
../../../frysk/frysk-imports/tests/frysk4742/Referer.o:  \
 ../../../frysk/frysk-imports/tests/frysk4742/Referer.java \
  /usr/share/java/libgcj-4.1.1.jar \
  ../../../frysk/frysk-imports/tests/frysk4742/Referee.java

gcc (GCC) 4.1.2 20070502 (Red Hat 4.1.2-12):
/tmp/ccSF6vYl.o:
Comment 1 Andrew Pinski 2007-07-15 20:46:36 UTC
Can you stop reporting bugs against RedHat's 4.1.1 to this bug database?
If you are going to report them, please report them against 4.3.0 after trying that version.
Comment 2 Andrew Pinski 2016-09-30 22:51:02 UTC
Closing as won't fix as the Java front-end has been removed from the trunk.