Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 16 Mar 2019 17:55:23 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r345237 - head/lib
Message-ID:  <201903161755.x2GHtNgM042321@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903161755.x2GHtNgM042321>