mirror of https://github.com/contiki-ng/mspsim
Javac: specify encoding
This is necessary for javac 1.8.0 openJDK to compile without getting stuck on special characters.
This commit is contained in:
parent
cb43d142a2
commit
91fb96e769
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
<target name="compile" depends="init" description="compile the source">
|
||||
<javac srcdir="${src}" destdir="${build}" classpathref="classpath"
|
||||
debug="${javac.debug}" includeantruntime="false">
|
||||
debug="${javac.debug}" includeantruntime="false" encoding="utf-8">
|
||||
<compilerarg value="-Xlint:unchecked"/>
|
||||
<compilerarg value="-deprecation"/>
|
||||
<exclude name="tests/**" />
|
||||
|
|
|
|||
Loading…
Reference in New Issue