mesa/src/freedreno/Makefile.sources
John Stultz 96baf052b2 mesa: Add ir3/ir3_nir_imul.c generation to Android.mk
With current master we're seeing build failures with AOSP:
  error: undefined symbol: ir3_nir_lower_imul

This is due to the ir3_nir_imul.c file not being generated
in the Android.mk files.

This patch simply adds it to the Android build, after which
thigns build and book ok on db410c.

Cc: Rob Clark <robdclark@chromium.org>
Cc: Emil Velikov <emil.l.velikov@gmail.com>
Cc: Amit Pundir <amit.pundir@linaro.org>
Cc: Sumit Semwal <sumit.semwal@linaro.org>
Cc: Alistair Strachan <astrachan@google.com>
Cc: Greg Hartman <ghartman@google.com>
Cc: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Rob Clark <robdclark@gmail.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
Signed-off-by: John Stultz <john.stultz@linaro.org>
2019-08-07 02:18:19 +00:00

52 lines
1.1 KiB
Text

drm_SOURCES := \
drm/freedreno_bo.c \
drm/freedreno_drmif.h \
drm/freedreno_ringbuffer.c \
drm/msm_bo.c \
drm/msm_pipe.c \
drm/msm_ringbuffer_sp.c \
drm/freedreno_bo_cache.c \
drm/freedreno_pipe.c \
drm/freedreno_ringbuffer.h \
drm/msm_device.c \
drm/msm_priv.h \
drm/freedreno_device.c \
drm/freedreno_priv.h \
drm/msm_ringbuffer.c
ir3_SOURCES := \
ir3/disasm-a3xx.c \
ir3/instr-a3xx.h \
ir3/ir3.c \
ir3/ir3_a4xx.c \
ir3/ir3_a6xx.c \
ir3/ir3_compiler.c \
ir3/ir3_compiler.h \
ir3/ir3_compiler_nir.c \
ir3/ir3_context.c \
ir3/ir3_context.h \
ir3/ir3_cp.c \
ir3/ir3_depth.c \
ir3/ir3_group.c \
ir3/ir3_image.c \
ir3/ir3_image.h \
ir3/ir3.h \
ir3/ir3_legalize.c \
ir3/ir3_nir.c \
ir3/ir3_nir.h \
ir3/ir3_nir_analyze_ubo_ranges.c \
ir3/ir3_nir_lower_load_barycentric_at_sample.c \
ir3/ir3_nir_lower_load_barycentric_at_offset.c \
ir3/ir3_nir_lower_io_offsets.c \
ir3/ir3_nir_lower_tg4_to_tex.c \
ir3/ir3_nir_move_varying_inputs.c \
ir3/ir3_print.c \
ir3/ir3_ra.c \
ir3/ir3_sched.c \
ir3/ir3_shader.c \
ir3/ir3_shader.h \
ir3/ir3_sun.c
ir3_GENERATED_FILES := \
ir3/ir3_nir_trig.c \
ir3/ir3_nir_imul.c