this repo has no description
1#!/usr/bin/env python3
2# Copyright (c) Facebook, Inc. and its affiliates. (http://www.facebook.com)
3# In cpython this file contains a dump of all variables in the Makefile used
4# to build cpython. We just hardcode a selection of the values for our runtime
5# here.
6
7build_time_vars = {
8 "ABIFLAGS": "",
9 "AR": "",
10 "ARFLAGS": "",
11 "CC": "gcc",
12 "CCSHARED": "-fPIC",
13 "CFLAGS": "-Wno-unused-result -Wsign-compare -g -Og -Wall",
14 "CXX": "g++",
15 "EXT_SUFFIX": ".pyro.so",
16 "LDCXXSHARED": "g++ -pthread -shared",
17 "LDSHARED": "gcc -pthread -shared",
18 "OPT": "",
19 "SHLIB_SUFFIX": ".so",
20 "SOABI": "pyro",
21}