mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 20:08:06 +02:00
android: spirv: fix '::' typo in gen rules
among all Android gen rules '::' was used only here to declare dependencies; mesa development and stable branch are worth receiving the fix Fixes the following building errors with Android 7: obj/STATIC_LIBRARIES/libmesa_nir_intermediates/spirv/gl_spirv.P:184: *** target file gen/STATIC_LIBRARIES/libmesa_nir_intermediates/spirv/vtn_generator_ids.h' has both : and :: entries. Stop. Cc: "20.3" <mesa-stable@lists.freedesktop.org> Fixes:1070bba19e("android: fix SPIR-V -> NIR build") Reported-by: youling257 <youling257@gmail.com> (cherry picked from commit185df8ef07)
This commit is contained in:
parent
b9dbeb597f
commit
c20c50e6ef
2 changed files with 3 additions and 3 deletions
|
|
@ -679,7 +679,7 @@
|
|||
"description": "android: spirv: fix '::' typo in gen rules",
|
||||
"nominated": true,
|
||||
"nomination_type": 1,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"master_sha": null,
|
||||
"because_sha": "1070bba19e26640bc1dbfd04180e97217761404d"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -100,11 +100,11 @@ $(intermediates)/spirv/spirv_info.c: $(LOCAL_PATH)/spirv/spirv_info_c.py $(LOCAL
|
|||
@mkdir -p $(dir $@)
|
||||
$(hide) $(MESA_PYTHON2) $^ $@ || ($(RM) $@; false)
|
||||
|
||||
$(intermediates)/spirv/vtn_gather_types.c:: $(LOCAL_PATH)/spirv/vtn_gather_types_c.py $(LOCAL_PATH)/spirv/spirv.core.grammar.json
|
||||
$(intermediates)/spirv/vtn_gather_types.c: $(LOCAL_PATH)/spirv/vtn_gather_types_c.py $(LOCAL_PATH)/spirv/spirv.core.grammar.json
|
||||
@mkdir -p $(dir $@)
|
||||
$(hide) $(MESA_PYTHON2) $^ $@ || ($(RM) $@; false)
|
||||
|
||||
$(intermediates)/spirv/vtn_generator_ids.h:: $(LOCAL_PATH)/spirv/vtn_generator_ids_h.py $(LOCAL_PATH)/spirv/spir-v.xml
|
||||
$(intermediates)/spirv/vtn_generator_ids.h: $(LOCAL_PATH)/spirv/vtn_generator_ids_h.py $(LOCAL_PATH)/spirv/spir-v.xml
|
||||
@mkdir -p $(dir $@)
|
||||
$(hide) $(MESA_PYTHON2) $^ $@ || ($(RM) $@; false)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue