Deleted Added
full compact
Makefile (170156) Makefile (182627)
1# $FreeBSD: head/gnu/lib/libgomp/Makefile 170156 2007-05-31 13:21:30Z kan $
1# $FreeBSD: head/gnu/lib/libgomp/Makefile 182627 2008-09-01 18:46:03Z obrien $
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_ARCH} == arm || ${MACHINE_ARCH} == 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_ARCH} == arm || ${MACHINE_ARCH} == i386 || \
27 ${MACHINE_ARCH} == powerpc
27 ${MACHINE_ARCH} == powerpc || ${MACHINE_ARCH} == mips
28OMP_LOCK_ALIGN = 4
29OMP_LOCK_KIND= 4
30OMP_LOCK_SIZE= 4
31OMP_NEST_LOCK_ALIGN= 4
32OMP_NEST_LOCK_KIND= 8
33OMP_NEST_LOCK_SIZE= 8
34.else
35OMP_LOCK_ALIGN = 8

--- 25 unchanged lines hidden ---
28OMP_LOCK_ALIGN = 4
29OMP_LOCK_KIND= 4
30OMP_LOCK_SIZE= 4
31OMP_NEST_LOCK_ALIGN= 4
32OMP_NEST_LOCK_KIND= 8
33OMP_NEST_LOCK_SIZE= 8
34.else
35OMP_LOCK_ALIGN = 8

--- 25 unchanged lines hidden ---