Author: mjw
Date: Sat Oct 1 11:12:31 2016
New Revision: 15988
Log:
Use AM_LDFLAGS instead of LDFLAGS in exp-bbv/tests Makefiles.
That makes it possible to add to LDFLAGS instead of overriding
when doing make. Useful if you want to have different LD_FLAGS
added for the main and check makes.
Modified:
trunk/exp-bbv/tests/amd64-linux/Makefile.am
trunk/exp-bbv/tests/arm-linux/Makefile.am
trunk/exp-bbv/tests/ppc32-linux/Makefile.am
trunk/exp-bbv/tests/x86-linux/Makefile.am
trunk/exp-bbv/tests/x86/Makefile.am
Modified: trunk/exp-bbv/tests/amd64-linux/Makefile.am
==============================================================================
--- trunk/exp-bbv/tests/amd64-linux/Makefile.am (original)
+++ trunk/exp-bbv/tests/amd64-linux/Makefile.am Sat Oct 1 11:12:31 2016
@@ -25,7 +25,7 @@
AM_CCASFLAGS += -ffreestanding
-LDFLAGS += -nostartfiles -nodefaultlibs
+AM_LDFLAGS = -nostartfiles -nodefaultlibs
clone_test_SOURCES = clone_test.S
complex_rep_SOURCES = complex_rep.S
Modified: trunk/exp-bbv/tests/arm-linux/Makefile.am
==============================================================================
--- trunk/exp-bbv/tests/arm-linux/Makefile.am (original)
+++ trunk/exp-bbv/tests/arm-linux/Makefile.am Sat Oct 1 11:12:31 2016
@@ -16,7 +16,7 @@
AM_CCASFLAGS += -ffreestanding -Xassembler -I$(top_srcdir)/exp-bbv/tests
-LDFLAGS += -nostartfiles -nodefaultlibs
+AM_LDFLAGS = -nostartfiles -nodefaultlibs
ll_SOURCES = ll.S
million_SOURCES = million.S
Modified: trunk/exp-bbv/tests/ppc32-linux/Makefile.am
==============================================================================
--- trunk/exp-bbv/tests/ppc32-linux/Makefile.am (original)
+++ trunk/exp-bbv/tests/ppc32-linux/Makefile.am Sat Oct 1 11:12:31 2016
@@ -16,7 +16,7 @@
AM_CCASFLAGS += -ffreestanding -m32 -Xassembler -I$(top_srcdir)/exp-bbv/tests
-LDFLAGS += -nostartfiles -nodefaultlibs -m32
+AM_LDFLAGS = -nostartfiles -nodefaultlibs -m32
ll_SOURCES = ll.S
million_SOURCES = million.S
Modified: trunk/exp-bbv/tests/x86-linux/Makefile.am
==============================================================================
--- trunk/exp-bbv/tests/x86-linux/Makefile.am (original)
+++ trunk/exp-bbv/tests/x86-linux/Makefile.am Sat Oct 1 11:12:31 2016
@@ -16,7 +16,7 @@
AM_CCASFLAGS += -ffreestanding -Xassembler -I$(top_srcdir)/exp-bbv/tests
-LDFLAGS += @FLAG_M32@ -static -nostartfiles -nodefaultlibs
+AM_LDFLAGS = @FLAG_M32@ -static -nostartfiles -nodefaultlibs
clone_test_SOURCES = clone_test.S
ll_SOURCES = ll.S
Modified: trunk/exp-bbv/tests/x86/Makefile.am
==============================================================================
--- trunk/exp-bbv/tests/x86/Makefile.am (original)
+++ trunk/exp-bbv/tests/x86/Makefile.am Sat Oct 1 11:12:31 2016
@@ -18,7 +18,7 @@
AM_CCASFLAGS += -ffreestanding
-LDFLAGS += @FLAG_M32@ -static -nostartfiles -nodefaultlibs
+AM_LDFLAGS = @FLAG_M32@ -static -nostartfiles -nodefaultlibs
complex_rep_SOURCES = complex_rep.S
fldcw_check_SOURCES = fldcw_check.S
|