Module Name: src
Committed By: mrg
Date: Tue Sep 20 02:28:03 UTC 2011
Added Files:
src/external/gpl3/gcc/lib/libgomp: Makefile
Log Message:
makefile to build libgomp, as needed by "gcc -fopenmp".
needs a full mknative-gcc run before it can be properly enabled.
To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/external/gpl3/gcc/lib/libgomp/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Added files:
Index: src/external/gpl3/gcc/lib/libgomp/Makefile
diff -u /dev/null src/external/gpl3/gcc/lib/libgomp/Makefile:1.1
--- /dev/null Tue Sep 20 02:28:03 2011
+++ src/external/gpl3/gcc/lib/libgomp/Makefile Tue Sep 20 02:28:03 2011
@@ -0,0 +1,56 @@
+# $NetBSD: Makefile,v 1.1 2011/09/20 02:28:03 mrg Exp $
+
+# build GCC's libgomp, so that -fopenmp works.
+
+.include <bsd.own.mk>
+DIST= ${NETBSDSRCDIR}/external/gpl3/gcc/dist
+
+LIB= gomp
+SRCS= \
+ alloc.c \
+ barrier.c \
+ critical.c \
+ env.c \
+ error.c \
+ iter.c \
+ iter_ull.c \
+ loop.c \
+ loop_ull.c \
+ ordered.c \
+ parallel.c \
+ sections.c \
+ single.c \
+ task.c \
+ team.c \
+ work.c \
+ lock.c \
+ mutex.c \
+ proc.c \
+ sem.c \
+ bar.c \
+ ptrlock.c \
+ time.c \
+ fortran.c \
+ affinity.c
+
+CPPFLAGS+= \
+ -DHAVE_CONFIG_H \
+ -I${DIST}/libgomp \
+ -I${DIST}/libgomp/config/posix \
+ -I${DIST}/libgcc \
+ -I${.CURDIR}/arch/${MACHINE_ARCH}
+CFLAGS+=-pthread
+
+# This is where GCC looks for it.
+FILES= libgomp.spec
+FILESDIR= ${LIBDIR}
+
+# libgomp.so.1.0 is in GCC 4.5.
+SHLIB_MAJOR= 1
+SHLIB_MINOR= 0
+
+LDFLAGS+= -Wl,--version-script,${DIST}/libgomp/libgomp.map
+
+.PATH: ${DIST}/libgomp ${DIST}/libgomp/config/posix
+
+.include <bsd.lib.mk>