x-djgpp
来自「这是一个linux 嵌入式系统中很重要的GCC编译器程序」· 代码 · 共 25 行
TXT
25 行
# translate the version string, so it can be used on DJGPP, where only# one dot in filename is allowed# to avoid recursion when redefining $(version)_version:=$(version)__version=$(subst ., ,$(_version))version=$(word 1,$(__version))$(word 2,$(__version)).$(word 3,$(__version))SYSTEM_HEADER_DIR=$(DJDIR)/includeX_CPPFLAGS=-DSTANDARD_INCLUDE_DIR=\"\$$DJDIR/include\" \ -DSTANDARD_INCLUDE_COMPONENT=\"\"# when building a native compiler for DJGPP, make the target_alias# a shorter name, since otherwise it will produce some problems, when# using the same gcc once with long filenames and once with short (8+3)# filenamesifeq ($(findstring -pc-msdosdjgpp,$(target_alias)),-pc-msdosdjgpp)target_alias=djgppendif# on DJGPP the 'ln -s' does not work correctlyLN = cp -pLN_S = cp -p
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?