Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

catamount-osmesa-pgi 1.1KB

1234567891011121314151617181920212223242526272829303132
  1. # Configuration for building only libOSMesa on Cray Xt3
  2. # for the compute nodes running Catamount using the
  3. # Portland Group compiler. The Portland Group toolchain has to be
  4. # enabled before using "module switch PrgEnv-gnu PrgEnv-pgi" .
  5. # This doesn't really have a lot of dependencies, so it should be usable
  6. # on other similar systems too.
  7. # It uses static linking and disables multithreading.
  8. include $(TOP)/configs/default
  9. CONFIG_NAME = catamount-osmesa-pgi
  10. # Compiler and flags
  11. CC = cc
  12. CXX = CC
  13. CFLAGS = -target=catamount -fastsse -O3 -Mnontemporal -Mprefetch=distance:8,nta -fPIC -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE
  14. CXXFLAGS = -target=catamount -fastsse -O3 -Mnontemporal -Mprefetch=distance:8,nta -fPIC -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE
  15. MKLIB_OPTIONS = -static
  16. OSMESA_LIB_NAME = libOSMesa.a
  17. # Directories
  18. SRC_DIRS = mesa glu
  19. DRIVER_DIRS = osmesa
  20. PROGRAM_DIRS = osdemos
  21. # Dependencies
  22. OSMESA_LIB_DEPS = -lm
  23. GLU_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(OSMESA_LIB)
  24. APP_LIB_DEPS = -lOSMesa -lGLU -lm