Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Sep 2013 20:51:48 +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: r255499 - head/lib/msun
Message-ID:  <201309122051.r8CKpm9J005830@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Thu Sep 12 20:51:48 2013
New Revision: 255499
URL: http://svnweb.freebsd.org/changeset/base/255499

Log:
  After r255294, building lib/msun's symbol map (using clang as the
  preprocessor) gives the following error:
  
  --- Version.map ---
  <stdin>:287:4: error: invalid preprocessing directive
          # Implemented as weak aliases for imprecise versions
            ^
  1 error generated.
  
  Change the comment to a C-style one, to prevent this error.
  
  Approved by:	re (hrs)

Modified:
  head/lib/msun/Symbol.map

Modified: head/lib/msun/Symbol.map
==============================================================================
--- head/lib/msun/Symbol.map	Thu Sep 12 20:49:20 2013	(r255498)
+++ head/lib/msun/Symbol.map	Thu Sep 12 20:51:48 2013	(r255499)
@@ -270,7 +270,7 @@ FBSD_1.3 {
 	log1pl;
 	log2l;
 	logl;
-	# Implemented as weak aliases for imprecise versions
+	/* Implemented as weak aliases for imprecise versions */
 	coshl;
 	erfcl;
 	erfl;



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