linker: Switch to clang

x86_64 gcc exports malloc/free and co functions because they
are defined with visibility "default" somewhere in gcc builtins;
and vector d-tors for some reason. Switching to clang fixes
this problem.

Bug: http://b/24785482
Change-Id: I741503b4b446523e7ff3fb16de13ed99991fd0c0
This commit is contained in:
Dmitriy Ivanov 2015-10-12 16:27:32 -07:00
parent e78392637d
commit b28ffc7744
1 changed files with 3 additions and 1 deletions

View File

@ -2,7 +2,9 @@ LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= \
LOCAL_CLANG := true
LOCAL_SRC_FILES := \
debugger.cpp \
dlfcn.cpp \
linker.cpp \