Deleted Added
full compact
Makefile (217123) Makefile (217942)
1# $FreeBSD: head/gnu/lib/libgomp/Makefile 217123 2011-01-07 20:26:33Z imp $
1# $FreeBSD: head/gnu/lib/libgomp/Makefile 217942 2011-01-27 14:16:12Z jchandra $
2
3GCCDIR= ${.CURDIR}/../../../contrib/gcc
4GCCLIB= ${.CURDIR}/../../../contrib/gcclibs
5SRCDIR= ${GCCLIB}/libgomp
6
7.PATH: ${SRCDIR} ${SRCDIR}/config/posix
8
9LIB= gomp

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

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_ARCH} == powerpc || \
2
3GCCDIR= ${.CURDIR}/../../../contrib/gcc
4GCCLIB= ${.CURDIR}/../../../contrib/gcclibs
5SRCDIR= ${GCCLIB}/libgomp
6
7.PATH: ${SRCDIR} ${SRCDIR}/config/posix
8
9LIB= gomp

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

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_ARCH} == powerpc || \
28 ${MACHINE_ARCH} == mipsel || ${MACHINE_ARCH} == mipseb
28 (${MACHINE_CPUARCH} == mips && ${MACHINE_ARCH:Mmips64*} == "")
29OMP_LOCK_ALIGN = 4
30OMP_LOCK_KIND= 4
31OMP_LOCK_SIZE= 4
32OMP_NEST_LOCK_ALIGN= 4
33OMP_NEST_LOCK_KIND= 8
34OMP_NEST_LOCK_SIZE= 8
35.else
36OMP_LOCK_ALIGN = 8

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

--- 25 unchanged lines hidden ---