tomvda
tomvda

Reputation: 447

Netbeans compiler log

I have been looking for the compiler logs in netbeans but i can't find them. The intent is to see which parameters are passed to javac when pressing the clean & build button. Can anyone help?

Upvotes: 1

Views: 3196

Answers (2)

Vittorio
Vittorio

Reputation: 61

I've just faced same problem and found the solution:

Follow the below steps in NetBeans 7.0:
Open the "Output" window (CTRL+4), at the left bottom of that window you'll find a tool-like icon "Ant's settings", click over it, now on the Ant Options window on "Verbosity level" choose "Verbose" (instead than "Normal"), finally "OK". Now simply Run->Clean & Build Main Project: on the Output window now you'll read some raws like: Compilation arguments:

'-d'
'D:\Documenti\NetBeansProjects\AppVitM\build\compiled'
'-classpath'
'D:\Documenti\NetBeansProjects\AppVitM\build\compiled'
'-sourcepath'
'D:\Documenti\NetBeansProjects\AppVitM\build\preprocessed'
'-target'
'1.3'
'-bootclasspath'
'C:\S60\devices\S60_3rd_MIDP_SDK_FP1_4\lib\hmidps60v31.jar'
'-encoding'
'UTF-8'
'-g'
'-source'
'1.3'

Hope to have been useful, Best Regards, Vittorio

Upvotes: 6

Matt Handy
Matt Handy

Reputation: 30025

Maybe you find it here:

user-home\.netbeans\6.9\var\log

This is for 6.9 version. Adapt it to your version.

Upvotes: 0

Related Questions