feat: make defer tls stub for baremetal

This commit is contained in:
Haolan
2025-11-14 16:00:40 +08:00
parent 552156ff40
commit 065126e270
6 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
//go:build llgo
//go:build llgo && !baremetal
/*
* Copyright (c) 2025 The GoPlus Authors (goplus.org). All rights reserved.

View File

@@ -1,4 +1,4 @@
//go:build llgo && !nogc
//go:build llgo && !baremetal && !nogc
/*
* Copyright (c) 2025 The GoPlus Authors (goplus.org). All rights reserved.

View File

@@ -1,4 +1,4 @@
//go:build llgo && nogc
//go:build llgo && (nogc || baremetal)
/*
* Copyright (c) 2025 The GoPlus Authors (goplus.org). All rights reserved.

View File

@@ -1,4 +1,4 @@
//go:build !llgo
//go:build !llgo || baremetal
/*
* Copyright (c) 2025 The GoPlus Authors (goplus.org). All rights reserved.

View File

@@ -1,4 +1,4 @@
//go:build !nogc
//go:build !nogc && !baremetal
/*
* Copyright (c) 2025 The GoPlus Authors (goplus.org). All rights reserved.

View File

@@ -1,4 +1,4 @@
//go:build nogc
//go:build nogc || baremetal
/*
* Copyright (c) 2025 The GoPlus Authors (goplus.org). All rights reserved.