Eclipse Unable to install breakpoint

前端 未结 5 1939
不思量自难忘°
不思量自难忘° 2021-01-05 10:14

So a couple weeks ago my Eclipse IDE no longer allowed me to remotely debug my application saying that it was unable to install breakpoints because line numbers were not be

5条回答
  •  礼貌的吻别
    2021-01-05 10:35

    In order to re enable the message : Preferences => java => debug . it is at the bottom of the screen : "Warn when unable to install breakpoint du to missing line number attributes"

    For the problem about installing breakpoints, try to add a -g to your javac command line in ant (debug attribute of you compilation task, http://ant.apache.org/manual/Tasks/javac.html)

    Eventually check if you have not mapped your project on a JRE instead of a JDK in eclipse.

提交回复
热议问题