diff --git a/src/compiler/Android.nir.gen.mk b/src/compiler/Android.nir.gen.mk index e753bb77ad1..2d2f7724c4e 100644 --- a/src/compiler/Android.nir.gen.mk +++ b/src/compiler/Android.nir.gen.mk @@ -33,6 +33,7 @@ LOCAL_SRC_FILES := $(LOCAL_SRC_FILES) LOCAL_C_INCLUDES += \ $(intermediates)/nir \ + $(intermediates)/spirv \ $(MESA_TOP)/src/compiler/nir LOCAL_EXPORT_C_INCLUDE_DIRS += \ @@ -103,6 +104,10 @@ $(intermediates)/spirv/vtn_gather_types.c:: $(LOCAL_PATH)/spirv/vtn_gather_types @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 + @mkdir -p $(dir $@) + $(hide) $(MESA_PYTHON2) $^ $@ || ($(RM) $@; false) + nir_intrinsics_h_gen := $(LOCAL_PATH)/nir/nir_intrinsics_h.py $(intermediates)/nir/nir_intrinsics.h: $(LOCAL_PATH)/nir/nir_intrinsics.py $(nir_intrinsics_h_gen) @mkdir -p $(dir $@) diff --git a/src/compiler/Makefile.sources b/src/compiler/Makefile.sources index a71abe3bfa8..4925b53c2c2 100644 --- a/src/compiler/Makefile.sources +++ b/src/compiler/Makefile.sources @@ -370,7 +370,8 @@ NIR_FILES = \ SPIRV_GENERATED_FILES = \ spirv/spirv_info.c \ - spirv/vtn_gather_types.c + spirv/vtn_gather_types.c \ + spirv/vtn_generator_ids.h SPIRV_FILES = \ spirv/GLSL.ext.AMD.h \ diff --git a/src/compiler/spirv/vtn_generator_ids_h.py b/src/compiler/spirv/vtn_generator_ids_h.py index 098c7d80d85..7d6c57f186e 100644 --- a/src/compiler/spirv/vtn_generator_ids_h.py +++ b/src/compiler/spirv/vtn_generator_ids_h.py @@ -1,6 +1,6 @@ COPYRIGHT = """\ /* - * Copyright © 2020 Valve Corporation + * Copyright (C) 2020 Valve Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"),