newlib: i386/xstormy16: drop unused -I libm/common flag
These subdirs don't actually use anything from libm. The common dir in particular only has 4 header files, and none are included here. The xstormy16 code has a comment mentioning why this hack is here, but it refers to code that was removed when its configure script was merged up a level.
This commit is contained in:
parent
9f1930bf34
commit
d1591ed4a1
|
@ -1,6 +1,6 @@
|
|||
## Process this file with automake to generate Makefile.in
|
||||
|
||||
AM_CPPFLAGS = -I $(abs_newlib_basedir)/libm/common $(NEWLIB_CFLAGS) $(TARGET_CFLAGS)
|
||||
AM_CPPFLAGS = $(NEWLIB_CFLAGS) $(TARGET_CFLAGS)
|
||||
|
||||
AM_CCASFLAGS = $(AM_CPPFLAGS)
|
||||
|
||||
|
|
|
@ -300,7 +300,7 @@ target_alias = @target_alias@
|
|||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
AM_CPPFLAGS = -I $(abs_newlib_basedir)/libm/common $(NEWLIB_CFLAGS) $(TARGET_CFLAGS)
|
||||
AM_CPPFLAGS = $(NEWLIB_CFLAGS) $(TARGET_CFLAGS)
|
||||
AM_CCASFLAGS = $(AM_CPPFLAGS)
|
||||
@MACH_ADD_SETJMP_FALSE@ADDED_SOURCES =
|
||||
@MACH_ADD_SETJMP_TRUE@ADDED_SOURCES = setjmp.S
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
## Process this file with automake to generate Makefile.in
|
||||
|
||||
# hack: putting $(abs_newlib_basedir)/libm/common into AM_CPPFLAGS forces automake
|
||||
# to output a definition for newlib_basedir.
|
||||
AM_CPPFLAGS = -I $(abs_newlib_basedir)/libm/common $(NEWLIB_CFLAGS) $(TARGET_CFLAGS)
|
||||
AM_CPPFLAGS = $(NEWLIB_CFLAGS) $(TARGET_CFLAGS)
|
||||
|
||||
AM_CCASFLAGS = $(AM_CPPFLAGS)
|
||||
|
||||
|
|
|
@ -290,10 +290,7 @@ target_alias = @target_alias@
|
|||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
|
||||
# hack: putting $(abs_newlib_basedir)/libm/common into AM_CPPFLAGS forces automake
|
||||
# to output a definition for newlib_basedir.
|
||||
AM_CPPFLAGS = -I $(abs_newlib_basedir)/libm/common $(NEWLIB_CFLAGS) $(TARGET_CFLAGS)
|
||||
AM_CPPFLAGS = $(NEWLIB_CFLAGS) $(TARGET_CFLAGS)
|
||||
AM_CCASFLAGS = $(AM_CPPFLAGS)
|
||||
noinst_LIBRARIES = lib.a
|
||||
lib_a_SOURCES = setjmp.S
|
||||
|
|
Loading…
Reference in New Issue