?? makefile.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 + -