From 4691423acbf7eae8be68a8db0bbae5a6612a4056 Mon Sep 17 00:00:00 2001 From: Nathanne Isip Date: Wed, 17 Apr 2024 22:28:22 +0800 Subject: [PATCH] Removed -no-debug build parameter. --- qrepo.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qrepo.json b/qrepo.json index 3abdaf1..2c260f7 100644 --- a/qrepo.json +++ b/qrepo.json @@ -7,10 +7,10 @@ "scripts": { "build": [ "mkdir -p dist", - "tinygo build -size=full -opt=z -no-debug -scheduler=none -p=4 -target=bluepill -o dist/n2cu.elf" + "tinygo build -size=full -target=bluepill -o dist/n2cu.elf" ], "flash": [ - "tinygo flash -size=full -opt=z -no-debug -scheduler=none -p=4 -target=bluepill" + "tinygo flash -size=full -target=bluepill" ], "test": [ "go test -v conv_test.go",