Modifying patch from: marian.buschsieweke@ovgu.de
The code accessing the floating point control/status register, namely #define __cfc1(__fcsr) __asm __volatile("cfc1 %0, $31" : "=r" (__fcsr) does not compile with mips16. This changed the makefile to pass -mno-mips16 to avoid the following compiler error: mips-mti-elf fails with "Error: unrecognized opcode `cfc1 $3,$31'"
This commit is contained in:
parent
3edea7cd55
commit
8fa73a9f84
|
@ -6,8 +6,7 @@ INCLUDES = -I $(newlib_basedir)/../newlib/libm/common $(NEWLIB_CFLAGS) \
|
||||||
LIB_SOURCES = \
|
LIB_SOURCES = \
|
||||||
feclearexcept.c fegetenv.c fegetexceptflag.c \
|
feclearexcept.c fegetenv.c fegetexceptflag.c \
|
||||||
fegetround.c feholdexcept.c feraiseexcept.c fesetenv.c \
|
fegetround.c feholdexcept.c feraiseexcept.c fesetenv.c \
|
||||||
fesetexceptflag.c fesetround.c fetestexcept.c feupdateenv.c \
|
fesetexceptflag.c fesetround.c fetestexcept.c feupdateenv.c
|
||||||
fenv.c
|
|
||||||
|
|
||||||
noinst_LIBRARIES = lib.a
|
noinst_LIBRARIES = lib.a
|
||||||
lib_a_SOURCES = $(LIB_SOURCES)
|
lib_a_SOURCES = $(LIB_SOURCES)
|
||||||
|
@ -17,5 +16,15 @@ noinst_DATA =
|
||||||
|
|
||||||
include $(srcdir)/../../../Makefile.shared
|
include $(srcdir)/../../../Makefile.shared
|
||||||
|
|
||||||
|
LIBADD_OBJS = \
|
||||||
|
lib_a-fenv.$(OBJEXT)
|
||||||
|
|
||||||
|
# fenv.c cannot be compiled as mips16 since it uses the cfc1 instruction
|
||||||
|
lib_a-fenv.o: fenv.c
|
||||||
|
$(COMPILE) -mno-mips16 -c -o $@ `test -f 'fenv.c' || echo '$(srcdir)/'`fenv.c
|
||||||
|
|
||||||
|
lib_a-fenv.obj: fenv.c
|
||||||
|
$(COMPILE) -mno-mips16 -c -o $@ `if test -f 'fenv.c'; then $(CYGPATH_W) 'fenv.c'; else $(CYGPATH_W) '$(srcdir)/fenv.c'; fi`
|
||||||
|
|
||||||
ACLOCAL_AMFLAGS = -I ../../.. -I ../../../..
|
ACLOCAL_AMFLAGS = -I ../../.. -I ../../../..
|
||||||
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|
||||||
|
|
|
@ -75,7 +75,7 @@ am__objects_1 = lib_a-feclearexcept.$(OBJEXT) lib_a-fegetenv.$(OBJEXT) \
|
||||||
lib_a-feholdexcept.$(OBJEXT) lib_a-feraiseexcept.$(OBJEXT) \
|
lib_a-feholdexcept.$(OBJEXT) lib_a-feraiseexcept.$(OBJEXT) \
|
||||||
lib_a-fesetenv.$(OBJEXT) lib_a-fesetexceptflag.$(OBJEXT) \
|
lib_a-fesetenv.$(OBJEXT) lib_a-fesetexceptflag.$(OBJEXT) \
|
||||||
lib_a-fesetround.$(OBJEXT) lib_a-fetestexcept.$(OBJEXT) \
|
lib_a-fesetround.$(OBJEXT) lib_a-fetestexcept.$(OBJEXT) \
|
||||||
lib_a-feupdateenv.$(OBJEXT) lib_a-fenv.$(OBJEXT)
|
lib_a-feupdateenv.$(OBJEXT)
|
||||||
am_lib_a_OBJECTS = $(am__objects_1)
|
am_lib_a_OBJECTS = $(am__objects_1)
|
||||||
lib_a_OBJECTS = $(am_lib_a_OBJECTS)
|
lib_a_OBJECTS = $(am_lib_a_OBJECTS)
|
||||||
DEFAULT_INCLUDES = -I.@am__isrc@
|
DEFAULT_INCLUDES = -I.@am__isrc@
|
||||||
|
@ -189,6 +189,7 @@ prefix = @prefix@
|
||||||
program_transform_name = @program_transform_name@
|
program_transform_name = @program_transform_name@
|
||||||
psdir = @psdir@
|
psdir = @psdir@
|
||||||
sbindir = @sbindir@
|
sbindir = @sbindir@
|
||||||
|
shared_machine_dir = @shared_machine_dir@
|
||||||
sharedstatedir = @sharedstatedir@
|
sharedstatedir = @sharedstatedir@
|
||||||
srcdir = @srcdir@
|
srcdir = @srcdir@
|
||||||
sys_dir = @sys_dir@
|
sys_dir = @sys_dir@
|
||||||
|
@ -203,8 +204,7 @@ INCLUDES = -I $(newlib_basedir)/../newlib/libm/common $(NEWLIB_CFLAGS) \
|
||||||
LIB_SOURCES = \
|
LIB_SOURCES = \
|
||||||
feclearexcept.c fegetenv.c fegetexceptflag.c \
|
feclearexcept.c fegetenv.c fegetexceptflag.c \
|
||||||
fegetround.c feholdexcept.c feraiseexcept.c fesetenv.c \
|
fegetround.c feholdexcept.c feraiseexcept.c fesetenv.c \
|
||||||
fesetexceptflag.c fesetround.c fetestexcept.c feupdateenv.c \
|
fesetexceptflag.c fesetround.c fetestexcept.c feupdateenv.c
|
||||||
fenv.c
|
|
||||||
|
|
||||||
noinst_LIBRARIES = lib.a
|
noinst_LIBRARIES = lib.a
|
||||||
lib_a_SOURCES = $(LIB_SOURCES)
|
lib_a_SOURCES = $(LIB_SOURCES)
|
||||||
|
@ -221,6 +221,9 @@ DOCBOOK_CHEW = ${top_srcdir}/../doc/makedocbook.py
|
||||||
DOCBOOK_OUT_FILES = $(CHEWOUT_FILES:.def=.xml)
|
DOCBOOK_OUT_FILES = $(CHEWOUT_FILES:.def=.xml)
|
||||||
DOCBOOK_CHAPTERS = $(CHAPTERS:.tex=.xml)
|
DOCBOOK_CHAPTERS = $(CHAPTERS:.tex=.xml)
|
||||||
CLEANFILES = $(CHEWOUT_FILES) $(DOCBOOK_OUT_FILES)
|
CLEANFILES = $(CHEWOUT_FILES) $(DOCBOOK_OUT_FILES)
|
||||||
|
LIBADD_OBJS = \
|
||||||
|
lib_a-fenv.$(OBJEXT)
|
||||||
|
|
||||||
ACLOCAL_AMFLAGS = -I ../../.. -I ../../../..
|
ACLOCAL_AMFLAGS = -I ../../.. -I ../../../..
|
||||||
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|
||||||
all: all-am
|
all: all-am
|
||||||
|
@ -348,12 +351,6 @@ lib_a-feupdateenv.o: feupdateenv.c
|
||||||
lib_a-feupdateenv.obj: feupdateenv.c
|
lib_a-feupdateenv.obj: feupdateenv.c
|
||||||
$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-feupdateenv.obj `if test -f 'feupdateenv.c'; then $(CYGPATH_W) 'feupdateenv.c'; else $(CYGPATH_W) '$(srcdir)/feupdateenv.c'; fi`
|
$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-feupdateenv.obj `if test -f 'feupdateenv.c'; then $(CYGPATH_W) 'feupdateenv.c'; else $(CYGPATH_W) '$(srcdir)/feupdateenv.c'; fi`
|
||||||
|
|
||||||
lib_a-fenv.o: fenv.c
|
|
||||||
$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-fenv.o `test -f 'fenv.c' || echo '$(srcdir)/'`fenv.c
|
|
||||||
|
|
||||||
lib_a-fenv.obj: fenv.c
|
|
||||||
$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-fenv.obj `if test -f 'fenv.c'; then $(CYGPATH_W) 'fenv.c'; else $(CYGPATH_W) '$(srcdir)/fenv.c'; fi`
|
|
||||||
|
|
||||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||||
unique=`for i in $$list; do \
|
unique=`for i in $$list; do \
|
||||||
|
@ -554,6 +551,13 @@ docbook: $(DOCBOOK_OUT_FILES)
|
||||||
${top_srcdir}/../doc/chapter-texi2docbook.py <$(srcdir)/$${chapter%.xml}.tex >../$$chapter ; \
|
${top_srcdir}/../doc/chapter-texi2docbook.py <$(srcdir)/$${chapter%.xml}.tex >../$$chapter ; \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# fenv.c cannot be compiled as mips16 since it uses the cfc1 instruction
|
||||||
|
lib_a-fenv.o: fenv.c
|
||||||
|
$(COMPILE) -mno-mips16 -c -o $@ `test -f 'fenv.c' || echo '$(srcdir)/'`fenv.c
|
||||||
|
|
||||||
|
lib_a-fenv.obj: fenv.c
|
||||||
|
$(COMPILE) -mno-mips16 -c -o $@ `if test -f 'fenv.c'; then $(CYGPATH_W) 'fenv.c'; else $(CYGPATH_W) '$(srcdir)/fenv.c'; fi`
|
||||||
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||||
.NOEXPORT:
|
.NOEXPORT:
|
||||||
|
|
Loading…
Reference in New Issue