svn commit: r345237 - head/lib

Dimitry Andric dim at FreeBSD.org
Sat Mar 16 17:55:23 UTC 2019


Author: dim
Date: Sat Mar 16 17:55:22 2019
New Revision: 345237
URL: https://svnweb.freebsd.org/changeset/base/345237

Log:
  Disable lib/libomp build for the 32-bit part of amd64 buildworld, as it
  is not supported for that target.
  
  Reported by:	Michael Butler <imb at protected-networks.net>
  PR:		236062
  MFC after:	1 month
  X-MFC-With:	r344779

Modified:
  head/lib/Makefile

Modified: head/lib/Makefile
==============================================================================
--- head/lib/Makefile	Sat Mar 16 15:45:15 2019	(r345236)
+++ head/lib/Makefile	Sat Mar 16 17:55:22 2019	(r345237)
@@ -196,7 +196,9 @@ _libproc=	libproc
 _librtld_db=	librtld_db
 .endif
 
+.if !defined(COMPAT_32BIT)
 SUBDIR.${MK_OPENMP}+=	libomp
+.endif
 SUBDIR.${MK_OPENSSL}+=	libmp
 SUBDIR.${MK_PMC}+=	libpmc libpmcstat
 SUBDIR.${MK_RADIUS_SUPPORT}+=	libradius


More information about the svn-src-all mailing list