From c54bdf8b515f9c2a50a91c555b1040b502e989d1 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Fri, 5 Mar 2021 12:52:50 +0100 Subject: [PATCH] runtime: add dummy debug package This package does not implement any methods, which is of course not useful. However, by creating this package in advance it's possible to see the next issue that's preventing something from building in TinyGo. Motivated by: https://github.com/tinygo-org/tinygo/issues/1634 --- src/runtime/debug/debug.go | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 src/runtime/debug/debug.go diff --git a/src/runtime/debug/debug.go b/src/runtime/debug/debug.go new file mode 100644 index 00000000..d6fa034a --- /dev/null +++ b/src/runtime/debug/debug.go @@ -0,0 +1,2 @@ +// Package debug is a dummy package that is not yet implemented. +package debug