Re: [Mesa-dev] [PATCH] Android: Fix vc4 build since XML changes.

2017-07-12 Thread Eric Anholt
Rob Herring writes: > On Wed, Jul 5, 2017 at 1:19 PM, Eric Anholt wrote: >> diff --git a/src/broadcom/Android.genxml.mk b/src/broadcom/Android.genxml.mk >> index df44b2ec0b79..dfd00a93fbcf 100644 >> --- a/src/broadcom/Android.genxml.mk >> +++ b/src/broadcom/Android.genxml.mk >> @@ -51,7 +51,7 @@

Re: [Mesa-dev] [PATCH] Android: Fix vc4 build since XML changes.

2017-07-10 Thread Rob Herring
On Wed, Jul 5, 2017 at 1:19 PM, Eric Anholt wrote: > For the automake build, -Isrc/ is implied from the gallium cflags, while > Android gallium driver builds don't get that by default. I think it'll be > better for vc4 to have broadcom includes appear as "#include > " to make it more clear where

[Mesa-dev] [PATCH] Android: Fix vc4 build since XML changes.

2017-07-05 Thread Eric Anholt
For the automake build, -Isrc/ is implied from the gallium cflags, while Android gallium driver builds don't get that by default. I think it'll be better for vc4 to have broadcom includes appear as "#include " to make it more clear where to look in the tree than "#include " does. --- Rob: The pat