Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e2861131 authored by Liz Kammer's avatar Liz Kammer
Browse files

Add context for invalid extensions for cc compile

Change-Id: I342e8ece56bbe632232d83670d14f9368ed9f0ff
Test: treehugger
parent fe9e0c77
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -568,8 +568,11 @@ func transformSourceToObj(ctx android.ModuleContext, subdir string, srcFiles and
			ccCmd = "clang++"
			moduleFlags = cppflags
			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:
			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
		}