From dad9af073448719a9457369a2c674e801d864af2 Mon Sep 17 00:00:00 2001 From: Stefan O'Rear Date: Sun, 5 Mar 2017 20:44:06 -0800 Subject: [PATCH] riscvtest: Remove mentions of the runtime from README.md Change-Id: I62b1c1b6aca76d1daf63e4b8e0670c85c50955e9 Reviewed-on: https://review.gerrithub.io/352803 Reviewed-by: Michael Pratt --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8bd495e019..12fe3def99 100644 --- a/README.md +++ b/README.md @@ -23,13 +23,13 @@ $ ./make.bash Compile and run in qemu-riscv64 (which is expected to be in PATH): ```sh -$ GOARCH=riscv GOOS=linux go run -ldflags '-E main.main' ../riscvtest/add.go +$ GOARCH=riscv GOOS=linux go run ../riscvtest/add.go ``` Build: ```sh -$ GOARCH=riscv GOOS=linux go build -ldflags '-E main.main' ../riscvtest/add.go +$ GOARCH=riscv GOOS=linux go build ../riscvtest/add.go ``` Test: @@ -38,7 +38,6 @@ Our basic tests are in the `riscvtest` directory: ```sh $ cd ../riscvtest -$ GOARCH=riscv GOOS=linux go install os $ go run run.go ```