Re: [Mesa-dev] [PATCH] android: fix a build issue with libmesa_st_mesa_32

2016-09-08 Thread Tapani Pälli
On 09/07/2016 04:06 PM, Emil Velikov wrote: On 7 September 2016 at 13:10, Mauro Rossi wrote: 2016-09-07 12:56 GMT+02:00 Emil Velikov : On 7 September 2016 at 11:01, Mauro Rossi wrote: Hi Tapani, does moving the declaration of the dependency to src/mesa/drivers/dri/i965/Android.mk also wo

Re: [Mesa-dev] [PATCH] android: fix a build issue with libmesa_st_mesa_32

2016-09-07 Thread Emil Velikov
On 7 September 2016 at 13:10, Mauro Rossi wrote: > 2016-09-07 12:56 GMT+02:00 Emil Velikov : >> >> On 7 September 2016 at 11:01, Mauro Rossi wrote: >> > Hi Tapani, >> > >> > does moving the declaration of the dependency to >> > src/mesa/drivers/dri/i965/Android.mk also work? >> > Mauro >> > >> >

Re: [Mesa-dev] [PATCH] android: fix a build issue with libmesa_st_mesa_32

2016-09-07 Thread Mauro Rossi
2016-09-07 12:56 GMT+02:00 Emil Velikov : > On 7 September 2016 at 11:01, Mauro Rossi wrote: > > Hi Tapani, > > > > does moving the declaration of the dependency to > > src/mesa/drivers/dri/i965/Android.mk also work? > > Mauro > > > > LOCAL_WHOLE_STATIC_LIBRARIES := \ > > $(MESA_DRI_WHOLE_STATIC_

Re: [Mesa-dev] [PATCH] android: fix a build issue with libmesa_st_mesa_32

2016-09-07 Thread Emil Velikov
On 7 September 2016 at 11:01, Mauro Rossi wrote: > Hi Tapani, > > does moving the declaration of the dependency to > src/mesa/drivers/dri/i965/Android.mk also work? > Mauro > > LOCAL_WHOLE_STATIC_LIBRARIES := \ > $(MESA_DRI_WHOLE_STATIC_LIBRARIES) \ > + libmesa_genxml \ > libmesa_isl > > Mauro, it

Re: [Mesa-dev] [PATCH] android: fix a build issue with libmesa_st_mesa_32

2016-09-07 Thread Mauro Rossi
Hi Tapani, does moving the declaration of the dependency to src/mesa/drivers/dri/i965/Android.mk also work? Mauro LOCAL_WHOLE_STATIC_LIBRARIES := \ $(MESA_DRI_WHOLE_STATIC_LIBRARIES) \ + libmesa_genxml \ libmesa_isl ___ mesa-dev mailing list mesa-dev@li

Re: [Mesa-dev] [PATCH] android: fix a build issue with libmesa_st_mesa_32

2016-09-07 Thread Tapani Pälli
On 09/06/2016 06:06 PM, Emil Velikov wrote: On 6 September 2016 at 15:33, Chih-Wei Huang wrote: 2016-08-29 16:52 GMT+08:00 Tapani Pälli : make sure nir_opcodes.h is in LOCAL_GENERATED_SOURCES otherwise build fails with: "In file included from external/mesa/src/mesa/state_tracker/st_glsl_to_ni

Re: [Mesa-dev] [PATCH] android: fix a build issue with libmesa_st_mesa_32

2016-09-06 Thread Emil Velikov
On 6 September 2016 at 15:33, Chih-Wei Huang wrote: > 2016-08-29 16:52 GMT+08:00 Tapani Pälli : >> make sure nir_opcodes.h is in LOCAL_GENERATED_SOURCES otherwise >> build fails with: >> >> "In file included from >> external/mesa/src/mesa/state_tracker/st_glsl_to_nir.cpp:44: >> external/mesa/src/c

Re: [Mesa-dev] [PATCH] android: fix a build issue with libmesa_st_mesa_32

2016-09-06 Thread Chih-Wei Huang
2016-08-29 16:52 GMT+08:00 Tapani Pälli : > make sure nir_opcodes.h is in LOCAL_GENERATED_SOURCES otherwise > build fails with: > > "In file included from > external/mesa/src/mesa/state_tracker/st_glsl_to_nir.cpp:44: > external/mesa/src/compiler/nir/nir.h:42:10: fatal error: 'nir_opcodes.h' file >

[Mesa-dev] [PATCH] android: fix a build issue with libmesa_st_mesa_32

2016-08-29 Thread Tapani Pälli
make sure nir_opcodes.h is in LOCAL_GENERATED_SOURCES otherwise build fails with: "In file included from external/mesa/src/mesa/state_tracker/st_glsl_to_nir.cpp:44: external/mesa/src/compiler/nir/nir.h:42:10: fatal error: 'nir_opcodes.h' file not found" Signed-off-by: Tapani Pälli --- src/mesa