⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 config-linux.makefile

📁 efsl-0.3.6.zip
💻 MAKEFILE
字号:
###################################################################################                      EFSL - Embedded Filesystems Library                 ######                      -----------------------------------                 ######                                                                          #################################################################################### This is the configuration file for EFSL. This file will enable your to build# the library if you have GNU make, or compatible, on your system.# If you do not have a make utility on your system, or it cannot be used in this# fashion (when using IDE's, like MSVC or Code composer), please refer to the# documentation on how to build EFSL. It is possible to build EFSL with any C# compiler although it will be a bit more work.# C compiler# ----------## Here you select with what binary the sourcefiles must be compiledCC=gcc# AR archiver# -----------## This variable controls what archiver is to be used. This utility is optional,# if you don't have GNU make, you probably need to link differently as well.AR=ar# C compiler options# ------------------## Here you can configure several options about the compilation.DEBUGGING=-g3VERIFY=-Wall -pedantic -ansiARCHITECTURE=-march=i386OPTIMISE=-O0GCFLAGS=$(DEBUGGING) $(VERIFY) $(ARCHITECTURE) $(OPTIMISE)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -