mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-20 04:35:00 -07:00
18 lines
448 B
Odin
18 lines
448 B
Odin
//+private
|
|
//+build linux, darwin
|
|
package runtime
|
|
|
|
import "core:intrinsics"
|
|
|
|
when ODIN_BUILD_MODE == "dynamic" {
|
|
@(link_name="_odin_entry_point", linkage="strong", require)
|
|
_odin_entry_point :: proc "c" () {
|
|
context = default_context()
|
|
#force_no_inline _startup_runtime()
|
|
}
|
|
@(link_name="_odin_exit_point", linkage="strong", require)
|
|
_odin_exit_point :: proc "c" () {
|
|
context = default_context()
|
|
#force_no_inline _cleanup_runtime()
|
|
}
|
|
} |