mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-06 20:13:40 +00:00
all: add Go 1.25 support
This commit is contained in:
committed by
Ron Evans
parent
8911abbc6d
commit
b33b6ce293
@@ -63,6 +63,10 @@ func SecCertificateCopyData(cert CFRef) ([]byte, error) {
|
||||
return nil, errors.New("not implemented")
|
||||
}
|
||||
|
||||
func SecTrustCopyCertificateChain(trustObj CFRef) (CFRef, error) {
|
||||
return 0, errors.New("not implemented")
|
||||
}
|
||||
|
||||
func SecTrustEvaluateWithError(trustObj CFRef) (int, error) {
|
||||
return 0, errors.New("not implemented")
|
||||
}
|
||||
|
||||
@@ -46,3 +46,9 @@ func timerCallback(tn *timerNode, delta int64) {
|
||||
addTimer(tn)
|
||||
}
|
||||
}
|
||||
|
||||
//go:linkname time_runtimeIsBubbled time.runtimeIsBubbled
|
||||
func time_runtimeIsBubbled() bool {
|
||||
// We don't currently support bubbles.
|
||||
return false
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user