Re: [Mesa-dev] [PATCH] android: build i965_compile_FILES sources

2015-10-15 Thread Emil Velikov
On 11 October 2015 at 12:49, Mauro Rossi  wrote:
> i965_compile_FILES need to be built, in order to avoid following building 
> errors:
>
> target SharedLib: i915_dri 
> (out/target/product/x86/obj/SHARED_LIBRARIES/i915_dri_intermediates/LINKED/i915_dri.so)
> external/mesa/src/mesa/drivers/dri/i965/brw_ir_fs.h:181: error: undefined 
> reference to 'fs_inst::~fs_inst()'
> ...
> ...
> external/mesa/src/mesa/drivers/dri/i965/intel_screen.c:1484: error: undefined 
> reference to 'brw_compiler_create'
> collect2: error: ld returned 1 exit status
> build/core/shared_library.mk:81: recipe for target 
> 'out/target/product/x86/obj/SHARED_LIBRARIES/i965_dri_intermediates/LINKED/i965_dri.so'
>  failed
> make: *** 
> [out/target/product/x86/obj/SHARED_LIBRARIES/i965_dri_intermediates/LINKED/i965_dri.so]
>  Error 1
> ---
Thanks Mauro.

I slightly touched the commit message and pushed to master.

-Emil
___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-dev


Re: [Mesa-dev] [PATCH] android: build i965_compile_FILES sources

2015-10-12 Thread Mauro Rossi
The response is in the first line of the of the patch motivations,
the build error affects lollipop-x86 build and it would have affected 
marshmallow-x86 too, if not addressed.

There is still no solution for the fonts problems
Mauro
 

Il giorno lunedì 12 ottobre 2015 14:15:51 UTC+2, Florian Wiedemann ha 
scritto:
>
> Hi Mauro,
>
> is it a patch to compile Android Marshmallow or is it a patch to fix the 
> fonts problem on Intel graphics hardware?
>
> Florian
>
___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-dev


Re: [Mesa-dev] [PATCH] android: build i965_compile_FILES sources

2015-10-12 Thread Florian Wiedemann
Hi Mauro,

is it a patch to compile Android Marshmallow or is it a patch to fix the 
fonts problem on Intel graphics hardware?

Florian
___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-dev


[Mesa-dev] [PATCH] android: build i965_compile_FILES sources

2015-10-11 Thread Mauro Rossi
i965_compile_FILES need to be built, in order to avoid following building 
errors:

target SharedLib: i915_dri 
(out/target/product/x86/obj/SHARED_LIBRARIES/i915_dri_intermediates/LINKED/i915_dri.so)
external/mesa/src/mesa/drivers/dri/i965/brw_ir_fs.h:181: error: undefined 
reference to 'fs_inst::~fs_inst()'
...
...
external/mesa/src/mesa/drivers/dri/i965/intel_screen.c:1484: error: undefined 
reference to 'brw_compiler_create'
collect2: error: ld returned 1 exit status
build/core/shared_library.mk:81: recipe for target 
'out/target/product/x86/obj/SHARED_LIBRARIES/i965_dri_intermediates/LINKED/i965_dri.so'
 failed
make: *** 
[out/target/product/x86/obj/SHARED_LIBRARIES/i965_dri_intermediates/LINKED/i965_dri.so]
 Error 1
---
 src/mesa/drivers/dri/i965/Android.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/mesa/drivers/dri/i965/Android.mk 
b/src/mesa/drivers/dri/i965/Android.mk
index a9b963a..d30a053 100644
--- a/src/mesa/drivers/dri/i965/Android.mk
+++ b/src/mesa/drivers/dri/i965/Android.mk
@@ -48,6 +48,7 @@ LOCAL_C_INCLUDES := \
$(MESA_DRI_C_INCLUDES)
 
 LOCAL_SRC_FILES := \
+   $(i965_compiler_FILES) \
$(i965_FILES)
 
 LOCAL_WHOLE_STATIC_LIBRARIES := \
-- 
2.1.4

___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-dev