Clone of mesa.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Android.mk 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. # Mesa 3-D graphics library
  2. #
  3. # Copyright (C) 2010-2011 Chia-I Wu <olvaffe@gmail.com>
  4. # Copyright (C) 2010-2011 LunarG Inc.
  5. #
  6. # Permission is hereby granted, free of charge, to any person obtaining a
  7. # copy of this software and associated documentation files (the "Software"),
  8. # to deal in the Software without restriction, including without limitation
  9. # the rights to use, copy, modify, merge, publish, distribute, sublicense,
  10. # and/or sell copies of the Software, and to permit persons to whom the
  11. # Software is furnished to do so, subject to the following conditions:
  12. #
  13. # The above copyright notice and this permission notice shall be included
  14. # in all copies or substantial portions of the Software.
  15. #
  16. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19. # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  21. # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  22. # DEALINGS IN THE SOFTWARE.
  23. # BOARD_GPU_DRIVERS should be defined. The valid values are
  24. #
  25. # classic drivers: i915 i965
  26. # gallium drivers: swrast freedreno i915g nouveau r300g r600g radeonsi vc4 virgl vmwgfx
  27. #
  28. # The main target is libGLES_mesa. For each classic driver enabled, a DRI
  29. # module will also be built. DRI modules will be loaded by libGLES_mesa.
  30. MESA_TOP := $(call my-dir)
  31. MESA_ANDROID_MAJOR_VERSION := $(word 1, $(subst ., , $(PLATFORM_VERSION)))
  32. MESA_DRI_MODULE_REL_PATH := dri
  33. MESA_DRI_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/$(MESA_DRI_MODULE_REL_PATH)
  34. MESA_DRI_MODULE_UNSTRIPPED_PATH := $(TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)/$(MESA_DRI_MODULE_REL_PATH)
  35. MESA_COMMON_MK := $(MESA_TOP)/Android.common.mk
  36. MESA_PYTHON2 := python
  37. # Lists to convert driver names to boolean variables
  38. # in form of <driver name>.<boolean make variable>
  39. classic_drivers := i915.HAVE_I915_DRI i965.HAVE_I965_DRI
  40. gallium_drivers := \
  41. swrast.HAVE_GALLIUM_SOFTPIPE \
  42. freedreno.HAVE_GALLIUM_FREEDRENO \
  43. i915g.HAVE_GALLIUM_I915 \
  44. nouveau.HAVE_GALLIUM_NOUVEAU \
  45. r300g.HAVE_GALLIUM_R300 \
  46. r600g.HAVE_GALLIUM_R600 \
  47. radeonsi.HAVE_GALLIUM_RADEONSI \
  48. vmwgfx.HAVE_GALLIUM_VMWGFX \
  49. vc4.HAVE_GALLIUM_VC4 \
  50. virgl.HAVE_GALLIUM_VIRGL
  51. ifeq ($(BOARD_GPU_DRIVERS),all)
  52. MESA_BUILD_CLASSIC := $(filter HAVE_%, $(subst ., , $(classic_drivers)))
  53. MESA_BUILD_GALLIUM := $(filter HAVE_%, $(subst ., , $(gallium_drivers)))
  54. else
  55. # Warn if we have any invalid driver names
  56. $(foreach d, $(BOARD_GPU_DRIVERS), \
  57. $(if $(findstring $(d).,$(classic_drivers) $(gallium_drivers)), \
  58. , \
  59. $(warning invalid GPU driver: $(d)) \
  60. ) \
  61. )
  62. MESA_BUILD_CLASSIC := $(strip $(foreach d, $(BOARD_GPU_DRIVERS), $(patsubst $(d).%,%, $(filter $(d).%, $(classic_drivers)))))
  63. MESA_BUILD_GALLIUM := $(strip $(foreach d, $(BOARD_GPU_DRIVERS), $(patsubst $(d).%,%, $(filter $(d).%, $(gallium_drivers)))))
  64. endif
  65. $(foreach d, $(MESA_BUILD_CLASSIC) $(MESA_BUILD_GALLIUM), $(eval $(d) := true))
  66. # host and target must be the same arch to generate matypes.h
  67. ifeq ($(TARGET_ARCH),$(HOST_ARCH))
  68. MESA_ENABLE_ASM := true
  69. else
  70. MESA_ENABLE_ASM := false
  71. endif
  72. ifneq ($(filter true, $(HAVE_GALLIUM_RADEONSI)),)
  73. MESA_ENABLE_LLVM := true
  74. endif
  75. define mesa-build-with-llvm
  76. $(if $(filter $(MESA_ANDROID_MAJOR_VERSION), 4 5), \
  77. $(warning Unsupported LLVM version in Android $(MESA_ANDROID_MAJOR_VERSION)),) \
  78. $(if $(filter 6,$(MESA_ANDROID_MAJOR_VERSION)), \
  79. $(eval LOCAL_CFLAGS += -DHAVE_LLVM=0x0307 -DMESA_LLVM_VERSION_PATCH=0) \
  80. $(eval LOCAL_STATIC_LIBRARIES += libLLVMCore) \
  81. $(eval LOCAL_C_INCLUDES += external/llvm/include external/llvm/device/include),) \
  82. $(if $(filter 7,$(MESA_ANDROID_MAJOR_VERSION)), \
  83. $(eval LOCAL_CFLAGS += -DHAVE_LLVM=0x0308 -DMESA_LLVM_VERSION_PATCH=0) \
  84. $(eval LOCAL_STATIC_LIBRARIES += libLLVMCore) \
  85. $(eval LOCAL_C_INCLUDES += external/llvm/include external/llvm/device/include),)
  86. endef
  87. # add subdirectories
  88. SUBDIRS := \
  89. src/gbm \
  90. src/loader \
  91. src/mapi \
  92. src/compiler \
  93. src/mesa \
  94. src/util \
  95. src/egl \
  96. src/amd \
  97. src/intel \
  98. src/mesa/drivers/dri \
  99. src/vulkan
  100. INC_DIRS := $(call all-named-subdir-makefiles,$(SUBDIRS))
  101. INC_DIRS += $(call all-named-subdir-makefiles,src/gallium)
  102. include $(INC_DIRS)