Some initial work.

This commit is contained in:
2020-11-12 14:24:33 -05:00
parent efb2a39d8e
commit 1be7ead12e
8 changed files with 691 additions and 3 deletions

View File

@@ -36,7 +36,8 @@ CC= $(DEFAULT_CC)
# to slow down the C part by not omitting it. Debugging, tracebacks and
# unwinding are not affected -- the assembler part has frame unwind
# information and GCC emits it where needed (x64) or with -g (see CCDEBUG).
CCOPT= -O2 -fomit-frame-pointer
#CCOPT= -O2 -fomit-frame-pointer
CCOPT=
# Use this if you want to generate a smaller binary (but it's slower):
#CCOPT= -Os -fomit-frame-pointer
# Note: it's no longer recommended to use -O3 with GCC 4.x.
@@ -56,7 +57,7 @@ CCOPT_mips=
#
CCDEBUG=
# Uncomment the next line to generate debug information:
#CCDEBUG= -g
CCDEBUG= -g
#
CCWARN= -Wall
# Uncomment the next line to enable more warnings: