MPTOP = ../..-include mpconfigport.mkinclude $(MPTOP)/py/mkenv.mkall: lib# OS name, for simple autoconfigUNAME_S := $(shell uname -s)# include py core make definitionsinclude $(MPTOP)/py/py.mkINC += -I.INC += -I..INC += -I$(MPTOP)INC += -I$(MPTOP)/ports/unixINC += -I$(BUILD)# compiler settingsCWARN = -Wall -WerrorCWARN += -Wpointer-arith -WuninitializedCFLAGS = $(INC) $(CWARN) -std=gnu99 -DUNIX $(CFLAGS_MOD) $(COPT) $(CFLAGS_EXTRA)# Debugging/Optimizationifdef DEBUGCFLAGS += -gCOPT = -O0elseCOPT = -Os #-DNDEBUG# _FORTIFY_SOURCE is a feature in gcc/glibc which is intended to provide extra# security for detecting buffer overflows. Some distros (Ubuntu at the very least)# have it enabled by default.## gcc already optimizes some printf calls to call puts and/or putchar. When# _FORTIFY_SOURCE is enabled and compiling with -O1 or greater, then some# printf calls will also be optimized to call __printf_chk (in glibc). Any# printfs which get redirected to __printf_chk are then no longer synchronized# with printfs that go through mp_printf.## In MicroPython, we don't want to use the runtime library's printf but rather# go through mp_printf, so that stdout is properly tied into streams, etc.# This means that we either need to turn off _FORTIFY_SOURCE or provide our# own implementation of __printf_chk. We've chosen to turn off _FORTIFY_SOURCE.# It should also be noted that the use of printf in MicroPython is typically# quite limited anyways (primarily for debug and some error reporting, etc# in the unix version).## Information about _FORTIFY_SOURCE seems to be rather scarce. The best I could# find was this: https://securityblog.redhat.com/2014/03/26/fortify-and-you/# Original patchset was introduced by# https://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html .## Turning off _FORTIFY_SOURCE is only required when compiling with -O1 or greaterCFLAGS += -U _FORTIFY_SOURCEendif# On OSX, 'gcc' is a symlink to clang unless a real gcc is installed.# The unix port of MicroPython on OSX must be compiled with clang,# while cross-compile ports require gcc, so we test here for OSX and# if necessary override the value of 'CC' set in py/mkenv.mkifeq ($(UNAME_S),Darwin)CC = clang# Use clang syntax for map fileLDFLAGS_ARCH = -Wl,-map,$@.mapelse# Use gcc syntax for map fileLDFLAGS_ARCH = -Wl,-Map=$@.map,--crefendifLDFLAGS = $(LDFLAGS_MOD) $(LDFLAGS_ARCH) -lm $(LDFLAGS_EXTRA)ifeq ($(MICROPY_FORCE_32BIT),1)# Note: you may need to install i386 versions of dependency packages,# starting with linux-libc-dev:i386ifeq ($(MICROPY_PY_FFI),1)ifeq ($(UNAME_S),Linux)CFLAGS_MOD += -I/usr/include/i686-linux-gnuendifendifendififeq ($(MICROPY_USE_READLINE),1)INC += -I$(MPTOP)/lib/mp-readlineCFLAGS_MOD += -DMICROPY_USE_READLINE=1LIB_SRC_C_EXTRA += mp-readline/readline.cendififeq ($(MICROPY_USE_READLINE),2)CFLAGS_MOD += -DMICROPY_USE_READLINE=2LDFLAGS_MOD += -lreadline# the following is needed for BSD#LDFLAGS_MOD += -ltermcapendififeq ($(MICROPY_PY_TIME),1)CFLAGS_MOD += -DMICROPY_PY_TIME=1SRC_MOD += modtime.cendififeq ($(MICROPY_PY_TERMIOS),1)CFLAGS_MOD += -DMICROPY_PY_TERMIOS=1SRC_MOD += modtermios.cendififeq ($(MICROPY_PY_SOCKET),1)CFLAGS_MOD += -DMICROPY_PY_SOCKET=1SRC_MOD += modsocket.cendififeq ($(MICROPY_PY_FFI),1)ifeq ($(MICROPY_STANDALONE),1)LIBFFI_CFLAGS_MOD := -I$(shell ls -1d $(MPTOP)/lib/libffi/build_dir/out/lib/libffi-*/include)ifeq ($(MICROPY_FORCE_32BIT),1)LIBFFI_LDFLAGS_MOD = $(MPTOP)/lib/libffi/build_dir/out/lib32/libffi.aelseLIBFFI_LDFLAGS_MOD = $(MPTOP)/lib/libffi/build_dir/out/lib/libffi.aendifelseLIBFFI_CFLAGS_MOD := $(shell pkg-config --cflags libffi)LIBFFI_LDFLAGS_MOD := $(shell pkg-config --libs libffi)endififeq ($(UNAME_S),Linux)LIBFFI_LDFLAGS_MOD += -ldlendifCFLAGS_MOD += $(LIBFFI_CFLAGS_MOD) -DMICROPY_PY_FFI=1LDFLAGS_MOD += $(LIBFFI_LDFLAGS_MOD)SRC_MOD += modffi.cendifMAIN_C = main.c# source filesSRC_C = $(addprefix ports/unix/,\$(MAIN_C) \gccollect.c \unix_mphal.c \input.c \file.c \modmachine.c \modos.c \moduselect.c \alloc.c \coverage.c \fatfs_port.c \$(SRC_MOD) \)LIB_SRC_C = $(addprefix lib/,\$(LIB_SRC_C_EXTRA) \utils/printf.c \timeutils/timeutils.c \)OBJ = $(PY_O)OBJ += $(addprefix $(BUILD)/, $(SRC_C:.c=.o))OBJ += $(addprefix $(BUILD)/, $(LIB_SRC_C:.c=.o))# List of sources for qstr extractionSRC_QSTR += $(SRC_C) $(LIB_SRC_C)# Append any auto-generated sources that are needed by sources listed in# SRC_QSTRSRC_QSTR_AUTO_DEPS +=include $(MPTOP)/py/mkrules.mk# Value of configure's --host= option (required for cross-compilation).# Deduce it from CROSS_COMPILE by default, but can be overridden.ifneq ($(CROSS_COMPILE),)CROSS_COMPILE_HOST = --host=$(patsubst %-,%,$(CROSS_COMPILE))elseCROSS_COMPILE_HOST =endifdeplibs: libffi axtls# install-exec-recursive & install-data-am targets are used to avoid building# docs and depending on makeinfolibffi:cd $(MPTOP)/lib/libffi; git clean -d -x -fcd $(MPTOP)/lib/libffi; ./autogen.shmkdir -p $(MPTOP)/lib/libffi/build_dir; cd $(MPTOP)/lib/libffi/build_dir; \../configure $(CROSS_COMPILE_HOST) --prefix=$$PWD/out CC="$(CC)" CXX="$(CXX)" LD="$(LD)"; \make install-exec-recursive; make -C include install-data-amaxtls: $(MPTOP)/lib/axtls/READMEcd $(MPTOP)/lib/axtls; cp config/upyconfig config/.configcd $(MPTOP)/lib/axtls; make oldconfig -Bcd $(MPTOP)/lib/axtls; make cleancd $(MPTOP)/lib/axtls; make all CC="$(CC)" LD="$(LD)"$(MPTOP)/lib/axtls/README:@echo "You cloned without --recursive, fetching submodules for you."(cd $(MPTOP); git submodule update --init --recursive)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。