[OpenBIOS] [commit] r759 - in trunk/fcode-utils-devel: detok romheaders toke

Andreas Färber andreas.faerber at web.de
Mon May 24 11:29:03 CEST 2010


Hello Stefan,

Am 26.04.2010 um 19:01 schrieb repository service:

> Modified: trunk/fcode-utils-devel/toke/Makefile
> =
> =
> =
> =
> =
> =
> =
> =
> ======================================================================
> --- trunk/fcode-utils-devel/toke/Makefile	Mon Apr 26 17:57:21 2010	 
> (r758)
> +++ trunk/fcode-utils-devel/toke/Makefile	Mon Apr 26 19:01:01 2010	 
> (r759)
> @@ -29,7 +29,7 @@
> INCLUDES = -I../shared
>
> # Normal flags
> -CFLAGS  = -O2 -Wall -Wextra
> +CFLAGS  = -O2 -Wall -ansi -Wno-pointer-sign #-Wextra
> LDFLAGS =
>
> # Coverage:

OpenSolaris' gcc does not understand -Wno-pointer-sign:

cc1: error: unrecognized command line option "-Wno-pointer-sign"

Could we find another solution please? ;)

This works for me for now:

Index: toke/Makefile
===================================================================
--- toke/Makefile	(revision 774)
+++ toke/Makefile	(working copy)
@@ -29,7 +29,7 @@
  INCLUDES = -I../shared

  # Normal flags
-CFLAGS  = -O2 -Wall -ansi -Wno-pointer-sign #-Wextra
+CFLAGS  = -O2 -Wall -ansi #-Wno-pointer-sign #-Wextra
  LDFLAGS =

  # Coverage:

Thanks,
Andreas



More information about the OpenBIOS mailing list