Deleted Added
full compact
Makefile (211725) Makefile (211934)
1# $FreeBSD: head/gnu/lib/libgomp/Makefile 211725 2010-08-23 22:24:11Z imp $
1# $FreeBSD: head/gnu/lib/libgomp/Makefile 211934 2010-08-28 15:03:11Z nwhitehorn $
2
3GCCDIR= ${.CURDIR}/../../../contrib/gcc
4GCCLIB= ${.CURDIR}/../../../contrib/gcclibs
5SRCDIR= ${GCCLIB}/libgomp
6
7.PATH: ${SRCDIR} ${SRCDIR}/config/posix
8
9LIB= gomp

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

19
20CFLAGS+= -DHAVE_CONFIG_H
21CFLAGS+= -I${.CURDIR} -I. -I${SRCDIR} -I${SRCDIR}/config/posix
22
23VERSION_MAP= ${SRCDIR}/libgomp.map
24
25# Target-specific OpenMP configuration
26.if ${MACHINE_CPUARCH} == arm || ${MACHINE_CPUARCH} == i386 || \
2
3GCCDIR= ${.CURDIR}/../../../contrib/gcc
4GCCLIB= ${.CURDIR}/../../../contrib/gcclibs
5SRCDIR= ${GCCLIB}/libgomp
6
7.PATH: ${SRCDIR} ${SRCDIR}/config/posix
8
9LIB= gomp

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

19
20CFLAGS+= -DHAVE_CONFIG_H
21CFLAGS+= -I${.CURDIR} -I. -I${SRCDIR} -I${SRCDIR}/config/posix
22
23VERSION_MAP= ${SRCDIR}/libgomp.map
24
25# Target-specific OpenMP configuration
26.if ${MACHINE_CPUARCH} == arm || ${MACHINE_CPUARCH} == i386 || \
27 ${MACHINE_CPUARCH} == powerpc || \
27 ${MACHINE_ARCH} == powerpc || \
28 (${MACHINE_CPUARCH} == mips && \
29 (!defined(TARGET_ABI) || ${TARGET_ABI} != "n64"))
30OMP_LOCK_ALIGN = 4
31OMP_LOCK_KIND= 4
32OMP_LOCK_SIZE= 4
33OMP_NEST_LOCK_ALIGN= 4
34OMP_NEST_LOCK_KIND= 8
35OMP_NEST_LOCK_SIZE= 8

--- 27 unchanged lines hidden ---
28 (${MACHINE_CPUARCH} == mips && \
29 (!defined(TARGET_ABI) || ${TARGET_ABI} != "n64"))
30OMP_LOCK_ALIGN = 4
31OMP_LOCK_KIND= 4
32OMP_LOCK_SIZE= 4
33OMP_NEST_LOCK_ALIGN= 4
34OMP_NEST_LOCK_KIND= 8
35OMP_NEST_LOCK_SIZE= 8

--- 27 unchanged lines hidden ---