Skip to content
This repository was archived by the owner on Sep 30, 2022. It is now read-only.

Commit 8807b2c

Browse files
author
rhc54
committed
Merge pull request #535 from rhc54/cmr/wrapper
Correct the WRAPPER_EXTRA_LDFLAGS
2 parents 88399e5 + f5fd099 commit 8807b2c

File tree

3 files changed

+16
-12
lines changed

3 files changed

+16
-12
lines changed

ompi/debuggers/Makefile.am

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
# Copyright (c) 2004-2005 The Regents of the University of California.
1111
# All rights reserved.
1212
# Copyright (c) 2007-2015 Cisco Systems, Inc. All rights reserved.
13+
# Copyright (c) 2015 Intel, Inc. All rights reserved.
1314
# $COPYRIGHT$
1415
#
1516
# Additional copyrights may follow
@@ -43,13 +44,14 @@ headers = \
4344
# Simple checks to ensure that the DSOs are functional
4445

4546
dlopen_test_SOURCES = dlopen_test.c
47+
dlopen_test_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
4648
dlopen_test_LDADD = \
4749
$(top_builddir)/ompi/libmpi.la \
4850
$(top_builddir)/opal/libopen-pal.la
4951
dlopen_test_DEPENDENCIES = $(ompi_predefined_LDADD)
5052

5153
predefined_gap_test_SOURCES = predefined_gap_test.c
52-
predefined_gap_test_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
54+
predefined_gap_test_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
5355
predefined_gap_test_LDADD = $(top_builddir)/ompi/libmpi.la
5456
predefined_gap_test_DEPENDENCIES = $(ompi_predefined_LDADD)
5557

test/datatype/Makefile.am

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# reserved.
55
# Copyright (c) 2006-2015 Cisco Systems, Inc. All rights reserved.
66
# Copyright (c) 2009 Oak Ridge National Labs. All rights reserved.
7+
# Copyright (c) 2015 Intel, Inc. All rights reserved.
78
# $COPYRIGHT$
89
#
910
# Additional copyrights may follow
@@ -20,46 +21,46 @@ TESTS = opal_datatype_test $(MPI_TESTS)
2021
check_PROGRAMS = $(TESTS) $(MPI_CHECKS)
2122

2223
ddt_test_SOURCES = ddt_test.c ddt_lib.c ddt_lib.h
23-
ddt_test_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
24+
ddt_test_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
2425
ddt_test_LDADD = \
2526
$(top_builddir)/ompi/libmpi.la \
2627
$(top_builddir)/opal/libopen-pal.la
2728

2829
ddt_raw_SOURCES = ddt_raw.c ddt_lib.c ddt_lib.h
29-
ddt_raw_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
30+
ddt_raw_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
3031
ddt_raw_LDADD = \
3132
$(top_builddir)/ompi/libmpi.la \
3233
$(top_builddir)/opal/libopen-pal.la
3334

3435
ddt_pack_SOURCES = ddt_pack.c
35-
ddt_pack_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
36+
ddt_pack_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
3637
ddt_pack_LDADD = \
3738
$(top_builddir)/ompi/libmpi.la \
3839
$(top_builddir)/opal/libopen-pal.la
3940

4041
checksum_SOURCES = checksum.c
41-
checksum_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
42+
checksum_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
4243
checksum_LDADD = \
4344
$(top_builddir)/ompi/libmpi.la \
4445
$(top_builddir)/opal/libopen-pal.la
4546

4647
position_SOURCES = position.c
47-
position_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
48+
position_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
4849
position_LDADD = \
4950
$(top_builddir)/ompi/libmpi.la \
5051
$(top_builddir)/opal/libopen-pal.la
5152

5253
position_noncontig_SOURCES = position_noncontig.c
53-
position_noncontig_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
54+
position_noncontig_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
5455
position_noncontig_LDADD = \
5556
$(top_builddir)/ompi/libmpi.la \
5657
$(top_builddir)/opal/libopen-pal.la
5758

5859
to_self_SOURCES = to_self.c
59-
to_self_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
60+
to_self_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
6061
to_self_LDADD = $(top_builddir)/ompi/libmpi.la
6162

6263
opal_datatype_test_SOURCES = opal_datatype_test.c opal_ddt_lib.c opal_ddt_lib.h
63-
opal_datatype_test_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
64+
opal_datatype_test_LDFLAGS = $(OMPI_WRAPPER_EXTRA_LDFLAGS)
6465
opal_datatype_test_LDADD = $(top_builddir)/opal/libopen-pal.la
6566

test/event/Makefile.am

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# University of Stuttgart. All rights reserved.
1010
# Copyright (c) 2004-2005 The Regents of the University of California.
1111
# All rights reserved.
12+
# Copyright (c) 2015 Intel, Inc. All rights reserved.
1213
# $COPYRIGHT$
1314
#
1415
# Additional copyrights may follow
@@ -26,19 +27,19 @@ check_PROGRAMS = \
2627
TESTS = $(check_PROGRAMS)
2728

2829
signal_test_SOURCES = signal-test.c
29-
signal_test_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
30+
signal_test_LDFLAGS = $(OPAL_WRAPPER_EXTRA_LDFLAGS)
3031
signal_test_LDADD = \
3132
$(top_builddir)/opal/libopen-pal.la
3233
signal_test_DEPENDENCIES = $(signal_test_LDADD)
3334

3435
time_test_SOURCES = time-test.c
35-
time_test_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
36+
time_test_LDFLAGS = $(OPAL_WRAPPER_EXTRA_LDFLAGS)
3637
time_test_LDADD = \
3738
$(top_builddir)/opal/libopen-pal.la
3839
time_test_DEPENDENCIES = $(time_test_LDADD)
3940

4041
event_test_SOURCES = event-test.c
41-
event_test_LDFLAGS = $(WRAPPER_EXTRA_LDFLAGS)
42+
event_test_LDFLAGS = $(OPAL_WRAPPER_EXTRA_LDFLAGS)
4243
event_test_LDADD = \
4344
$(top_builddir)/opal/libopen-pal.la
4445
event_test_DEPENDENCIES = $(event_test_LDADD)

0 commit comments

Comments
 (0)