Deleted Added
full compact
Makefile.arm (243664) Makefile.arm (245675)
1# Makefile.arm -- with config changes.
2# Copyright 1990 W. Jolitz
3# from: @(#)Makefile.i386 7.1 5/10/91
1# Makefile.arm -- with config changes.
2# Copyright 1990 W. Jolitz
3# from: @(#)Makefile.i386 7.1 5/10/91
4# $FreeBSD: head/sys/conf/Makefile.arm 243664 2012-11-29 03:48:39Z marcel $
4# $FreeBSD: head/sys/conf/Makefile.arm 245675 2013-01-19 22:08:16Z andrew $
5#
6# Makefile for FreeBSD
7#
8# This makefile is constructed from a machine description:
9# config machineid
10# Most changes should be made in the machine description
11# /sys/arm/conf/``machineid''
12# after which you should do

--- 23 unchanged lines hidden (view full) ---

36SYSTEM_DEP:= ${SYSTEM_DEP:$S/conf/ldscript.$M=ldscript.$M}
37
38.if !defined(DEBUG) && !defined(PROFLEVEL)
39STRIP_FLAGS = -S
40.endif
41
42.if empty(DDB_ENABLED)
43CFLAGS += -mno-apcs-frame
5#
6# Makefile for FreeBSD
7#
8# This makefile is constructed from a machine description:
9# config machineid
10# Most changes should be made in the machine description
11# /sys/arm/conf/``machineid''
12# after which you should do

--- 23 unchanged lines hidden (view full) ---

36SYSTEM_DEP:= ${SYSTEM_DEP:$S/conf/ldscript.$M=ldscript.$M}
37
38.if !defined(DEBUG) && !defined(PROFLEVEL)
39STRIP_FLAGS = -S
40.endif
41
42.if empty(DDB_ENABLED)
43CFLAGS += -mno-apcs-frame
44.elif defined(WITH_ARM_EABI)
45CFLAGS += -funwind-tables
44.endif
45
46SYSTEM_LD_ = ${LD} -Bdynamic -T ldscript.$M.noheader ${LDFLAGS} \
47 -warn-common -export-dynamic -dynamic-linker /red/herring -o \
48 ${FULLKERNEL}.noheader -X ${SYSTEM_OBJS} vers.o
49SYSTEM_LD_TAIL +=;sed s/" + SIZEOF_HEADERS"// ldscript.$M\
50 >ldscript.$M.noheader; \
51 ${SYSTEM_LD_}; \

--- 88 unchanged lines hidden ---
46.endif
47
48SYSTEM_LD_ = ${LD} -Bdynamic -T ldscript.$M.noheader ${LDFLAGS} \
49 -warn-common -export-dynamic -dynamic-linker /red/herring -o \
50 ${FULLKERNEL}.noheader -X ${SYSTEM_OBJS} vers.o
51SYSTEM_LD_TAIL +=;sed s/" + SIZEOF_HEADERS"// ldscript.$M\
52 >ldscript.$M.noheader; \
53 ${SYSTEM_LD_}; \

--- 88 unchanged lines hidden ---