Rules.mak 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632
  1. # Rules.make for uClibc
  2. #
  3. # Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  4. #
  5. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. #
  7. # check for proper make version
  8. ifneq ($(findstring 3.7,$(MAKE_VERSION)),)
  9. $(error Your make is too old $(MAKE_VERSION). Go get at least 3.80)
  10. endif
  11. #-----------------------------------------------------------
  12. # This file contains rules which are shared between multiple
  13. # Makefiles. All normal configuration options live in the
  14. # file named ".config". Don't mess with this file unless
  15. # you know what you are doing.
  16. #-----------------------------------------------------------
  17. # If you are running a cross compiler, you will want to set
  18. # 'CROSS' to something more interesting ... Target
  19. # architecture is determined by asking the CC compiler what
  20. # arch it compiles things for, so unless your compiler is
  21. # broken, you should not need to specify TARGET_ARCH.
  22. #
  23. # Most people will set this stuff on the command line, i.e.
  24. # make CROSS=arm-linux-
  25. # will build uClibc for 'arm'.
  26. ifndef CROSS
  27. CROSS=
  28. endif
  29. CC = $(CROSS)gcc
  30. AR = $(CROSS)ar
  31. LD = $(CROSS)ld
  32. NM = $(CROSS)nm
  33. STRIPTOOL = $(CROSS)strip
  34. INSTALL = install
  35. LN = ln
  36. RM = rm -f
  37. TAR = tar
  38. STRIP_FLAGS ?= -x -R .note -R .comment
  39. # Select the compiler needed to build binaries for your development system
  40. HOSTCC = gcc
  41. BUILD_CFLAGS = -O2 -Wall
  42. export ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun.*/sparc/ -e s/sparc.*/sparc/ \
  43. -e s/arm.*/arm/ -e s/sa110/arm/ -e s/sh.*/sh/ \
  44. -e s/s390x/s390/ -e s/parisc.*/hppa/ \
  45. -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
  46. -e s/xtensa.*/xtensa/ )
  47. #---------------------------------------------------------
  48. # Nothing beyond this point should ever be touched by mere
  49. # mortals. Unless you hang out with the gods, you should
  50. # probably leave all this stuff alone.
  51. # Pull in the user's uClibc configuration
  52. ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
  53. -include $(top_builddir).config
  54. endif
  55. # Make certain these contain a final "/", but no "//"s.
  56. TARGET_ARCH:=$(shell grep -s '^TARGET_ARCH' $(top_builddir)/.config | sed -e 's/^TARGET_ARCH=//' -e 's/"//g')
  57. TARGET_ARCH:=$(strip $(subst ",, $(strip $(TARGET_ARCH))))
  58. TARGET_SUBARCH:=$(shell grep -s '^TARGET_SUBARCH' $(top_builddir)/.config | sed -e 's/^TARGET_SUBARCH=//' -e 's/"//g')
  59. TARGET_SUBARCH:=$(strip $(subst ",, $(strip $(TARGET_SUBARCH))))
  60. RUNTIME_PREFIX:=$(strip $(subst //,/, $(subst ,/, $(subst ",, $(strip $(RUNTIME_PREFIX))))))
  61. DEVEL_PREFIX:=$(strip $(subst //,/, $(subst ,/, $(subst ",, $(strip $(DEVEL_PREFIX))))))
  62. KERNEL_HEADERS:=$(strip $(subst //,/, $(subst ,/, $(subst ",, $(strip $(KERNEL_HEADERS))))))
  63. export RUNTIME_PREFIX DEVEL_PREFIX KERNEL_HEADERS
  64. # Now config hard core
  65. MAJOR_VERSION := 0
  66. MINOR_VERSION := 9
  67. SUBLEVEL := 29
  68. EXTRAVERSION :=
  69. VERSION := $(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL)
  70. ifneq ($(EXTRAVERSION),)
  71. VERSION := $(VERSION)$(EXTRAVERSION)
  72. endif
  73. # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
  74. LC_ALL := C
  75. export MAJOR_VERSION MINOR_VERSION SUBLEVEL VERSION LC_ALL
  76. LIBC := libc
  77. SHARED_MAJORNAME := $(LIBC).so.$(MAJOR_VERSION)
  78. ifneq ($(findstring $(TARGET_ARCH) , hppa64 ia64 mips64 powerpc64 s390x sparc64 x86_64 ),)
  79. UCLIBC_LDSO_NAME := ld64-uClibc
  80. else
  81. UCLIBC_LDSO_NAME := ld-uClibc
  82. endif
  83. UCLIBC_LDSO := $(UCLIBC_LDSO_NAME).so.$(MAJOR_VERSION)
  84. NONSHARED_LIBNAME := uclibc_nonshared.a
  85. libc := $(top_builddir)lib/$(SHARED_MAJORNAME)
  86. libc.depend := $(top_builddir)lib/$(SHARED_MAJORNAME:.$(MAJOR_VERSION)=)
  87. interp := $(top_builddir)lib/interp.os
  88. ldso := $(top_builddir)lib/$(UCLIBC_LDSO)
  89. headers_dep := $(top_builddir)include/bits/sysnum.h
  90. sub_headers := $(headers_dep)
  91. #LIBS :=$(interp) -L$(top_builddir)lib -lc
  92. LIBS := $(interp) -L$(top_builddir)lib $(libc:.$(MAJOR_VERSION)=)
  93. # Make sure DESTDIR and PREFIX can be used to install
  94. # PREFIX is a uClibcism while DESTDIR is a common GNUism
  95. ifndef PREFIX
  96. PREFIX = $(DESTDIR)
  97. endif
  98. ifneq ($(HAVE_SHARED),y)
  99. libc :=
  100. interp :=
  101. ldso :=
  102. endif
  103. comma:=,
  104. space:= #
  105. ifndef CROSS
  106. CROSS=$(subst ",, $(strip $(CROSS_COMPILER_PREFIX)))
  107. endif
  108. # A nifty macro to make testing gcc features easier
  109. check_gcc=$(shell \
  110. if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
  111. then echo "$(1)"; else echo "$(2)"; fi)
  112. check_as=$(shell \
  113. if $(CC) -Wa,$(1) -Wa,-Z -c -o /dev/null -xassembler /dev/null > /dev/null 2>&1; \
  114. then echo "-Wa,$(1)"; fi)
  115. check_ld=$(shell \
  116. if $(LD) $(1) -o /dev/null -b binary /dev/null > /dev/null 2>&1; \
  117. then echo "$(1)"; fi)
  118. ARFLAGS:=cr
  119. # Flags in OPTIMIZATION are used only for non-debug builds
  120. OPTIMIZATION:=
  121. # Use '-Os' optimization if available, else use -O2, allow Config to override
  122. OPTIMIZATION+=$(call check_gcc,-Os,-O2)
  123. # Use the gcc 3.4 -funit-at-a-time optimization when available
  124. OPTIMIZATION+=$(call check_gcc,-funit-at-a-time,)
  125. GCC_MAJOR_VER?=$(shell $(CC) -dumpversion | cut -d . -f 1)
  126. #GCC_MINOR_VER?=$(shell $(CC) -dumpversion | cut -d . -f 2)
  127. ifeq ($(GCC_MAJOR_VER),4)
  128. # shrinks code, results are from 4.0.2
  129. # 0.36%
  130. OPTIMIZATION+=$(call check_gcc,-fno-tree-loop-optimize,)
  131. # 0.34%
  132. OPTIMIZATION+=$(call check_gcc,-fno-tree-dominator-opts,)
  133. # 0.1%
  134. OPTIMIZATION+=$(call check_gcc,-fno-strength-reduce,)
  135. endif
  136. CPU_CFLAGS-$(UCLIBC_FORMAT_SHARED_FLAT) += -mid-shared-library
  137. CPU_CFLAGS-$(UCLIBC_FORMAT_FLAT_SEP_DATA) += -msep-data
  138. PICFLAG-y := -fPIC
  139. PICFLAG-$(UCLIBC_FORMAT_FDPIC_ELF) := -mfdpic
  140. PICFLAG := $(PICFLAG-y)
  141. PIEFLAG_NAME:=-fPIE
  142. # Some nice CPU specific optimizations
  143. ifeq ($(TARGET_ARCH),i386)
  144. OPTIMIZATION+=$(call check_gcc,-fomit-frame-pointer,)
  145. # NB: this may make SSE insns segfault!
  146. # -O1 -march=pentium3, -Os -msse etc are known to be affected.
  147. # TODO: conditionally bump to 4
  148. # (see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13685)
  149. OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,)
  150. # Choice of alignment (please document why!)
  151. # -falign-labels: in-line labels
  152. # (reachable by normal code flow, aligning will insert nops
  153. # which will be executed - may even make things slower)
  154. # -falign-jumps: reachable only by a jump
  155. # Generic: no alignment at all (smallest code)
  156. GCC_FALIGN=$(call check_gcc,-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1,-malign-jumps=1 -malign-loops=1)
  157. ifeq ($(CONFIG_K7),y)
  158. # Align functions to four bytes, use default for jumps and loops (why?)
  159. GCC_FALIGN=$(call check_gcc,-falign-functions=4 -falign-labels=1,-malign-functions=4)
  160. endif
  161. ifeq ($(CONFIG_CRUSOE),y)
  162. # Use compiler's default for functions, jumps and loops (why?)
  163. GCC_FALIGN=$(call check_gcc,-falign-functions=0 -falign-labels=1,-malign-functions=0)
  164. endif
  165. ifeq ($(CONFIG_CYRIXIII),y)
  166. # Use compiler's default for functions, jumps and loops (why?)
  167. GCC_FALIGN=$(call check_gcc,-falign-functions=0 -falign-labels=1,-malign-functions=0)
  168. endif
  169. OPTIMIZATION+=$(GCC_FALIGN)
  170. # Putting each function and data object into its own section
  171. # allows for kbytes of less text if users link against static uclibc
  172. # using ld --gc-sections.
  173. # ld 2.18 can't do that (yet?) for shared libraries, so we itself
  174. # do not use --gc-sections at shared lib link time.
  175. # However, in combination with sections being sorted by alignment
  176. # it does result in much reduced padding:
  177. # text data bss dec hex
  178. # 235319 1472 5992 242783 3b45f old.so
  179. # 234104 1472 5980 241556 3af94 new.so
  180. # Without -ffunction-sections, all functions will get aligned
  181. # to 4 byte boundary by as/ld. This is arguably a bug in as.
  182. # It specifies 4 byte align for .text even if not told to do so:
  183. # Idx Name Size VMA LMA File off Algn
  184. # 0 .text xxxxxxxx 00000000 00000000 xxxxxxxx 2**2 <===!
  185. CPU_CFLAGS-y += $(call check_gcc,-ffunction-sections -fdata-sections,)
  186. ifneq ($(call check_ld,--sort-common,),)
  187. CPU_LDFLAGS-y += -Wl,--sort-common
  188. endif
  189. ifneq ($(call check_ld,--sort-section alignment),)
  190. CPU_LDFLAGS-y += -Wl,--sort-section,alignment
  191. endif
  192. CPU_LDFLAGS-y+=-m32
  193. CPU_CFLAGS-y+=-m32
  194. CPU_CFLAGS-$(CONFIG_386)+=-march=i386
  195. CPU_CFLAGS-$(CONFIG_486)+=-march=i486
  196. CPU_CFLAGS-$(CONFIG_ELAN)+=-march=i486
  197. CPU_CFLAGS-$(CONFIG_586)+=-march=i586
  198. CPU_CFLAGS-$(CONFIG_586MMX)+=$(call check_gcc,-march=pentium-mmx,-march=i586)
  199. CPU_CFLAGS-$(CONFIG_686)+=-march=i686
  200. CPU_CFLAGS-$(CONFIG_PENTIUMII)+=$(call check_gcc,-march=pentium2,-march=i686)
  201. CPU_CFLAGS-$(CONFIG_PENTIUMIII)+=$(call check_gcc,-march=pentium3,-march=i686)
  202. CPU_CFLAGS-$(CONFIG_PENTIUM4)+=$(call check_gcc,-march=pentium4,-march=i686)
  203. CPU_CFLAGS-$(CONFIG_K6)+=$(call check_gcc,-march=k6,-march=i586)
  204. CPU_CFLAGS-$(CONFIG_K7)+=$(call check_gcc,-march=athlon,-march=i686)
  205. CPU_CFLAGS-$(CONFIG_CRUSOE)+=-march=i686
  206. CPU_CFLAGS-$(CONFIG_WINCHIPC6)+=$(call check_gcc,-march=winchip-c6,-march=i586)
  207. CPU_CFLAGS-$(CONFIG_WINCHIP2)+=$(call check_gcc,-march=winchip2,-march=i586)
  208. CPU_CFLAGS-$(CONFIG_CYRIXIII)+=$(call check_gcc,-march=c3,-march=i486)
  209. CPU_CFLAGS-$(CONFIG_NEHEMIAH)+=$(call check_gcc,-march=c3-2,-march=i686)
  210. endif
  211. ifeq ($(TARGET_ARCH),sparc)
  212. CPU_CFLAGS-$(CONFIG_SPARC_V7)+=-mcpu=v7
  213. CPU_CFLAGS-$(CONFIG_SPARC_V8)+=-mcpu=v8
  214. CPU_CFLAGS-$(CONFIG_SPARC_V9)+=-mcpu=v9
  215. CPU_CFLAGS-$(CONFIG_SPARC_V9B)+=$(call check_gcc,-mcpu=v9b,-mcpu=ultrasparc)
  216. endif
  217. ifeq ($(TARGET_ARCH),arm)
  218. OPTIMIZATION+=-fstrict-aliasing
  219. CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN)+=-Wl,-EL
  220. CPU_LDFLAGS-$(ARCH_BIG_ENDIAN)+=-Wl,-EB
  221. CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-mlittle-endian
  222. CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mbig-endian
  223. CPU_CFLAGS-$(CONFIG_GENERIC_ARM)+=
  224. CPU_CFLAGS-$(CONFIG_ARM610)+=-mtune=arm610 -march=armv3
  225. CPU_CFLAGS-$(CONFIG_ARM710)+=-mtune=arm710 -march=armv3
  226. CPU_CFLAGS-$(CONFIG_ARM7TDMI)+=-mtune=arm7tdmi -march=armv4t
  227. CPU_CFLAGS-$(CONFIG_ARM720T)+=-mtune=arm7tdmi -march=armv4t
  228. CPU_CFLAGS-$(CONFIG_ARM920T)+=-mtune=arm9tdmi -march=armv4t
  229. CPU_CFLAGS-$(CONFIG_ARM922T)+=-mtune=arm9tdmi -march=armv4t
  230. CPU_CFLAGS-$(CONFIG_ARM926T)+=-mtune=arm9tdmi -march=armv5t
  231. CPU_CFLAGS-$(CONFIG_ARM10T)+=-mtune=arm10tdmi -march=armv5t
  232. CPU_CFLAGS-$(CONFIG_ARM1136JF_S)+=-mtune=arm1136jf-s -march=armv6
  233. CPU_CFLAGS-$(CONFIG_ARM1176JZ_S)+=-mtune=arm1176jz-s -march=armv6
  234. CPU_CFLAGS-$(CONFIG_ARM1176JZF_S)+=-mtune=arm1176jzf-s -march=armv6
  235. CPU_CFLAGS-$(CONFIG_ARM_SA110)+=-mtune=strongarm110 -march=armv4
  236. CPU_CFLAGS-$(CONFIG_ARM_SA1100)+=-mtune=strongarm1100 -march=armv4
  237. CPU_CFLAGS-$(CONFIG_ARM_XSCALE)+=$(call check_gcc,-mtune=xscale,-mtune=strongarm110)
  238. CPU_CFLAGS-$(CONFIG_ARM_XSCALE)+=-march=armv5te -Wa,-mcpu=xscale
  239. CPU_CFLAGS-$(CONFIG_ARM_IWMMXT)+=-march=iwmmxt -Wa,-mcpu=iwmmxt -mabi=iwmmxt
  240. CPU_CFLAGS-$(CONFIG_ARM_CORTEX_M3)+=-mcpu=cortex-m3 -mthumb
  241. CPU_CFLAGS-$(CONFIG_ARM_CORTEX_M1)+=-mcpu=cortex-m1 -mthumb
  242. endif
  243. ifeq ($(TARGET_ARCH),mips)
  244. CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN)+=-Wl,-EL
  245. CPU_LDFLAGS-$(ARCH_BIG_ENDIAN)+=-Wl,-EB
  246. CPU_CFLAGS-$(CONFIG_MIPS_ISA_1)+=-mips1
  247. CPU_CFLAGS-$(CONFIG_MIPS_ISA_2)+=-mips2 -mtune=mips2
  248. CPU_CFLAGS-$(CONFIG_MIPS_ISA_3)+=-mips3 -mtune=mips3
  249. CPU_CFLAGS-$(CONFIG_MIPS_ISA_4)+=-mips4 -mtune=mips4
  250. CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS32)+=-mips32 -mtune=mips32
  251. CPU_CFLAGS-$(CONFIG_MIPS_ISA_MIPS64)+=-mips64 -mtune=mips32
  252. ifeq ($(strip $(ARCH_BIG_ENDIAN)),y)
  253. CPU_LDFLAGS-$(CONFIG_MIPS_N64_ABI)+=-Wl,-melf64btsmip
  254. CPU_LDFLAGS-$(CONFIG_MIPS_O32_ABI)+=-Wl,-melf32btsmip
  255. endif
  256. ifeq ($(strip $(ARCH_LITTLE_ENDIAN)),y)
  257. CPU_LDFLAGS-$(CONFIG_MIPS_N64_ABI)+=-Wl,-melf64ltsmip
  258. CPU_LDFLAGS-$(CONFIG_MIPS_O32_ABI)+=-Wl,-melf32ltsmip
  259. endif
  260. CPU_CFLAGS-$(CONFIG_MIPS_N64_ABI)+=-mabi=64
  261. CPU_CFLAGS-$(CONFIG_MIPS_O32_ABI)+=-mabi=32
  262. CPU_CFLAGS-$(CONFIG_MIPS_N32_ABI)+=-mabi=n32
  263. endif
  264. ifeq ($(TARGET_ARCH),nios)
  265. CPU_LDFLAGS-y+=-Wl,-m32
  266. CPU_CFLAGS-y+=-Wl,-m32
  267. endif
  268. ifeq ($(TARGET_ARCH),sh)
  269. OPTIMIZATION+=-fstrict-aliasing
  270. OPTIMIZATION+= $(call check_gcc,-mprefergot,)
  271. CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN)+=-Wl,-EL
  272. CPU_LDFLAGS-$(ARCH_BIG_ENDIAN)+=-Wl,-EB
  273. CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN)+=-ml
  274. CPU_CFLAGS-$(ARCH_BIG_ENDIAN)+=-mb
  275. CPU_CFLAGS-$(CONFIG_SH2)+=-m2
  276. CPU_CFLAGS-$(CONFIG_SH3)+=-m3
  277. ifeq ($(UCLIBC_HAS_FLOATS),y)
  278. CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a
  279. CPU_CFLAGS-$(CONFIG_SH4)+=-m4
  280. else
  281. CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a-nofpu
  282. CPU_CFLAGS-$(CONFIG_SH4)+=-m4-nofpu
  283. endif
  284. endif
  285. ifeq ($(TARGET_ARCH),sh64)
  286. OPTIMIZATION+=-fstrict-aliasing
  287. CPU_LDFLAGS-$(ARCH_LITTLE_ENDIAN):=-Wl,-EL
  288. CPU_LDFLAGS-$(ARCH_BIG_ENDIAN):=-Wl,-EB
  289. CPU_CFLAGS-$(ARCH_LITTLE_ENDIAN):=-ml
  290. CPU_CFLAGS-$(ARCH_BIG_ENDIAN):=-mb
  291. CPU_CFLAGS-$(CONFIG_SH5)+=-m5-32media
  292. endif
  293. ifeq ($(TARGET_ARCH),h8300)
  294. SYMBOL_PREFIX=_
  295. CPU_LDFLAGS-$(CONFIG_H8300H)+= -Wl,-ms8300h
  296. CPU_LDFLAGS-$(CONFIG_H8S) += -Wl,-ms8300s
  297. CPU_CFLAGS-$(CONFIG_H8300H) += -mh -mint32
  298. CPU_CFLAGS-$(CONFIG_H8S) += -ms -mint32
  299. endif
  300. ifeq ($(TARGET_ARCH),cris)
  301. CPU_LDFLAGS-$(CONFIG_CRIS)+=-Wl,-mcrislinux
  302. CPU_LDFLAGS-$(CONFIG_CRISV32)+=-Wl,-mcrislinux
  303. CPU_CFLAGS-$(CONFIG_CRIS)+=-mlinux
  304. PICFLAG:=-fpic
  305. PIEFLAG_NAME:=-fpie
  306. endif
  307. ifeq ($(TARGET_ARCH),m68k)
  308. # -fPIC is only supported for 68020 and above. It is not supported
  309. # for 68000, 68010, or Coldfire.
  310. PICFLAG:=-fpic
  311. PIEFLAG_NAME:=-fpie
  312. endif
  313. ifeq ($(TARGET_ARCH),powerpc)
  314. # PowerPC can hold 8192 entries in its GOT with -fpic which is more than
  315. # enough. Therefore use -fpic which will reduce code size and generates
  316. # faster code.
  317. PICFLAG:=-fpic
  318. PIEFLAG_NAME:=-fpie
  319. PPC_HAS_REL16:=$(shell echo -e "\t.text\n\taddis 11,30,_GLOBAL_OFFSET_TABLE_-.@ha" | $(CC) -c -x assembler -o /dev/null - 2> /dev/null && echo -n y || echo -n n)
  320. CPU_CFLAGS-$(PPC_HAS_REL16)+= -DHAVE_ASM_PPC_REL16
  321. CPU_CFLAGS-$(CONFIG_E500) += "-D__NO_MATH_INLINES -D__NO_LONG_DOUBLE_MATH"
  322. endif
  323. ifeq ($(TARGET_ARCH),bfin)
  324. SYMBOL_PREFIX=_
  325. ifeq ($(UCLIBC_FORMAT_FDPIC_ELF),y)
  326. CPU_CFLAGS-y:=-mfdpic
  327. CPU_LDFLAGS-y += -Wl,-melf32bfinfd
  328. PICFLAG:=-fpic
  329. PIEFLAG_NAME:=-fpie
  330. endif
  331. ifeq ($(UCLIBC_FORMAT_SHARED_FLAT),y)
  332. PICFLAG := -mleaf-id-shared-library
  333. endif
  334. endif
  335. ifeq ($(TARGET_ARCH),frv)
  336. CPU_LDFLAGS-$(CONFIG_FRV)+=-Wl,-melf32frvfd
  337. # Using -pie causes the program to have an interpreter, which is
  338. # forbidden, so we must make do with -shared. Unfortunately,
  339. # -shared by itself would get us global function descriptors
  340. # and calls through PLTs, dynamic resolution of symbols, etc,
  341. # which would break as well, but -Bsymbolic comes to the rescue.
  342. export LDPIEFLAG:=-Wl,-shared -Wl,-Bsymbolic
  343. UCLIBC_LDSO=ld.so.1
  344. endif
  345. ifeq ($(strip $(TARGET_ARCH)),avr32)
  346. CPU_CFLAGS-$(CONFIG_AVR32_AP7) += -march=ap
  347. CPU_CFLAGS-$(CONFIG_LINKRELAX) += -mrelax
  348. CPU_LDFLAGS-$(CONFIG_LINKRELAX) += --relax
  349. endif
  350. ifeq ($(TARGET_ARCH),i960)
  351. SYMBOL_PREFIX=_
  352. endif
  353. ifeq ($(TARGET_ARCH),microblaze)
  354. SYMBOL_PREFIX=_
  355. endif
  356. ifeq ($(TARGET_ARCH),v850)
  357. SYMBOL_PREFIX=_
  358. endif
  359. # Keep the check_gcc from being needlessly executed
  360. ifndef PIEFLAG
  361. ifneq ($(UCLIBC_BUILD_PIE),y)
  362. export PIEFLAG:=
  363. else
  364. export PIEFLAG:=$(call check_gcc,$(PIEFLAG_NAME),$(PICFLAG))
  365. endif
  366. endif
  367. # We need to keep track of both the CC PIE flag (above) as
  368. # well as the LD PIE flag (below) because we can't rely on
  369. # gcc passing -pie if we used -fPIE
  370. ifndef LDPIEFLAG
  371. ifneq ($(UCLIBC_BUILD_PIE),y)
  372. export LDPIEFLAG:=
  373. else
  374. export LDPIEFLAG:=$(shell $(LD) --help 2>/dev/null | grep -q -- -pie && echo "-Wl,-pie")
  375. endif
  376. endif
  377. # Check for AS_NEEDED support in linker script (binutils>=2.16.1 has it)
  378. ifndef ASNEEDED
  379. export ASNEEDED:=$(shell $(LD) --help 2>/dev/null | grep -q -- --as-needed && echo "AS_NEEDED ( $(UCLIBC_LDSO) )" || echo "$(UCLIBC_LDSO)")
  380. endif
  381. # Add a bunch of extra pedantic annoyingly strict checks
  382. XWARNINGS=$(subst ",, $(strip $(WARNINGS))) -Wstrict-prototypes -fno-strict-aliasing
  383. ifeq ($(EXTRA_WARNINGS),y)
  384. XWARNINGS+=-Wnested-externs -Wshadow -Wmissing-noreturn -Wmissing-format-attribute -Wformat=2
  385. XWARNINGS+=-Wmissing-prototypes -Wmissing-declarations
  386. XWARNINGS+=-Wnonnull -Wundef
  387. # works only w/ gcc-3.4 and up, can't be checked for gcc-3.x w/ check_gcc()
  388. #XWARNINGS+=-Wdeclaration-after-statement
  389. endif
  390. XARCH_CFLAGS=$(subst ",, $(strip $(ARCH_CFLAGS)))
  391. CPU_CFLAGS=$(subst ",, $(strip $(CPU_CFLAGS-y)))
  392. SSP_DISABLE_FLAGS ?= $(call check_gcc,-fno-stack-protector,)
  393. ifeq ($(UCLIBC_BUILD_SSP),y)
  394. SSP_CFLAGS := $(call check_gcc,-fno-stack-protector-all,)
  395. SSP_CFLAGS += $(call check_gcc,-fstack-protector,)
  396. SSP_ALL_CFLAGS ?= $(call check_gcc,-fstack-protector-all,)
  397. else
  398. SSP_CFLAGS := $(SSP_DISABLE_FLAGS)
  399. endif
  400. NOSTDLIB_CFLAGS:=$(call check_gcc,-nostdlib,)
  401. # Some nice CFLAGS to work with
  402. CFLAGS := -include $(top_builddir)include/libc-symbols.h \
  403. $(XWARNINGS) $(CPU_CFLAGS) $(SSP_CFLAGS) \
  404. -fno-builtin -nostdinc -I$(top_builddir)include -I. \
  405. -I$(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)
  406. ifneq ($(strip $(UCLIBC_EXTRA_CFLAGS)),"")
  407. CFLAGS += $(subst ",, $(UCLIBC_EXTRA_CFLAGS))
  408. endif
  409. LDADD_LIBFLOAT=
  410. ifeq ($(UCLIBC_HAS_SOFT_FLOAT),y)
  411. # If -msoft-float isn't supported, we want an error anyway.
  412. # Hmm... might need to revisit this for arm since it has 2 different
  413. # soft float encodings.
  414. ifneq ($(TARGET_ARCH),nios)
  415. ifneq ($(TARGET_ARCH),nios2)
  416. CFLAGS += -msoft-float
  417. endif
  418. endif
  419. ifeq ($(TARGET_ARCH),arm)
  420. # No longer needed with current toolchains, but leave it here for now.
  421. # If anyone is actually still using gcc 2.95 (say), they can uncomment it.
  422. # LDADD_LIBFLOAT=-lfloat
  423. endif
  424. endif
  425. # Please let us see private headers' parts
  426. CFLAGS += -DUCLIBC_INTERNAL
  427. # We need this to be checked within libc-symbols.h
  428. ifneq ($(HAVE_SHARED),y)
  429. CFLAGS += -DSTATIC
  430. endif
  431. CFLAGS += $(call check_gcc,-std=gnu99,)
  432. LDFLAGS_NOSTRIP:=$(CPU_LDFLAGS-y) -Wl,-shared \
  433. -Wl,--warn-common -Wl,--warn-once -Wl,-z,combreloc
  434. # binutils-2.16.1 warns about ignored sections, 2.16.91.0.3 and newer are ok
  435. #LDFLAGS_NOSTRIP+=$(call check_ld,--gc-sections)
  436. ifeq ($(UCLIBC_BUILD_RELRO),y)
  437. LDFLAGS_NOSTRIP+=-Wl,-z,relro
  438. endif
  439. ifeq ($(UCLIBC_BUILD_NOW),y)
  440. LDFLAGS_NOSTRIP+=-Wl,-z,now
  441. endif
  442. ifeq ($(LDSO_GNU_HASH_SUPPORT),y)
  443. # Be sure that binutils support it
  444. LDFLAGS_GNUHASH:=$(call check_ld,--hash-style=gnu)
  445. ifeq ($(LDFLAGS_GNUHASH),)
  446. $(error Your binutils don't support --hash-style option, while you want to use it)
  447. else
  448. LDFLAGS_NOSTRIP += -Wl,$(LDFLAGS_GNUHASH)
  449. endif
  450. endif
  451. LDFLAGS:=$(LDFLAGS_NOSTRIP) -Wl,-z,defs
  452. ifeq ($(DODEBUG),y)
  453. #CFLAGS += -g3
  454. CFLAGS += -O0 -g3
  455. else
  456. CFLAGS += $(OPTIMIZATION) $(XARCH_CFLAGS)
  457. endif
  458. ifeq ($(DOSTRIP),y)
  459. LDFLAGS += -Wl,-s
  460. else
  461. STRIPTOOL := true -Stripping_disabled
  462. endif
  463. ifeq ($(DOMULTI),y)
  464. # we try to compile all sources at once into an object (IMA), but
  465. # gcc-3.3.x does not support it
  466. # gcc-3.4.x supports it, but does not need and support --combine. though fails on many sources
  467. # gcc-4.0.x supports it, supports the --combine flag, but does not need it
  468. # gcc-4.1(200506xx) supports it, but needs the --combine flag, else libs are useless
  469. ifeq ($(GCC_MAJOR_VER),3)
  470. DOMULTI:=n
  471. else
  472. CFLAGS+=$(call check_gcc,--combine,)
  473. endif
  474. else
  475. DOMULTI:=n
  476. endif
  477. ifneq ($(strip $(UCLIBC_EXTRA_LDFLAGS)),"")
  478. LDFLAGS += $(subst ",, $(UCLIBC_EXTRA_LDFLAGS))
  479. endif
  480. ifeq ($(UCLIBC_HAS_THREADS),y)
  481. ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
  482. PTNAME := nptl
  483. else
  484. ifeq ($(LINUXTHREADS_OLD),y)
  485. PTNAME := linuxthreads.old
  486. else
  487. PTNAME := linuxthreads
  488. endif
  489. endif
  490. PTDIR := $(top_builddir)libpthread/$(PTNAME)
  491. # set up system dependencies include dirs (NOTE: order matters!)
  492. ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
  493. PTINC:= -I$(PTDIR) \
  494. -I$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH) \
  495. -I$(PTDIR)/sysdeps/$(TARGET_ARCH) \
  496. -I$(PTDIR)/sysdeps/unix/sysv/linux \
  497. -I$(PTDIR)/sysdeps/pthread \
  498. -I$(PTDIR)/sysdeps/pthread/bits \
  499. -I$(PTDIR)/sysdeps/generic \
  500. -I$(top_srcdir)ldso/ldso/$(TARGET_ARCH) \
  501. -I$(top_srcdir)ldso/include
  502. #
  503. # Test for TLS if NPTL support was selected.
  504. #
  505. GCC_HAS_TLS=$(shell \
  506. echo "extern __thread int foo;" | $(CC) -o /dev/null -S -xc - 2>&1)
  507. ifneq ($(GCC_HAS_TLS),)
  508. gcc_tls_test_fail:
  509. @echo "####";
  510. @echo "#### Your compiler does not support TLS and you are trying to build uClibc";
  511. @echo "#### with NPTL support. Upgrade your binutils and gcc to versions which";
  512. @echo "#### support TLS for your architecture. Do not contact uClibc maintainers";
  513. @echo "#### about this problem.";
  514. @echo "####";
  515. @echo "#### Exiting...";
  516. @echo "####";
  517. @exit 1;
  518. endif
  519. else
  520. PTINC := \
  521. -I$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH) \
  522. -I$(PTDIR)/sysdeps/$(TARGET_ARCH) \
  523. -I$(PTDIR)/sysdeps/unix/sysv/linux \
  524. -I$(PTDIR)/sysdeps/pthread \
  525. -I$(PTDIR) \
  526. -I$(top_builddir)libpthread
  527. endif
  528. CFLAGS+=$(PTINC)
  529. else
  530. PTNAME :=
  531. PTINC :=
  532. endif
  533. CFLAGS += -I$(KERNEL_HEADERS)
  534. #CFLAGS += -iwithprefix include-fixed -iwithprefix include
  535. CC_IPREFIX:=$(shell $(CC) --print-file-name=include)
  536. CFLAGS += -I$(dir $(CC_IPREFIX))/include-fixed -I$(CC_IPREFIX)
  537. ifneq ($(DOASSERTS),y)
  538. CFLAGS+=-DNDEBUG
  539. endif
  540. ifeq ($(SYMBOL_PREFIX),_)
  541. CFLAGS+=-D__UCLIBC_UNDERSCORES__
  542. endif
  543. # Keep the check_as from being needlessly executed
  544. ifndef ASFLAGS_NOEXEC
  545. ifeq ($(UCLIBC_BUILD_NOEXECSTACK),y)
  546. export ASFLAGS_NOEXEC := $(call check_as,--noexecstack)
  547. else
  548. export ASFLAGS_NOEXEC :=
  549. endif
  550. endif
  551. ASFLAGS = $(ASFLAGS_NOEXEC)
  552. LIBGCC_CFLAGS ?= $(CFLAGS) $(CPU_CFLAGS-y)
  553. LIBGCC:=$(shell $(CC) $(LIBGCC_CFLAGS) -print-libgcc-file-name)
  554. LIBGCC_DIR:=$(dir $(LIBGCC))
  555. # moved from libpthread/linuxthreads
  556. ifeq ($(UCLIBC_CTOR_DTOR),y)
  557. SHARED_START_FILES:=$(top_builddir)lib/crti.o $(LIBGCC_DIR)crtbeginS.o
  558. SHARED_END_FILES:=$(LIBGCC_DIR)crtendS.o $(top_builddir)lib/crtn.o
  559. endif