Skip to content

Instantly share code, notes, and snippets.

@waltervargas
Created August 13, 2022 00:48
Show Gist options
  • Save waltervargas/e3083d7e1e4d100c56d358de69cb207a to your computer and use it in GitHub Desktop.
Save waltervargas/e3083d7e1e4d100c56d358de69cb207a to your computer and use it in GitHub Desktop.
go.mod for tinygo golsp arm
module tinygowifi
go 1.18
replace device/arm => /usr/local/lib/tinygo/src/device/arm
replace internal/reflectlite => /usr/local/lib/tinygo/src/internal/reflectlite
replace internal/task => /usr/local/lib/tinygo/src/internal/task
replace machine => /usr/local/lib/tinygo/src/machine
replace os => /usr/local/lib/tinygo/src/os
replace reflect => /usr/local/lib/tinygo/src/reflect
replace runtime => /usr/local/lib/tinygo/src/runtime
replace runtime/interrupt => /usr/local/lib/tinygo/src/runtime/interrupt
replace runtime/volatile => /usr/local/lib/tinygo/src/runtime/volatile
replace sync => /usr/local/lib/tinygo/src/sync
replace testing => /usr/local/lib/tinygo/src/testing
require (
github.com/Nerzal/drivers v0.15.3
machine v0.0.0-00010101000000-000000000000
)
require (
device/arm v0.0.0-00010101000000-000000000000 // indirect
runtime/interrupt v0.0.0-00010101000000-000000000000 // indirect
runtime/volatile v0.0.0-00010101000000-000000000000 // indirect
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment