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

📄 makefile.uclibc

📁 一个GNU的C语言编译器源代码,源代码过万行.
💻 UCLIBC
字号:
## Tiny C Compiler Makefile for linking to uClibc## Get the latest uClibc, compile it and install it; then# use this makefile to build tcc## NOTE: you must enable floating point (HAS_FLOATING_POINT = true) and# C99 math (DO_C99_MATH = true) in the uClibc config file.## If you use the old uClibc 0.9.9 you also need to disable its# one-call optimization for syscalls (UNIFIED_SYSCALL = false)#UCLIBC=/usr/i386-linux-uclibcCC=$(UCLIBC)/bin/gccLDD=$(UCLIBC)/bin/lddSTRIP=$(UCLIBC)/bin/stripCFLAGS=-O2 -Wall -m386 -malign-functions=0 -fomit-frame-pointer -DTCC_UCLIBCLFLAGS=-Wl,-warn-common -ldl -lm# rulesall: tcctcc.o: tcc.c	$(CC) -c $(CFLAGS) $< -o $@	tcc_g: tcc.o	$(CC) $(CFLAGS) $(LFLAGS) $< -o $@	tcc: tcc_g	$(STRIP) -s -R .comment -R .note -o $@ $<	@echo ""	@ls -l $@	@echo ""	@size $@	@echo ""	@$(LDD) $@# --- the end ---

⌨️ 快捷键说明

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