mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-28 17:55:39 +00:00
9 lines
197 B
Python
9 lines
197 B
Python
from distutils import sysconfig
|
|
|
|
NAME='stackless'
|
|
CFLAGS = ['-I' + sysconfig.get_python_inc(), '-I' + sysconfig.get_python_inc(plat_specific=True)]
|
|
LDFLAGS = []
|
|
LIBS = []
|
|
|
|
GCC_LIST = ['stackless']
|