Skip to content

Commit

Permalink
Fix virtual tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
ccelio committed Nov 14, 2016
1 parent 9b161a1 commit 77195ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testrun/src/main/scala/main.scala
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ object TestRunner extends App
println("Virtual mode")
val entropy = (new Random()).nextLong()
println("entropy: " + entropy)
process = "riscv64-unknown-elf-gcc -nostdlib -nostartfiles -Wa,-march=RVIMAFDXhwacha -DENTROPY=" + entropy + " -std=gnu99 -O2 -I./env/v -T./env/v/link.ld ./env/v/entry.S ./env/v/vm.c " + asmFileName + " -lc -o " + binFileName
process = "riscv64-unknown-elf-gcc -static -mcmodel=medany -fvisibility=hidden -nostdlib -nostartfiles -Wa,-march=RVIMAFDXhwacha -DENTROPY=" + entropy + " -std=gnu99 -O2 -I./env/v -I./macros/scalar -T./env/v/link.ld ./env/v/entry.S ./env/v/vm.c " + asmFileName + " -lc -o " + binFileName
}
else
{
Expand Down

0 comments on commit 77195ab

Please sign in to comment.