Skip to content

Commit

Permalink
Bootloader build fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Rogers committed Apr 7, 2009
1 parent 99ca0bf commit 1c4796a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1666,8 +1666,8 @@ const char *rvm_target_configuration = "${target.file}";
</not>
</conditions>
<sequential>
<exec executable="${ld.exe}" failonerror="true">
<arg line="-m elf_i386 -shared"/>
<exec executable="${c.exe}" failonerror="true">
<arg line="${c.args} -shared"/>
<arg value="--version-script=@{srcdir}/${target.dll-prefix}@{dllname}.exp"/>
<arg line="-o @{outdir}/${target.dll-prefix}@{dllname}${target.dll-ext}"/>
<arg value="-L@{outdir}"/>
Expand Down Expand Up @@ -1727,7 +1727,7 @@ const char *rvm_target_configuration = "${target.file}";
<arg value="-L@{outdir}"/>
<arg value="-L${harmony.lib.dir}"/>
<ObjectFiles/>
<arg line="-lm -lc -ljvm"/>
<arg line="-ljvm -lm -lc"/>
<arg line="-lpthread -ldl -lrt"/>
<!-- <arg line="-lvmi -lhythr -lhyprt -lhyarchive -lhyzlib"/> -->
</exec>
Expand Down
2 changes: 2 additions & 0 deletions tools/bootloader/libjvm.exp
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
JVM_0.1 {
global :
SysTraceFile;
SysErrorFile;
JavaArgc;
JavaArgs;
Me;
Expand Down

0 comments on commit 1c4796a

Please sign in to comment.