mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
ea1dbad689
under cmake). Add libprofile_rt.a so that we can tell clang to link against it in --coverage mode. Also turn it on by default in cmake builds. Oscar, this touches a change you made for EXCLUDE_FROM_ALL support -- I think I've done the right thing, but please let me know (or fix and commit) if not! llvm-svn: 130470
23 lines
631 B
Makefile
23 lines
631 B
Makefile
##===- runtime/libprofile/Makefile -------------------------*- Makefile -*-===##
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file is distributed under the University of Illinois Open Source
|
|
# License. See LICENSE.TXT for details.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
LEVEL = ../..
|
|
include $(LEVEL)/Makefile.config
|
|
|
|
ifneq ($(strip $(LLVMCC)),)
|
|
BYTECODE_LIBRARY = 1
|
|
endif
|
|
LIBRARYNAME = profile_rt
|
|
LINK_LIBS_IN_SHARED = 1
|
|
SHARED_LIBRARY = 1
|
|
EXTRA_DIST = libprofile.exports
|
|
EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/libprofile.exports
|
|
|
|
include $(LEVEL)/Makefile.common
|