mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-18 11:39:05 +00:00
13 lines
329 B
Python
13 lines
329 B
Python
import os
|
|
|
|
NAME = 'v8'
|
|
|
|
CFLAGS = ['-Wno-deprecated-declarations']
|
|
LDFLAGS = []
|
|
LIBS = ['-lstdc++', '-lv8']
|
|
engine = os.environ.get('UWSGICONFIG_V8_ENGINE', '')
|
|
if engine == 'teajs':
|
|
CFLAGS.append('-DUWSGI_V8_TEAJS -fexceptions')
|
|
LIBS.append('-lteajs')
|
|
GCC_LIST = ['plugin', 'v8_uwsgi.cc', 'v8_commonjs.cc', 'v8_jsgi.cc']
|