# HG changeset patch # User john.levon@sun.com # Date 1161090418 25200 # Node ID 8dcda57ee98a51ce528982a5f5d848e09584d08a # Parent dff351e52952cc08be67ee5c7173c2c83167c15b On sysv platforms, gas defaults ''/'' to a comment character. Pass in the right option to disable this behaviour, so Xen''s semantics of "divide" apply. Signed-off-by: John Levon <john.levon@sun.com> diff --git a/config/SunOS.mk b/config/SunOS.mk --- a/config/SunOS.mk +++ b/config/SunOS.mk @@ -35,4 +35,6 @@ CFLAGS += -g CFLAGS += -g endif +CAFLAGS = -Wa,--divide + CONFIG_MBOOTPACK_OS = n diff --git a/xen/Rules.mk b/xen/Rules.mk --- a/xen/Rules.mk +++ b/xen/Rules.mk @@ -99,10 +99,10 @@ _clean_%/: FORCE $(MAKE) -f $(BASEDIR)/Rules.mk -C $* clean %.o: %.c $(HDRS) Makefile - $(CC) $(CFLAGS) -c $< -o $@ + $(CC) $(CFLAGS) $(CAFLAGS) -c $< -o $@ %.o: %.S $(HDRS) Makefile - $(CC) $(CFLAGS) $(AFLAGS) -c $< -o $@ + $(CC) $(CFLAGS) $(CAFLAGS) $(AFLAGS) -c $< -o $@ %.i: %.c $(HDRS) Makefile $(CPP) $(CFLAGS) $< -o $@ _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
On 17/10/06 14:08, "John Levon" <levon@movementarian.org> wrote:> On sysv platforms, gas defaults ''/'' to a comment character. Pass in the right > option to disable this behaviour, so Xen''s semantics of "divide" apply. > > Signed-off-by: John Levon <john.levon@sun.com>Just fold this into your CFLAGS? I don''t see a need for CAFLAGS. -- Keir _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
On Tue, Oct 17, 2006 at 02:31:01PM +0100, Keir Fraser wrote:> > On sysv platforms, gas defaults ''/'' to a comment character. Pass in the right > > option to disable this behaviour, so Xen''s semantics of "divide" apply. > > > > Signed-off-by: John Levon <john.levon@sun.com> > > Just fold this into your CFLAGS? I don''t see a need for CAFLAGS.Fair enough. # HG changeset patch # User john.levon@sun.com # Date 1161092306 25200 # Node ID edef190b7c8f296262dcc8cafa26a67664273a10 # Parent c62830316465c3d626c4790dfca92909e273e144 On sysv platforms, gas defaults ''/'' to a comment character. Pass in the right option to disable this behaviour, so Xen''s semantics of "divide" apply. Signed-off-by: John Levon <john.levon@sun.com> diff --git a/config/SunOS.mk b/config/SunOS.mk --- a/config/SunOS.mk +++ b/config/SunOS.mk @@ -35,4 +35,6 @@ CFLAGS += -g CFLAGS += -g endif +CFLAGS += -Wa,--divide + CONFIG_MBOOTPACK_OS = n _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel