mirror of
https://github.com/golang/go
synced 2024-11-07 15:06:16 -07:00
30cb30e596
This adds the _lib entry point to various GOOS_amd64.s files. A future CL will enable c-archive/c-shared mode for those targets. As far as I can tell, the newosproc0 function in os_darwin.go was passing the wrong arguments to bsdthread_create. The newosproc0 function is never called in the current testsuite. Change-Id: Ie7c1c2e326cec87013e0fea84f751091b0ea7f51 Reviewed-on: https://go-review.googlesource.com/69711 Run-TryBot: Ian Lance Taylor <iant@golang.org> Reviewed-by: Austin Clements <austin@google.com>
12 lines
307 B
ArmAsm
12 lines
307 B
ArmAsm
// Copyright 2009 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
#include "textflag.h"
|
|
|
|
TEXT _rt0_amd64_linux(SB),NOSPLIT,$-8
|
|
JMP _rt0_amd64(SB)
|
|
|
|
TEXT _rt0_amd64_linux_lib(SB),NOSPLIT,$0
|
|
JMP _rt0_amd64_lib(SB)
|