The Go runtime schedules user level threads (goroutines) across real threads. This adds an OS plugin to create memory threads for goroutines. It supports the 1.4 and 1.5 go runtime. Differential Revision: http://reviews.llvm.org/D5871 llvm-svn: 247852
15 lines
438 B
Makefile
15 lines
438 B
Makefile
##==- source/Plugins/OperatingSystem/Go/Makefile --------*- Makefile -*-==##
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file is distributed under the University of Illinois Open Source
|
|
# License. See LICENSE.TXT for details.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
LLDB_LEVEL := ../../../..
|
|
LIBRARYNAME := lldbPluginOSGo
|
|
BUILD_ARCHIVE = 1
|
|
|
|
include $(LLDB_LEVEL)/Makefile
|