]> sourceware.org Git - newlib-cygwin.git/commitdiff
[AArch64] Honour CFLAGS.
authorMarcus Shawcroft <marcus.shawcroft@arm.com>
Fri, 19 Apr 2013 14:24:45 +0000 (14:24 +0000)
committerMarcus Shawcroft <marcus.shawcroft@arm.com>
Fri, 19 Apr 2013 14:24:45 +0000 (14:24 +0000)
2013-04-19  Yufeng Zhang  <yufeng.zhang@arm.com>

* aarch64/Makefile.in (rdimon-crt0.o, rdimon-trap.o)
(rdimon-_exit.o, rdimon-_kill.o, rdimon-syscalls.o)
(rdimon-libcfunc.o): Add $(CFLAGS) to the compiler command line.
* aarch64/cpu-init/Makefile.in (${CPU_INIT_OBJS}): Add $(CFLAGS)
to the compiler command line.

libgloss/ChangeLog
libgloss/aarch64/Makefile.in
libgloss/aarch64/cpu-init/Makefile.in

index 4d7bc54ffab564c7bc57dca5fdbf5169f4255846..4b288cd5a97297043932ba243dedf58c93cdbce4 100644 (file)
@@ -1,3 +1,11 @@
+2013-04-19  Yufeng Zhang  <yufeng.zhang@arm.com>
+
+       * aarch64/Makefile.in (rdimon-crt0.o, rdimon-trap.o)
+       (rdimon-_exit.o, rdimon-_kill.o, rdimon-syscalls.o)
+       (rdimon-libcfunc.o): Add $(CFLAGS) to the compiler command line.
+       * aarch64/cpu-init/Makefile.in (${CPU_INIT_OBJS}): Add $(CFLAGS)
+       to the compiler command line.
+
 2013-02-10  Peter Marheine  <peter@taricorp.net>
 
        * libgloss/rx/Makefile.in: Respect DESTDIR when installing
index a8ceb1c811967ec9ba71152664e2083f1d927997..654296b4273f46f0e9df2761acf0bbc713876c37 100644 (file)
@@ -112,23 +112,24 @@ test:
 
 #
 crt0.o: crt0.S
+
 rdimon-crt0.o: crt0.S
-       $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<
+       $(CC) $(CFLAGS_FOR_TARGET) $(CFLAGS) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<
 
 #rdimon-trap.o: trap.S
-#      $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<
+#      $(CC) $(CFLAGS_FOR_TARGET) $(CFLAGS) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<
 
 rdimon-_exit.o: _exit.c
-       $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<
+       $(CC) $(CFLAGS_FOR_TARGET) $(CFLAGS) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<
 
 rdimon-_kill.o: _kill.c
-       $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<
+       $(CC) $(CFLAGS_FOR_TARGET) $(CFLAGS) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<
 
 rdimon-syscalls.o: syscalls.c
-       $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<
+       $(CC) $(CFLAGS_FOR_TARGET) $(CFLAGS) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<
 
 rdimon-libcfunc.o: libcfunc.c
-       $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<
+       $(CC) $(CFLAGS_FOR_TARGET) $(CFLAGS) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<
 
 $(RDIMON_BSP): $(RDIMON_OBJS)
        ${AR} ${ARFLAGS} $@ $^
index 753df3f810b02d003c29cb25c76858214892058e..08aa1760fa05019046ae747aa888ffd95d478e86 100644 (file)
@@ -81,7 +81,7 @@ test:
 
 # Static pattern rule for assembling cpu init files to object files.
 ${CPU_INIT_OBJS}: %.o: %.S
-       $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<
+       $(CC) $(CFLAGS_FOR_TARGET) $(CFLAGS) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<
 
 clean mostlyclean:
        rm -f a.out core *.i *.o *-test *.srec *.dis *.x
This page took 0.039051 seconds and 5 git commands to generate.