Browse Source

Add `intrinsics._entry_point` call to `_odin_entry_point`

gingerBill 3 years ago
parent
commit
6209b02bf9
1 changed files with 1 additions and 0 deletions
  1. 1 0
      core/runtime/proc_unix.odin

+ 1 - 0
core/runtime/proc_unix.odin

@@ -9,6 +9,7 @@ when ODIN_BUILD_MODE == "dynamic" {
 	_odin_entry_point :: proc "c" () {
 		context = default_context()
 		#force_no_inline _startup_runtime()
+		intrinsics._odin_entry_point()
 	}
 	@(link_name="_odin_exit_point", linkage="strong", require)
 	_odin_exit_point :: proc "c" () {