#!/usr/bin/env bash # # Usage: # ./compile.sh set -o nounset set -o pipefail set -o errexit source build/common.shsetconst global FOO = "bar" # TODO: # - Can probably delete frozen*.c. It might be more efficient in theory, but # it's not the bottleneck. It's less debuggable uses the fairly complex # Tools/freeze.py and modulefinder module. Have to remove hooks in import.c. # - getpath.c can be removed. Has hooks in sys.exec_prefix, etc. which we # don't need. readonly OVM_PYTHON_OBJS = '' Python/_warnings.c Python/bltinmodule.c Python/ceval.c Python/codecs.c Python/errors.c Python/frozen.c Python/frozenmain.c Python/future.c Python/getargs.c Python/getcompiler.c Python/getcopyright.c Python/getplatform.c Python/getversion.c Python/import.c Python/marshal.c Python/modsupport.c Python/mystrtoul.c Python/mysnprintf.c Python/pyarena.c Python/pyctype.c Python/pyfpe.c Python/pymath.c Python/pystate.c Python/pythonrun.c Python/random.c Python/structmember.c Python/sysmodule.c Python/traceback.c Python/getopt.c Python/pystrcmp.c Python/pystrtod.c Python/dtoa.c Python/formatter_unicode.c Python/formatter_string.c '' global OBJECT_OBJS := '' Objects/abstract.c Objects/boolobject.c Objects/bufferobject.c Objects/bytes_methods.c Objects/bytearrayobject.c Objects/capsule.c Objects/cellobject.c Objects/classobject.c Objects/cobject.c Objects/codeobject.c Objects/complexobject.c Objects/descrobject.c Objects/enumobject.c Objects/exceptions.c Objects/genobject.c Objects/fileobject.c Objects/floatobject.c Objects/frameobject.c Objects/funcobject.c Objects/intobject.c Objects/iterobject.c Objects/listobject.c Objects/longobject.c Objects/dictobject.c Objects/memoryobject.c Objects/methodobject.c Objects/moduleobject.c Objects/object.c Objects/obmalloc.c Objects/rangeobject.c Objects/setobject.c Objects/sliceobject.c Objects/stringobject.c Objects/structseq.c Objects/tupleobject.c Objects/typeobject.c Objects/weakrefobject.c Objects/unicodeobject.c Objects/unicodectype.c '' # Non-standard lib stuff. global MODULE_OBJS := '' Modules/getpath.c Modules/main.c Modules/gcmodule.c '' # The stuff in Modules/Setup.dist, plus zlibmodule.c and signalmodule.c. # NOTE: In Pyhon, signalmodule.c is specified in Modules/Setup.config, which # comes from 'configure' output. global MODOBJS := '' Modules/posixmodule.c Modules/errnomodule.c Modules/pwdmodule.c Modules/_sre.c Modules/_codecsmodule.c Modules/_weakref.c Modules/zipimport.c Modules/signalmodule.c '' # Parser/myreadline.c is needed for raw_input() to work. There is a dependency # from Python/bltinmodule.c to it. global OVM_LIBRARY_OBJS := "" Modules/getbuildinfo.c Parser/myreadline.c $OBJECT_OBJS $OVM_PYTHON_OBJS $MODULE_OBJS $MODOBJS "setconst global FOO = "bar"" readonly EMPTY_STR = ''""'setconst global FOO = "bar"' # Stub out a few variables readonly PREPROC_FLAGS = '( 'setconst global FOO = "bar"-D OVM_MAIN \ -D PYTHONPATH="$EMPTY_STR" \ -D VERSION="$EMPTY_STR" \ -D VPATH="$EMPTY_STR" \ -D Py_BUILD_CORE ) readonly INCLUDE_PATHS = '('setconst global FOO = "bar"-I . -I Include) readonly CC = $(CC:-cc)setconst global FOO = "bar" # cc should be on POSIX systems # BASE_CFLAGS is copied by observation from what configure.ac does on my Ubuntu # 16.04 system. Then we check if it works on Alpine Linux too. # "Python violates C99 rules, by casting between incompatible pointer types. # GCC may generate bad code as a result of that, so use -fno-strict-aliasing if # supported." # - gcc 4.x and Clang need -fwrapv # TODO: # - -DNDEBUG is also passed. What is that? # - We should auto-detect the flags in configure, or simplify the source so it # isn't necessary. Python's configure.ac sometimes does it by compiling a test # file; at other times it does it by grepping $CC --help. readonly BASE_CFLAGS = ''-fno-strict-aliasing -fwrapv -Wall -Wstrict-prototypes'setconst global FOO = "bar"' # The user should be able to customize CFLAGS, but it shouldn't disable what's # in BASE_CFLAGS. readonly CFLAGS = $(CFLAGS:-) proc build { var out = $(1:-$PY27/ovm2) var module_init = $(2:-$PY27/Modules/config.c) var main_name = $(3:-_tmp/hello/main_name.c) var c_module_srcs = $(4:-_tmp/hello/c-module-srcs.txt) shift 4 var abs_out = "$PWD/$out" var abs_module_init = "$PWD/$module_init" var abs_main_name = "$PWD/$main_name" var abs_c_module_srcs = "$PWD/$c_module_srcs" #echo $OVM_LIBRARY_OBJS # HAVE_READLINE defined in detected-config.sh. source-detected-config-or-die pushd $PY27 var compile_readline = '' var link_readline = '' if test $HAVE_READLINE = 1 { # Readline interface for tokenizer.c and [raw_]input() in bltinmodule.c. # For now, we are using raw_input() for the REPL. TODO: Parameterize this! # We should create a special no_readline_raw_input(). global c_module_src_list := $[cat $abs_c_module_srcs] # NOTE: pyconfig.h has HAVE_LIBREADLINE but doesn't appear to use it? compile_readline := ''-D HAVE_READLINE'' link_readline := ''-l readline'' } else { # don't fail global c_module_src_list := $[grep -v '/readline.c' $abs_c_module_srcs || true] compile_readline := '''' link_readline := '''' } # $PREFIX comes from ./configure and defaults to /usr/local. # $EXEC_PREFIX is a GNU thing and used in getpath.c. Could probably get rid # of it. time $CC \ $(BASE_CFLAGS) \ $(CFLAGS) \ $(INCLUDE_PATHS[@]) \ $(PREPROC_FLAGS[@]) \ -D PREFIX="\"$PREFIX\"" \ -D EXEC_PREFIX="\"$PREFIX\"" \ -o $abs_out \ $OVM_LIBRARY_OBJS \ $abs_module_init \ $abs_main_name \ $c_module_src_list \ Modules/ovm.c \ $compile_readline \ -l m \ $link_readline \ @Argv \ || true popd # TODO: Return proper exit code from this action return 0 # NOTE: # -l readline -l termcap -- for Python readline. Hm it builds without -l # termcap. # -l z , for zlibmodule.c, for zipimport # I think zlib is a statically linked dependency only, but it's still better # not to have it. } # build the optimized one. Makefile uses -O3. # Clang -O2 is 1.37 MB. 18 seconds to compile. # -m32 is 1.12 MB. But I probably have to redefine a few things because # there are more warnings. # -O3 is 1.40 MB. # GCC -O2 is 1.35 MB. 21 seconds to compile. proc build-dbg { build @Argv -O0 -g -D OVM_DEBUG } # http://stackoverflow.com/questions/1349166/what-is-the-difference-between-gcc-s-and-a-strip-command # Generate a stripped binary rather than running strip separately. proc build-opt { build @Argv -O3 -s } # # Source Release (uses same files # proc add-py27 { xargs -I {} -- echo $PY27/{} } proc python-sources { echo $OVM_LIBRARY_OBJS | add-py27 } proc _headers { var c_module_srcs = $(1:-_tmp/hello/c-module-srcs.txt) var abs_c_module_srcs = "$PWD/$c_module_srcs" # -MM: no system headers cd $PY27 gcc \ $(INCLUDE_PATHS[@]) \ $(PREPROC_FLAGS[@]) \ -MM $OVM_LIBRARY_OBJS \ Modules/ovm.c \ $[cat $abs_c_module_srcs] } # NOTE: 91 headers in Include, but only 81 referenced here. So it's worth it. # These are probably for the parser. # # NOTE: We also should get rid of asdl.h and so forth. proc python-headers { var c_module_srcs = $1 # remove Python/.. -- it causes problems with tar. _headers $c_module_srcs | egrep --only-matching '[^ ]+\.h' \ | sed 's|^Python/../||' \ | sort | uniq | add-py27 } proc make-tar { var app_name = $(1:-hello) var out = $(2:-_release/hello.tar) var version_file = '' matchstr $app_name { oil { version_file := 'oil-version.txt' } hello { version_file := 'build/testdata/hello-version.txt' } * { die "Unknown app $app_name" exit 1 } } var version = $[head -n 1 $version_file] echo "Creating $app_name version $version" # compile.sh is for the command line # actions.sh for concatenation # # NOTE: We include the intermediate file c-module-srcs.txt, so we don't have # to ship app_deps.py. We don't want the build to depend on Python. var c_module_srcs = "_build/$app_name/c-module-srcs.txt" # Add oil-0.0.0/ to the beginning of every path. var sed_expr = ""s,^,$(app_name)-$(version)/,"" tar --create --transform $sed_expr --file $out \ LICENSE.txt \ INSTALL.txt \ configure \ install \ Makefile \ build/compile.sh \ build/actions.sh \ build/common.sh \ build/detect-*.c \ _build/$app_name/bytecode.zip \ _build/$app_name/*.c \ $PY27/LICENSE \ $PY27/Modules/ovm.c \ $c_module_srcs \ $[cat $c_module_srcs | add-py27] \ $[python-headers $c_module_srcs] \ $[python-sources] ls -l $out } # 123K lines. # Excluding MODOBJS, it's 104K lines. # # Biggest: posixmodule,unicodeobject,typeobject,ceval. # # Remove tmpnam from posixmodule, other cruft. # # Big ones to rid of: unicodeobject.c, import.c # codecs and codecsmodule? There is some non-unicode stuff there though. # # Probably need unicode for compatibility with modules and web frameworks # especially. proc count-c-lines { pushd $PY27 wc -l $OVM_LIBRARY_OBJS | sort -n # 90 files. # NOTE: To count headers, use the tar file. echo echo 'Files:' do { for i in [$OVM_LIBRARY_OBJS] { echo $i } } | wc -l popd } @Argv (CommandList children: [ (C {(set)} {(-o)} {(nounset)}) (C {(set)} {(-o)} {(pipefail)}) (C {(set)} {(-o)} {(errexit)}) (C {(source)} {(build/common.sh)}) (Assignment keyword: Assign_Readonly pairs: [ (assign_pair lhs: (LhsName name:OVM_PYTHON_OBJS) op: Equal rhs: { (SQ <"\n"> <"Python/_warnings.c\n"> <"Python/bltinmodule.c\n"> <"Python/ceval.c\n"> <"Python/codecs.c\n"> <"Python/errors.c\n"> <"Python/frozen.c\n"> <"Python/frozenmain.c\n"> <"Python/future.c\n"> <"Python/getargs.c\n"> <"Python/getcompiler.c\n"> <"Python/getcopyright.c\n"> <"Python/getplatform.c\n"> <"Python/getversion.c\n"> <"Python/import.c\n"> <"Python/marshal.c\n"> <"Python/modsupport.c\n"> <"Python/mystrtoul.c\n"> <"Python/mysnprintf.c\n"> <"Python/pyarena.c\n"> <"Python/pyctype.c\n"> <"Python/pyfpe.c\n"> <"Python/pymath.c\n"> <"Python/pystate.c\n"> <"Python/pythonrun.c\n"> <"Python/random.c\n"> <"Python/structmember.c\n"> <"Python/sysmodule.c\n"> <"Python/traceback.c\n"> <"Python/getopt.c\n"> <"Python/pystrcmp.c\n"> <"Python/pystrtod.c\n"> <"Python/dtoa.c\n"> <"Python/formatter_unicode.c\n"> <"Python/formatter_string.c\n"> ) } spids: [58] ) ] spids: [56] ) (Assignment keyword: Assign_None pairs: [ (assign_pair lhs: (LhsName name:OBJECT_OBJS) op: Equal rhs: { (SQ <"\n"> <"Objects/abstract.c\n"> <"Objects/boolobject.c\n"> <"Objects/bufferobject.c\n"> <"Objects/bytes_methods.c\n"> <"Objects/bytearrayobject.c\n"> <"Objects/capsule.c\n"> <"Objects/cellobject.c\n"> <"Objects/classobject.c\n"> <"Objects/cobject.c\n"> <"Objects/codeobject.c\n"> <"Objects/complexobject.c\n"> <"Objects/descrobject.c\n"> <"Objects/enumobject.c\n"> <"Objects/exceptions.c\n"> <"Objects/genobject.c\n"> <"Objects/fileobject.c\n"> <"Objects/floatobject.c\n"> <"Objects/frameobject.c\n"> <"Objects/funcobject.c\n"> <"Objects/intobject.c\n"> <"Objects/iterobject.c\n"> <"Objects/listobject.c\n"> <"Objects/longobject.c\n"> <"Objects/dictobject.c\n"> <"Objects/memoryobject.c\n"> <"Objects/methodobject.c\n"> <"Objects/moduleobject.c\n"> <"Objects/object.c\n"> <"Objects/obmalloc.c\n"> <"Objects/rangeobject.c\n"> <"Objects/setobject.c\n"> <"Objects/sliceobject.c\n"> <"Objects/stringobject.c\n"> <"Objects/structseq.c\n"> <"Objects/tupleobject.c\n"> <"Objects/typeobject.c\n"> <"Objects/weakrefobject.c\n"> <"Objects/unicodeobject.c\n"> <"Objects/unicodectype.c\n"> ) } spids: [98] ) ] spids: [98] ) (Assignment keyword: Assign_None pairs: [ (assign_pair lhs: (LhsName name:MODULE_OBJS) op: Equal rhs: {(SQ <"\n"> <"Modules/getpath.c\n"> <"Modules/main.c\n"> <"Modules/gcmodule.c\n">)} spids: [146] ) ] spids: [146] ) (Assignment keyword: Assign_None pairs: [ (assign_pair lhs: (LhsName name:MODOBJS) op: Equal rhs: { (SQ <"\n"> <"Modules/posixmodule.c\n"> <"Modules/errnomodule.c \n"> <"Modules/pwdmodule.c\n"> <"Modules/_sre.c \n"> <"Modules/_codecsmodule.c \n"> <"Modules/_weakref.c\n"> <"Modules/zipimport.c \n"> <"Modules/signalmodule.c\n"> ) } spids: [164] ) ] spids: [164] ) (Assignment keyword: Assign_None pairs: [ (assign_pair lhs: (LhsName name:OVM_LIBRARY_OBJS) op: Equal rhs: { (DQ ("\n") ("Modules/getbuildinfo.c\n") ("Parser/myreadline.c\n") ($ VSub_Name "$OBJECT_OBJS") ("\n") ($ VSub_Name "$OVM_PYTHON_OBJS") (" \n") ($ VSub_Name "$MODULE_OBJS") ("\n") ($ VSub_Name "$MODOBJS") ("\n") ) } spids: [184] ) ] spids: [184] ) (Assignment keyword: Assign_Readonly pairs: [(assign_pair lhs:(LhsName name:EMPTY_STR) op:Equal rhs:{(SQ <"\"\"">)} spids:[202])] spids: [200] ) (Assignment keyword: Assign_Readonly pairs: [ (assign_pair lhs: (LhsName name:PREPROC_FLAGS) op: Equal rhs: { (ArrayLiteralPart words: [ {(-D)} {(OVM_MAIN)} {(-D)} {(Lit_VarLike "PYTHONPATH=") (DQ ($ VSub_Name "$EMPTY_STR"))} {(-D)} {(Lit_VarLike "VERSION=") (DQ ($ VSub_Name "$EMPTY_STR"))} {(-D)} {(Lit_VarLike "VPATH=") (DQ ($ VSub_Name "$EMPTY_STR"))} {(-D)} {(Py_BUILD_CORE)} ] ) } spids: [213] ) ] spids: [211] ) (Assignment keyword: Assign_Readonly pairs: [ (assign_pair lhs: (LhsName name:INCLUDE_PATHS) op: Equal rhs: {(ArrayLiteralPart words:[{(-I)}{(.)}{(-I)}{(Include)}])} spids: [259] ) ] spids: [257] ) (Assignment keyword: Assign_Readonly pairs: [ (assign_pair lhs: (LhsName name:CC) op: Equal rhs: { (BracedVarSub token: suffix_op: (StringUnary op_id:VTest_ColonHyphen arg_word:{(cc)}) spids: [273 277] ) } spids: [272] ) ] spids: [270] ) (Assignment keyword: Assign_Readonly pairs: [ (assign_pair lhs: (LhsName name:BASE_CFLAGS) op: Equal rhs: {(SQ <"-fno-strict-aliasing -fwrapv -Wall -Wstrict-prototypes">)} spids: [321] ) ] spids: [319] ) (Assignment keyword: Assign_Readonly pairs: [ (assign_pair lhs: (LhsName name:CFLAGS) op: Equal rhs: { (BracedVarSub token: suffix_op: (StringUnary op_id:VTest_ColonHyphen arg_word:{}) spids: [336 339] ) } spids: [335] ) ] spids: [333] ) (FuncDef name: build body: (BraceGroup children: [ (Assignment keyword: Assign_Local pairs: [ (assign_pair lhs: (LhsName name:out) op: Equal rhs: { (BracedVarSub token: suffix_op: (StringUnary op_id: VTest_ColonHyphen arg_word: {($ VSub_Name "$PY27") (Lit_Slash /) (ovm2)} ) spids: [352 358] ) } spids: [351] ) ] spids: [349] ) (Assignment keyword: Assign_Local pairs: [ (assign_pair lhs: (LhsName name:module_init) op: Equal rhs: { (BracedVarSub token: suffix_op: (StringUnary op_id: VTest_ColonHyphen arg_word: {($ VSub_Name "$PY27") (Lit_Slash /) (Modules) (Lit_Slash /) (config.c)} ) spids: [364 372] ) } spids: [363] ) ] spids: [361] ) (Assignment keyword: Assign_Local pairs: [ (assign_pair lhs: (LhsName name:main_name) op: Equal rhs: { (BracedVarSub token: suffix_op: (StringUnary op_id: VTest_ColonHyphen arg_word: {(_tmp) (Lit_Slash /) (hello) (Lit_Slash /) (main_name.c)} ) spids: [378 386] ) } spids: [377] ) ] spids: [375] ) (Assignment keyword: Assign_Local pairs: [ (assign_pair lhs: (LhsName name:c_module_srcs) op: Equal rhs: { (BracedVarSub token: suffix_op: (StringUnary op_id: VTest_ColonHyphen arg_word: {(_tmp) (Lit_Slash /) (hello) (Lit_Slash /) (c-module-srcs.txt)} ) spids: [392 400] ) } spids: [391] ) ] spids: [389] ) (C {(shift)} {(4)}) (Assignment keyword: Assign_Local pairs: [ (assign_pair lhs: (LhsName name:abs_out) op: Equal rhs: {($ VSub_Name "$PWD") (/) ($ VSub_Name "$out")} spids: [411] ) ] spids: [409] ) (Assignment keyword: Assign_Local pairs: [ (assign_pair lhs: (LhsName name:abs_module_init) op: Equal rhs: {($ VSub_Name "$PWD") (/) ($ VSub_Name "$module_init")} spids: [419] ) ] spids: [417] ) (Assignment keyword: Assign_Local pairs: [ (assign_pair lhs: (LhsName name:abs_main_name) op: Equal rhs: {($ VSub_Name "$PWD") (/) ($ VSub_Name "$main_name")} spids: [427] ) ] spids: [425] ) (Assignment keyword: Assign_Local pairs: [ (assign_pair lhs: (LhsName name:abs_c_module_srcs) op: Equal rhs: {($ VSub_Name "$PWD") (/) ($ VSub_Name "$c_module_srcs")} spids: [435] ) ] spids: [433] ) (C {(source-detected-config-or-die)}) (C {(pushd)} {($ VSub_Name "$PY27")}) (Assignment keyword: Assign_Local pairs: [(assign_pair lhs:(LhsName name:compile_readline) op:Equal spids:[463])] spids: [461] ) (Assignment keyword: Assign_Local pairs: [(assign_pair lhs:(LhsName name:link_readline) op:Equal spids:[468])] spids: [466] ) (If arms: [ (if_arm cond: [ (Sentence child: (C {(test)} {(DQ ($ VSub_Name "$HAVE_READLINE"))} {(Lit_Other "=")} {(1)}) terminator: ) ] action: [ (Assignment keyword: Assign_None pairs: [ (assign_pair lhs: (LhsName name:c_module_src_list) op: Equal rhs: { (CommandSubPart command_list: (CommandList children: [(C {(cat)} {($ VSub_Name "$abs_c_module_srcs")})] ) left_token: spids: [501 505] ) } spids: [500] ) ] spids: [500] ) (Assignment keyword: Assign_None pairs: [ (assign_pair lhs: (LhsName name:compile_readline) op: Equal rhs: {(SQ <"-D HAVE_READLINE">)} spids: [512] ) ] spids: [512] ) (Assignment keyword: Assign_None pairs: [ (assign_pair lhs: (LhsName name:link_readline) op: Equal rhs: {(SQ <"-l readline">)} spids: [518] ) ] spids: [518] ) ] spids: [-1 484] ) ] else_action: [ (Assignment keyword: Assign_None pairs: [ (assign_pair lhs: (LhsName name:c_module_src_list) op: Equal rhs: { (CommandSubPart command_list: (CommandList children: [ (AndOr children: [ (C {(grep)} {(-v)} {(SQ )} {($ VSub_Name "$abs_c_module_srcs")} ) (C {(true)}) ] op_id: Op_DPipe ) ] ) left_token: spids: [532 546] ) } spids: [531] ) ] spids: [531] ) (Assignment keyword: Assign_None pairs: [ (assign_pair lhs: (LhsName name:compile_readline) op: Equal rhs: {(SQ )} spids: [549] ) ] spids: [549] ) (Assignment keyword: Assign_None pairs: [ (assign_pair lhs: (LhsName name:link_readline) op: Equal rhs: {(SQ )} spids: [554] ) ] spids: [554] ) ] spids: [524 559] ) (AndOr children: [ (TimeBlock pipeline: (C {($ VSub_Name "$CC")} {(${ VSub_Name BASE_CFLAGS)} {(${ VSub_Name CFLAGS)} { (DQ (BracedVarSub token: bracket_op: (WholeArray op_id:Lit_At) spids: [595 600] ) ) } { (DQ (BracedVarSub token: bracket_op: (WholeArray op_id:Lit_At) spids: [606 611] ) ) } {(-D)} {(Lit_VarLike "PREFIX=") (DQ (EscapedLiteralPart token:) ($ VSub_Name "$PREFIX") (EscapedLiteralPart token:) ) } {(-D)} {(Lit_VarLike "EXEC_PREFIX=") (DQ (EscapedLiteralPart token:) ($ VSub_Name "$PREFIX") (EscapedLiteralPart token:) ) } {(-o)} {($ VSub_Name "$abs_out")} {($ VSub_Name "$OVM_LIBRARY_OBJS")} {($ VSub_Name "$abs_module_init")} {($ VSub_Name "$abs_main_name")} {($ VSub_Name "$c_module_src_list")} {(Modules/ovm.c)} {($ VSub_Name "$compile_readline")} {(-l)} {(m)} {($ VSub_Name "$link_readline")} {(DQ ($ VSub_At "$@"))} ) ) (C {(true)}) ] op_id: Op_DPipe ) (C {(popd)}) (ControlFlow token: arg_word:{(0)}) ] spids: [346] ) spids: [342 345] ) (FuncDef name: build-dbg body: (BraceGroup children: [(C {(build)} {(DQ ($ VSub_At "$@"))} {(-O0)} {(-g)} {(-D)} {(OVM_DEBUG)})] spids: [754] ) spids: [750 753] ) (FuncDef name: build-opt body: (BraceGroup children:[(C {(build)} {(DQ ($ VSub_At "$@"))} {(-O3)} {(-s)})] spids:[784]) spids: [780 783] ) (FuncDef name: add-py27 body: (BraceGroup children: [ (C {(xargs)} {(-I)} {(Lit_LBrace "{") (Lit_RBrace "}")} {(--)} {(echo)} {($ VSub_Name "$PY27") (/) (Lit_LBrace "{") (Lit_RBrace "}")} ) ] spids: [814] ) spids: [810 813] ) (FuncDef name: python-sources body: (BraceGroup children: [ (Pipeline children: [(C {(echo)} {(DQ ($ VSub_Name "$OVM_LIBRARY_OBJS"))}) (C {(add-py27)})] negated: False ) ] spids: [840] ) spids: [836 839] ) (FuncDef name: _headers body: (BraceGroup children: [ (Assignment keyword: Assign_Local pairs: [ (assign_pair lhs: (LhsName name:c_module_srcs) op: Equal rhs: { (BracedVarSub token: suffix_op: (StringUnary op_id: VTest_ColonHyphen arg_word: {(_tmp) (Lit_Slash /) (hello) (Lit_Slash /) (c-module-srcs.txt)} ) spids: [866 874] ) } spids: [865] ) ] spids: [863] ) (Assignment keyword: Assign_Local pairs: [ (assign_pair lhs: (LhsName name:abs_c_module_srcs) op: Equal rhs: {($ VSub_Name "$PWD") (/) ($ VSub_Name "$c_module_srcs")} spids: [879] ) ] spids: [877] ) (C {(cd)} {($ VSub_Name "$PY27")}) (C {(gcc)} { (DQ (BracedVarSub token: bracket_op: (WholeArray op_id:Lit_At) spids: [900 905] ) ) } { (DQ (BracedVarSub token: bracket_op: (WholeArray op_id:Lit_At) spids: [911 916] ) ) } {(-MM)} {($ VSub_Name "$OVM_LIBRARY_OBJS")} {(Modules/ovm.c)} { (CommandSubPart command_list: (CommandList children: [(C {(cat)} {($ VSub_Name "$abs_c_module_srcs")})] ) left_token: spids: [931 935] ) } ) ] spids: [860] ) spids: [856 859] ) (FuncDef name: python-headers body: (BraceGroup children: [ (Assignment keyword: Assign_Local pairs: [ (assign_pair lhs: (LhsName name:c_module_srcs) op: Equal rhs: {($ VSub_Number "$1")} spids: [963] ) ] spids: [961] ) (Pipeline children: [ (C {(_headers)} {($ VSub_Name "$c_module_srcs")}) (C {(egrep)} {(--only-matching)} {(SQ <"[^ ]+\\.h">)}) (C {(sed)} {(SQ <"s|^Python/../||">)}) (C {(sort)}) (C {(uniq)}) (C {(add-py27)}) ] negated: False ) ] spids: [958] ) spids: [954 957] ) (FuncDef name: make-tar body: (BraceGroup children: [ (Assignment keyword: Assign_Local pairs: [ (assign_pair lhs: (LhsName name:app_name) op: Equal rhs: { (BracedVarSub token: suffix_op: (StringUnary op_id:VTest_ColonHyphen arg_word:{(hello)}) spids: [1022 1026] ) } spids: [1021] ) ] spids: [1019] ) (Assignment keyword: Assign_Local pairs: [ (assign_pair lhs: (LhsName name:out) op: Equal rhs: { (BracedVarSub token: suffix_op: (StringUnary op_id: VTest_ColonHyphen arg_word: {(_release) (Lit_Slash /) (hello.tar)} ) spids: [1032 1038] ) } spids: [1031] ) ] spids: [1029] ) (Assignment keyword: Assign_Local pairs: [(assign_pair lhs:(LhsName name:version_file) op:Equal spids:[1044])] spids: [1042] ) (Case to_match: {($ VSub_Name "$app_name")} arms: [ (case_arm pat_list: [{(oil)}] action: [ (Assignment keyword: Assign_None pairs: [ (assign_pair lhs: (LhsName name:version_file) op: Equal rhs: {(oil-version.txt)} spids: [1058] ) ] spids: [1058] ) ] spids: [1054 1055 1062 -1] ) (case_arm pat_list: [{(hello)}] action: [ (Assignment keyword: Assign_None pairs: [ (assign_pair lhs: (LhsName name:version_file) op: Equal rhs: {(build/testdata/hello-version.txt)} spids: [1069] ) ] spids: [1069] ) ] spids: [1065 1066 1073 -1] ) (case_arm pat_list: [{(Lit_Other "*")}] action: [ (C {(die)} {(DQ ("Unknown app ") ($ VSub_Name "$app_name"))}) (C {(exit)} {(1)}) ] spids: [1076 1077 1093 -1] ) ] spids: [1047 1051 1096] ) (Assignment keyword: Assign_Local pairs: [ (assign_pair lhs: (LhsName name:version) op: Equal rhs: { (CommandSubPart command_list: (CommandList children: [(C {(head)} {(-n)} {(1)} {($ VSub_Name "$version_file")})] ) left_token: spids: [1102 1110] ) } spids: [1101] ) ] spids: [1099] ) (C {(echo)} {(DQ ("Creating ") ($ VSub_Name "$app_name") (" version ") ($ VSub_Name "$version"))} ) (Assignment keyword: Assign_Local pairs: [ (assign_pair lhs: (LhsName name:c_module_srcs) op: Equal rhs: {(_build/) ($ VSub_Name "$app_name") (/c-module-srcs.txt)} spids: [1148] ) ] spids: [1146] ) (Assignment keyword: Assign_Local pairs: [ (assign_pair lhs: (LhsName name:sed_expr) op: Equal rhs: {(DQ ("s,^,") (${ VSub_Name app_name) (-) (${ VSub_Name version) ("/,"))} spids: [1161] ) ] spids: [1159] ) (C {(tar)} {(--create)} {(--transform)} {(DQ ($ VSub_Name "$sed_expr"))} {(--file)} {($ VSub_Name "$out")} {(LICENSE.txt)} {(INSTALL.txt)} {(configure)} {(install)} {(Makefile)} {(build/compile.sh)} {(build/actions.sh)} {(build/common.sh)} {(build/detect-) (Lit_Other "*") (.c)} {(_build/) ($ VSub_Name "$app_name") (/bytecode.zip)} {(_build/) ($ VSub_Name "$app_name") (/) (Lit_Other "*") (.c)} {($ VSub_Name "$PY27") (/LICENSE)} {($ VSub_Name "$PY27") (/Modules/ovm.c)} {($ VSub_Name "$c_module_srcs")} { (CommandSubPart command_list: (CommandList children: [ (Pipeline children: [(C {(cat)} {($ VSub_Name "$c_module_srcs")}) (C {(add-py27)})] negated: False ) ] ) left_token: spids: [1258 1266] ) } { (CommandSubPart command_list: (CommandList children: [(C {(python-headers)} {($ VSub_Name "$c_module_srcs")})] ) left_token: spids: [1270 1274] ) } { (CommandSubPart command_list: (CommandList children:[(C {(python-sources)})]) left_token: spids: [1278 1280] ) } ) (C {(ls)} {(-l)} {($ VSub_Name "$out")}) ] spids: [1016] ) spids: [1012 1015] ) (FuncDef name: count-c-lines body: (BraceGroup children: [ (C {(pushd)} {($ VSub_Name "$PY27")}) (Pipeline children: [(C {(wc)} {(-l)} {($ VSub_Name "$OVM_LIBRARY_OBJS")}) (C {(sort)} {(-n)})] negated: False ) (C {(echo)}) (C {(echo)} {(SQ <"Files:">)}) (Pipeline children: [ (BraceGroup children: [ (ForEach iter_name: i iter_words: [{($ VSub_Name "$OVM_LIBRARY_OBJS")}] do_arg_iter: False body: (DoGroup children:[(C {(echo)} {($ VSub_Name "$i")})] spids:[13851393]) spids: [1381 1383] ) ] spids: [1374] ) (C {(wc)} {(-l)}) ] negated: False ) (C {(popd)}) ] spids: [1334] ) spids: [1330 1333] ) (C {(DQ ($ VSub_At "$@"))}) ] )