aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMatthew Dempsky <mdempsky@google.com>2019-11-19 12:43:42 -0800
committerMarco Vanotti <mvanotti@users.noreply.github.com>2019-11-19 17:20:14 -0800
commitf4b7ed0781fd311fccb2dd56f306a07590d440fd (patch)
treee9fc48a2e2c7ff02e0c4c6036c4177bcaf1e270a /Makefile
parentb7a277d2bab922c7635c4281dcd6cfff76fd5d95 (diff)
tools/fuchsia: remove custom Go toolchain scripts
These used to be required to build Fuchsia's Go toolchain to build syz-fuzzer to run on Fuchsia. However, Fuchsia now uses HostFuzzer mode, so only syz-executor (written in C) needs to run on Fuchsia; all Go code runs on the Host OS (currently Linux).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 0 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index fa9669eee..4f26bcab8 100644
--- a/Makefile
+++ b/Makefile
@@ -206,12 +206,6 @@ ifeq ($(TARGETOS),fuchsia)
else
endif
-fuchsia_go:
-ifeq ($(TARGETOS),fuchsia)
- ./tools/fuchsia/build-go.sh
-else
-endif
-
generate_trace2syz:
(cd tools/syz-trace2syz/parser; ragel -Z -G2 -o lex.go straceLex.rl)
(cd tools/syz-trace2syz/parser; goyacc -o strace.go -p Strace -v="" strace.y)