1# Don't build libgcc.a with debug info 2LIBGCC2_DEBUG_CFLAGS = 3 4# We provide our own implementation for __clear_cache, using a 5# VxWorks specific entry point. 6LIB2FUNCS_EXCLUDE += _clear_cache 7LIB2ADD += $(srcdir)/config/vxcache.c 8 9# Extra libgcc2 modules used by gthr-vxworks.h functions 10LIB2ADDEH += $(srcdir)/config/vxlib.c $(srcdir)/config/vxlib-tls.c 11 12# This ensures that the correct target headers are used; some VxWorks 13# system headers have names that collide with GCC's internal (host) 14# headers, e.g. regs.h. Make sure the local libgcc headers still 15# prevail (e.g. unwind.h), and that gcc provided header files intended 16# to be user visible eventually are visible as well. 17LIBGCC2_INCLUDES = -nostdinc -I. \ 18 -I$(MULTIBUILDTOP)../../gcc/include \ 19 `case "/$(MULTIDIR)" in \ 20 */mrtp*) echo -I$(WIND_USR)/h -I$(WIND_USR)/h/wrn/coreip ;; \ 21 *) echo -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip ;; \ 22 esac` 23