mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-05-13 18:23:44 +00:00
13 lines
211 B
Python
13 lines
211 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']
|