Clone of mesa.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

linux-osmesa16-static 838B

123456789101112131415161718192021222324252627282930
  1. # Configuration for 16 bits/channel OSMesa library on Linux
  2. include $(TOP)/configs/default
  3. CONFIG_NAME = linux-osmesa16-static
  4. # Compiler and flags
  5. CC = gcc
  6. CXX = g++
  7. CFLAGS = -O3 -ansi -pedantic -ffast-math -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DUSE_XSHM -DPTHREADS -I/usr/X11R6/include -DCHAN_BITS=16 -DDEFAULT_SOFTWARE_DEPTH_BITS=31
  8. CXXFLAGS = -O3 -ansi -pedantic -ffast-math -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE
  9. MKLIB_OPTIONS = -static
  10. PIC_FLAGS =
  11. # Work around aliasing bugs - developers should comment this out
  12. CFLAGS += -fno-strict-aliasing
  13. CXXFLAGS += -fno-strict-aliasing
  14. # Library names
  15. OSMESA_LIB = OSMesa16
  16. OSMESA_LIB_NAME = libOSMesa16.a
  17. # Directories
  18. SRC_DIRS = gallium mesa glu
  19. DRIVER_DIRS = osmesa
  20. # Dependencies
  21. OSMESA_LIB_DEPS = -lm -lpthread