svn commit: r255499 - head/lib/msun

Dimitry Andric dim at FreeBSD.org
Thu Sep 12 20:51:48 UTC 2013


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;


More information about the svn-src-head mailing list