Our build system compiles flex/bison as C++ rather than C, but a few projects add `-x c` to their flags, forcing the compiler to compile them as C. This causes the compiler to reject the global C++ standard flag, so we need to explicitly provide a C standard flag to override it. Bug: 18466763 Change-Id: Id68ad9317261ed4d857a949b07288bd137ff6303
43 lines
874 B
Makefile
43 lines
874 B
Makefile
# Copyright 2009 The Android Open Source Project
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
edify_src_files := \
|
|
lexer.l \
|
|
parser.y \
|
|
expr.c
|
|
|
|
# "-x c" forces the lex/yacc files to be compiled as c the build system
|
|
# otherwise forces them to be c++. Need to also add an explicit -std because the
|
|
# build system will soon default C++ to -std=c++11.
|
|
edify_cflags := -x c -std=gnu89
|
|
|
|
#
|
|
# Build the host-side command line tool
|
|
#
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
$(edify_src_files) \
|
|
main.c
|
|
|
|
LOCAL_CFLAGS := $(edify_cflags) -g -O0
|
|
LOCAL_MODULE := edify
|
|
LOCAL_YACCFLAGS := -v
|
|
LOCAL_CFLAGS += -Wno-unused-parameter
|
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|
|
|
|
#
|
|
# Build the device-side library
|
|
#
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := $(edify_src_files)
|
|
|
|
LOCAL_CFLAGS := $(edify_cflags)
|
|
LOCAL_CFLAGS += -Wno-unused-parameter
|
|
LOCAL_MODULE := libedify
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|