Add context for invalid extensions for cc compile
Change-Id: I342e8ece56bbe632232d83670d14f9368ed9f0ff Test: treehugger
This commit is contained in:
@@ -568,8 +568,11 @@ func transformSourceToObj(ctx android.ModuleContext, subdir string, srcFiles and
|
|||||||
ccCmd = "clang++"
|
ccCmd = "clang++"
|
||||||
moduleFlags = cppflags
|
moduleFlags = cppflags
|
||||||
moduleToolingFlags = toolingCppflags
|
moduleToolingFlags = toolingCppflags
|
||||||
|
case ".h", ".hpp":
|
||||||
|
ctx.PropertyErrorf("srcs", "Header file %s is not supported, instead use export_include_dirs or local_include_dirs.", srcFile)
|
||||||
|
continue
|
||||||
default:
|
default:
|
||||||
ctx.ModuleErrorf("File %s has unknown extension", srcFile)
|
ctx.PropertyErrorf("srcs", "File %s has unknown extension. Supported extensions: .s, .S, .c, .cpp, .cc, .cxx, .mm", srcFile)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user