- 166 名前:デフォルトの名無しさん mailto:age [04/06/02 07:53]
- antでコンパイルした場合とコマンドラインから直接コンパイルした場合で結果が違うのはなんでなの?
antだとエラーで終わって、gcj直だと無事終了する。 antもgcjも "hallo world" ではうまくいったので大きく間違っている部分はないはず。 ant build.xml: <property name="mainclass" value="nippon.tokyo.dreamtheater.smaf.SMAFMake"/> <property name="basedir" value="."/> <property name="srcdir" value="nippon/tokyo/dreamtheater/smaf"/> <property name="dstfile" value="../bin/execute.exe"/> <apply executable="gcj" dir="${basedir}"> <arg line="-o ${dstfile}"/> <arg value="--main=${mainclass}"/> <fileset dir="${srcdir}" includes="*.java"/> </apply> gcj: gcj -v -o ../bin/execute.exe --main=nippon.tokyo.dreamtheater.smaf.SMAFMake nippon/tokyo/dreamtheater/smaf/*
|

|