File: pmix_setup_wrappers.m4

package info (click to toggle)
openmpi 5.0.8-4
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 201,684 kB
  • sloc: ansic: 613,078; makefile: 42,353; sh: 11,194; javascript: 9,244; f90: 7,052; java: 6,404; perl: 5,179; python: 1,859; lex: 740; fortran: 61; cpp: 20; tcl: 12
file content (462 lines) | stat: -rw-r--r-- 22,283 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
dnl -*- shell-script -*-
dnl
dnl Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
dnl                         University Research and Technology
dnl                         Corporation.  All rights reserved.
dnl Copyright (c) 2004-2005 The University of Tennessee and The University
dnl                         of Tennessee Research Foundation.  All rights
dnl                         reserved.
dnl Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
dnl                         University of Stuttgart.  All rights reserved.
dnl Copyright (c) 2004-2005 The Regents of the University of California.
dnl                         All rights reserved.
dnl Copyright (c) 2006-2010 Oracle and/or its affiliates.  All rights reserved.
dnl Copyright (c) 2009-2016 Cisco Systems, Inc.  All rights reserved.
dnl Copyright (c) 2015-2017 Research Organization for Information Science
dnl                         and Technology (RIST). All rights reserved.
dnl Copyright (c) 2016      IBM Corporation.  All rights reserved.
dnl Copyright (c) 2017-2020 Intel, Inc.  All rights reserved.
dnl Copyright (c) 2021-2022 Nanook Consulting.  All rights reserved.
dnl Copyright (c) 2021      Amazon.com, Inc. or its affiliates.
dnl                         All Rights reserved.
dnl $COPYRIGHT$
dnl
dnl Additional copyrights may follow
dnl
dnl $HEADER$
dnl

# PMIX_WRAPPER_FLAGS_ADD(variable, new_argument)
# ----------------------------------------------
# Add new_argument to the list of arguments for variable in the
# wrapper compilers, if it's not already there.  For example:
#   PMIX_WRAPPER_FLAGS_ADD(CFLAGS, "-pthread")
# will add -pthread to the list of CFLAGS the wrappers use when invoked.
#
# This macro MAY NOT be invoked from configure macros for MCA components.
# See the comment in SETUP_WRAPPER_INIT (below) for more information.
AC_DEFUN([PMIX_WRAPPER_FLAGS_ADD], [
    m4_ifdef([mca_component_configure_active],
        [m4_fatal([PMIX_WRAPPER_FLAGS_ADD can not be called from a component configure])])
    m4_if([$1], [CPPFLAGS], [PMIX_FLAGS_APPEND_UNIQ([wrapper_extra_cppflags], [$2])],
          [$1], [CFLAGS], [PMIX_FLAGS_APPEND_UNIQ([wrapper_extra_cflags], [$2])],
          [$1], [LDFLAGS], [PMIX_FLAGS_APPEND_UNIQ([wrapper_extra_ldflags], [$2])],
          [$1], [STATIC_LDFLAGS], [PMIX_FLAGS_APPEND_UNIQ([wrapper_extra_static_ldflags], [$2])],
          [$1], [LIBS], [PMIX_FLAGS_APPEND_UNIQ([wrapper_extra_libs], [$2])],
          [$1], [STATIC_LIBS], [PMIX_FLAGS_APPEND_UNIQ([wrapper_extra_static_libs], [$2])],
          [$1], [PC_MODULES], [PMIX_APPEND_UNIQ([wrapper_extra_pkgconfig_modules], [$2])],
          [m4_fatal([Unknown wrapper flag type $1])])
])


# PMIX_SETUP_WRAPPER_INIT()
# -------------------------
# Setup wrapper compiler configuration information.  Should be called early to
# prevent lots of calculations and then an abort for a silly user typo.  This
# macro works in pair with PMIX_SETUP_WRAPPER_FINAL, which should be called
# almost at the end of configure (after the last call to PMIX_WRAPPER_FLAGS_ADD
# and after the MCA system has been setup).
#
# The wrapper compiler arguments are a little fragile and should NOT
# be edited by configure directly.  Instead, main configure should use
# PMIX_WRAPPER_FLAGS_ADD.
#
# When building statically, the MCA system will add
# <framework>_<component>_WRAPPER_EXTRA_{LDFLAGS, LIBS} if set and try
# to add <framework>_<component>_{LDFLAGS, LIBS} (if not an external
# configure) to the wrapper LDFLAGS and LIBS.  Any arguments in
# <framework>_<component>_WRAPPER_EXTRA_CPPFLAGS are passed to the
# wrapper compilers IF AND ONLY IF the framework was a STOP_AT_FIRST
# framework, the component is a static component, and devel headers
# are installed.  Note that MCA components are ONLY allowed to
# (indirectly) influence the wrapper CPPFLAGS, LDFLAGS, and LIBS.
# That is, a component may not influence CFLAGS.
#
# Notes:
#   * Keep user flags separate as 1) they should have no influence
#     over build and 2) they don't go through the uniqification we do
#     with the other wrapper compiler options
#   * While the user (the person who runs configure) is allowed to set
#     <flag>_prefix, configure is not.  There's no known use case for
#     doing so, and we'd like to force the issue.
AC_DEFUN([PMIX_SETUP_WRAPPER_INIT],[
    AC_ARG_WITH([wrapper-cflags],
                [AS_HELP_STRING([--with-wrapper-cflags],
                                [Extra flags to add to CFLAGS when using mpicc])])
    AS_IF([test "$with_wrapper_cflags" = "yes" || test "$with_wrapper_cflags" = "no"],
          [AC_MSG_ERROR([--with-wrapper-cflags must have an argument.])])

    AC_ARG_WITH([wrapper-cflags-prefix],
                [AS_HELP_STRING([--with-wrapper-cflags-prefix],
                                [Extra flags (before user flags) to add to CFLAGS when using mpicc])])
    AS_IF([test "$with_wrapper_cflags_prefix" = "yes" || test "$with_wrapper_cflags_prefix" = "no"],
          [AC_MSG_ERROR([--with-wrapper-cflags-prefix must have an argument.])])

    AC_ARG_WITH([wrapper-ldflags],
                [AS_HELP_STRING([--with-wrapper-ldflags],
                                [Extra flags to add to LDFLAGS when using wrapper compilers])])
    AS_IF([test "$with_wrapper_ldflags" = "yes" || test "$with_wrapper_ldflags" = "no"],
          [AC_MSG_ERROR([--with-wrapper-ldflags must have an argument.])])

    AC_ARG_WITH([wrapper-libs],
                [AS_HELP_STRING([--with-wrapper-libs],
                                [Extra flags to add to LIBS when using wrapper compilers])])
    AS_IF([test "$with_wrapper_libs" = "yes" || test "$with_wrapper_libs" = "no"],
          [AC_MSG_ERROR([--with-wrapper-libs must have an argument.])])

    AC_MSG_CHECKING([if want wrapper compiler rpath support])
    AC_ARG_ENABLE([wrapper-rpath],
                  [AS_HELP_STRING([--enable-wrapper-rpath],
                  [enable rpath/runpath support in the wrapper compilers (default=yes)])])
    AS_IF([test "$enable_wrapper_rpath" != "no"], [enable_wrapper_rpath=yes])
    AC_MSG_RESULT([$enable_wrapper_rpath])

    AC_MSG_CHECKING([if want wrapper compiler runpath support])
    AC_ARG_ENABLE([wrapper-runpath],
                  [AS_HELP_STRING([--enable-wrapper-runpath],
                  [enable runpath in the wrapper compilers if linker supports it (default: enabled,  unless wrapper-rpath is disabled).])])
    AS_IF([test "$enable_wrapper_runpath" != "no"], [enable_wrapper_runpath=yes])
    AC_MSG_RESULT([$enable_wrapper_runpath])

    AS_IF([test "$enable_wrapper_rpath" = "no" && test "$enable_wrapper_runpath" = "yes"],
          [AC_MSG_ERROR([--enable-wrapper-runpath cannot be selected with --disable-wrapper-rpath])])
])

# PMIX_LIBTOOL_CONFIG(libtool-variable, result-variable,
#                     libtool-tag, extra-code)
# Retrieve information from the generated libtool
AC_DEFUN([PMIX_LIBTOOL_CONFIG],[
    PMIX_VAR_SCOPE_PUSH([rpath_script rpath_outfile])
    # Output goes into globally-visible variable.  Run this in a
    # sub-process so that we don't pollute the current process
    # environment.
    rpath_script=conftest.$$.sh
    rpath_outfile=conftest.$$.out
    rm -f $rpath_script $rpath_outfile
    cat > $rpath_script <<EOF
#!/bin/sh

# Slurp in the libtool config into my environment

# Apparently, "libtoool --config" calls "exit", so we can't source it
# (because if script A sources script B, and B calls "exit", then both
# B and A will exit).  Instead, we have to send the output to a file
# and then source that.
$PMIX_TOP_BUILDDIR/libtool $3 --config > $rpath_outfile

chmod +x $rpath_outfile
. ./$rpath_outfile
rm -f $rpath_outfile

# Evaluate \$$1, and substitute in LIBDIR for \$libdir
$4
flags="\`eval echo \$$1\`"
echo \$flags

# Done
exit 0
EOF
    chmod +x $rpath_script
    $2=`./$rpath_script`
    rm -f $rpath_script
    PMIX_VAR_SCOPE_POP
])

# Check to see whether the linker supports DT_RPATH.  We'll need to
# use config.rpath to find the flags that it needs, if it does (see
# comments in config.rpath for an explanation of where it came from).
AC_DEFUN([PMIX_SETUP_RPATH],[
    PMIX_VAR_SCOPE_PUSH([rpath_libdir_save])
    AC_MSG_CHECKING([if linker supports RPATH])
    PMIX_LIBTOOL_CONFIG([hardcode_libdir_flag_spec],[rpath_args],[],[libdir=LIBDIR])

    AS_IF([test -n "$rpath_args"],
          [WRAPPER_RPATH_SUPPORT=rpath
           AC_MSG_RESULT([yes ($rpath_args)])],
          [WRAPPER_RPATH_SUPPORT=unnecessary
           AC_MSG_RESULT([yes (no extra flags needed)])])

    PMIX_VAR_SCOPE_POP

    # If we found RPATH support, check for RUNPATH support, too
    AS_IF([test "$WRAPPER_RPATH_SUPPORT" = "rpath"],
          [PMIX_SETUP_RUNPATH])
])

# Check to see if the linker supports the DT_RUNPATH flags via
# --enable-new-dtags (a GNU ld-specific option).  These flags are more
# social than DT_RPATH -- they can be overridden by LD_LIBRARY_PATH
# (where a regular DT_RPATH cannot).
#
# If DT_RUNPATH is supported, then we'll use *both* the RPATH and
# RUNPATH flags in the LDFLAGS.
AC_DEFUN([PMIX_SETUP_RUNPATH],[
    PMIX_VAR_SCOPE_PUSH([LDFLAGS_save])

    # Set the output in $runpath_args
    runpath_args=
    LDFLAGS_save=$LDFLAGS
    LDFLAGS="$LDFLAGS -Wl,--enable-new-dtags"
    AS_IF([test x"$enable_wrapper_runpath" = x"yes"],
           [AC_LANG_PUSH([C])
            AC_MSG_CHECKING([if linker supports RUNPATH])
            AC_LINK_IFELSE([AC_LANG_PROGRAM([], [return 7;])],
                           [WRAPPER_RPATH_SUPPORT=runpath
                            runpath_args="-Wl,--enable-new-dtags"
                            AC_MSG_RESULT([yes (-Wl,--enable-new-dtags)])],
                           [AC_MSG_RESULT([no])])
            AC_LANG_POP([C])])
    LDFLAGS=$LDFLAGS_save

    PMIX_VAR_SCOPE_POP
])

# Called to find all -L arguments in the LDFLAGS and add in RPATH args
# for each of them.  Then also add in an RPATH for @{libdir} (which
# will be replaced by the wrapper compile to the installdir libdir at
# runtime), and the RUNPATH args, if we have them.
AC_DEFUN([RPATHIFY_LDFLAGS_INTERNAL],[
    PMIX_VAR_SCOPE_PUSH([rpath_out rpath_dir rpath_tmp])
    AS_IF([test "$enable_wrapper_rpath" = "yes" && test "$WRAPPER_RPATH_SUPPORT" != "disabled" && test "$WRAPPER_RPATH_SUPPORT" != "unnecessary"], [
           rpath_out=""
           for val in ${$1}; do
               case $val in
               -L*)
                   rpath_dir=`echo $val | cut -c3-`
                   rpath_tmp=`echo ${$2} | sed -e s@LIBDIR@$rpath_dir@`
                   PMIX_APPEND([rpath_out], ["$rpath_tmp"])
                   ;;
               esac
           done

           $1="${$1} ${rpath_out}"
         ])
    PMIX_VAR_SCOPE_POP
])

AC_DEFUN([RPATHIFY_LDFLAGS],[RPATHIFY_LDFLAGS_INTERNAL([$1], [rpath_args])])


# PMIX_SETUP_WRAPPER_FINAL()
# ---------------------------
#
# Here are the situations that we need to cover with wrapper compilers
# and pkg-config files:
#
# 1) --enable-shared --disable-static (today's default): Any
#    application linking against libpmix will be a dynamically linked
#    application
# 2) --enable-shared --enable-static: An application linking against
#    libpmix will dynamically link against libpmix unless -static (or
#    similar) is passed, in which case it will static link against
#    libpmix (and the static versions of all of libpmix's dependencies).
# 3) --disable-shared --enable-static: Any application linking against
#    libpmix will link against libpmix.a.  That application will link
#    against the dynamic versions of libpmix's dependencies, unless
#    -static is passed.
#
# There is one situation we should explicitly handle in terms of
# wrapper compilers (someone could parse out all the right pkg-config
# or wrapper compiler options to get the right dependent libraries, of
# course):
#
# 1) --enable-shared --enable-static: An application links via
#    /usr/lib/libpmix.a instead of -lpmix.  We'll make no attempts to
#    recognize this case with the wrapper compiler
#
# So, we essentially have 5 cases above to cover with the wrapper
# compiler and pkg-config.  For the wrapper compiler, this means:
#
# 1) --enable-shared --disable-static: Regardless of the -static flag,
#    we only add the -L${libdir} -lpmix
# 2) --enable-shared --enable-static / no -static flag: we add
#    -L${libdir} -lpmix
# 3) --enable-shared --enable-static / -static flag: we add
#    -L${libdir} -lpmix plus the LDFLAGS and LIBS for our dependencies
#    AND their reported dependencies (ie the results of pkg-config --libs
#    --static for all our dependencies).
# 4) --disable-shared --enable-static / no -static flag: We add
#    -L${libdir} -lpmix plus the LDFLAGS and LIBS for our dependencies,
#    but not their dependencies (ie, the results of pkg-config --libs for
#    all our dependencies)
# 5) --disable-shared --enable-static / -static flag: We add
#    -L${libdir} -lpmix plus the LDFLAGS and LIBs for our dependencies
#    AND their reported dependencies (ie, the results of pkg-config
#    --libs --static for all our dependencies)
#
# For the pkg-config modules, this means:
#
# 1) --enable-shared --disable-static: We add -L${libdir} -lpmix to
#    Libs and Libs.private, Modules, and Modules.private are empty
# 2/3) --enable-shared --enable-static: We add -L${libdir} -lpmix to
#    Libs, Libs.private contains all the -L/-ls from our dependencies
#    that don't have pkg-config modules, Modules is empty, and
#    Modules.private contains all the modules for our dependencies.
# 4/5) --disable-shared --enable-static: We add -L${libdir} -lpmix to
#    Libs, Libs.private contains all the -L/-ls from our dependencies that
#    don't have pkg-config modules, Modules contains all the modules for
#    our dependencies, and Modules.private is empty.
#
# 2/3 means that `pkg-config --libs pmix` would return -L${libdir}
#  -lpmix and `pkg-config --libs --static pmix` would return
# -L${libdir} -lpmix -Lnon-pkg-config-dependency
# -lnon-pkg-config-dependency ...., plus all the `pkg-config --libs
# --static` results for all our pkg-config dependencies.
#
# 4/5 means that `pkg-config --libs pmix` would return -L${libdir}
# -lpmix -Lnon-pkg-config-dependency -lnon-pkg-config-dependency ....,
# plus all the `pkg-config --libs` results for all our pkg-config
# dependencies AND that `pkg-config --libs --static pmix` would return
# -L${libdir} -lpmix -Lnon-pkg-config-dependency
# -lnon-pkg-config-dependency ...., plus all the `pkg-config --libs
# --static` results for all our pkg-config dependencies.
AC_DEFUN([PMIX_SETUP_WRAPPER_FINAL],[

    # Setup RPATH support, if desired
    WRAPPER_RPATH_SUPPORT=disabled
    AS_IF([test "$enable_wrapper_rpath" = "yes"],
          [PMIX_SETUP_RPATH])
    AS_IF([test "$enable_wrapper_rpath" = "yes" && test "$WRAPPER_RPATH_SUPPORT" = "disabled"],
          [AC_MSG_WARN([RPATH support requested but not available])
           AC_MSG_ERROR([Cannot continue])])

    dnl We now have all relevant flags.  Substitute them in everywhere.

    dnl We do not want ${includedir} to be expanded, as we want that
    dnl expansion to happen in the wrapper or pkg-config.  We do want
    dnl ${pmixincludedir} to be expanded now (likely to
    dnl ${includedir}/pmix), as pkg-config and the wrappers otherwise
    dnl won't know what to do with the variable.
    AC_MSG_CHECKING([for PMIX wrapper CPPFLAGS])
    PMIX_WRAPPER_CPPFLAGS='-I${includedir}'" -I${pmixincludedir} ${pmix_mca_wrapper_extra_cppflags} ${wrapper_extra_cppflags} ${with_wrapper_cppflags}"
    AC_SUBST([PMIX_WRAPPER_CPPFLAGS])
    AC_MSG_RESULT([$PMIX_WRAPPER_CPPFLAGS])

    AC_MSG_CHECKING([for PMIX wrapper CFLAGS])
    PMIX_WRAPPER_CFLAGS="$wrapper_extra_cflags $with_wrapper_cflags"
    AC_SUBST([PMIX_WRAPPER_CFLAGS])
    AC_MSG_RESULT([$PMIX_WRAPPER_CFLAGS])

    AC_MSG_CHECKING([for PMIX wrapper CFLAGS_PREFIX])
    PMIX_WRAPPER_CFLAGS_PREFIX="$with_wrapper_cflags_prefix"
    AC_SUBST([PMIX_WRAPPER_CFLAGS_PREFIX])
    AC_MSG_RESULT([$PMIX_WRAPPER_CFLAGS_PREFIX])

    dnl Add LIBS into the extra wrapper libs, since this is as last
    dnl minute as we can get.  We do the temp variable bit because of
    dnl libevent and hwloc dependencies.  LIBS is going to contain
    dnl libevent/libev/hwloc libraries, but their dependencies are
    dnl already in wrapper_extra_libs.  We do not want to move -lhwloc
    dnl (for example) to the far right, right of its dependencies.  So
    dnl we start with our base libs, and add all the wrapper extra
    dnl bits to that.
    tmp_flags="${LIBS}"
    PMIX_FLAGS_APPEND_MOVE([tmp_flags], [${wrapper_extra_libs}])
    wrapper_extra_libs="${tmp_flags}"
    AS_UNSET([tmp_flags])

    dnl No matter the configuration (see the 5 cases above), the base
    dnl flags should contain a -L${libdir} and -lpmix, so that those
    dnl are found.
    PMIX_WRAPPER_LDFLAGS='-L${libdir}'
    PMIX_WRAPPER_LIBS=-lpmix
    PMIX_WRAPPER_LIBS_STATIC=
    PMIX_WRAPPER_LDFLAGS_STATIC=

    AS_IF(dnl shared only case.  We add no flags beyond the base -L/-l
          [test "${enable_shared}" != "no" -a "${enable_static}" != "yes"],
          [],
          dnl building both shared and static libraries.  The base
          dnl case remains the same as the shared-only case (because
          dnl the app will link against the shared library, but the
          dnl static case is the full dependency tree.  Our full
          dnl dependency tree is both the wrapper_extra_libs and
          dnl wrapper_extra_static_libs, because wrapper_extra_libs
          dnl was not added to the normal case.
          [test "${enable_shared}" != "no" -a "${enable_static}" = "yes"],
          [PMIX_FLAGS_APPEND_UNIQ([PMIX_WRAPPER_LDFLAGS_STATIC], [${pmix_mca_wrapper_extra_ldflags} ${wrapper_extra_ldflags}])
           PMIX_FLAGS_APPEND_MOVE([PMIX_WRAPPER_LIBS_STATIC], [${pmix_mca_wrapper_extra_libs} ${wrapper_extra_libs}])
           PMIX_FLAGS_APPEND_UNIQ([PMIX_WRAPPER_LDFLAGS_STATIC], [${pmix_mca_wrapper_extra_static_ldflags} ${wrapper_extra_static_ldflags}])
           PMIX_FLAGS_APPEND_MOVE([PMIX_WRAPPER_LIBS_STATIC], [${pmix_mca_wrapper_extra_static_libs} ${wrapper_extra_static_libs}])],
          dnl building static only.  The base case is that we need to
          dnl list our dependencies, but not the full treee, because
          dnl we assume that our dependencies will be shared libraries
          dnl (unless they too were built static only, in which case
          dnl their dependencies will be our direct dependencies if
          dnl their modules are setup correctly).  The static case is
          dnl our full dependency tree, but we only need to list the
          dnl second leve explicitly, because the wrapper compiler
          dnl and/or pkg-config merge use the normal case data in the
          dnl static case.
          [PMIX_FLAGS_APPEND_UNIQ([PMIX_WRAPPER_LDFLAGS], [${pmix_mca_wrapper_extra_ldflags} ${wrapper_extra_ldflags}])
           PMIX_FLAGS_APPEND_MOVE([PMIX_WRAPPER_LIBS], [${pmix_mca_wrapper_extra_libs} ${wrapper_extra_libs}])
           PMIX_FLAGS_APPEND_UNIQ([PMIX_WRAPPER_LDFLAGS_STATIC], [${pmix_mca_wrapper_extra_static_ldflags} ${wrapper_extra_static_ldflags}])
           PMIX_FLAGS_APPEND_MOVE([PMIX_WRAPPER_LIBS_STATIC], [${pmix_mca_wrapper_extra_static_libs} ${wrapper_extra_static_libs}])])

    dnl Add the user-provided flags
    PMIX_FLAGS_APPEND_UNIQ([PMIX_WRAPPER_LDFLAGS], [${with_wrapper_ldflags}])
    PMIX_FLAGS_APPEND_MOVE([PMIX_WRAPPER_LIBS], [${with_wrapper_libs}])

    RPATHIFY_LDFLAGS([PMIX_WRAPPER_LDFLAGS])
    RPATHIFY_LDFLAGS([PMIX_WRAPPER_LDFLAGS_STATIC])

    PMIX_FLAGS_APPEND_UNIQ([PMIX_WRAPPER_LDFLAGS], [${runpath_args}])

    AC_MSG_CHECKING([for PMIX LDFLAGS])
    AC_SUBST([PMIX_WRAPPER_LDFLAGS])
    AC_MSG_RESULT([$PMIX_WRAPPER_LDFLAGS])

    AC_MSG_CHECKING([for PMIX static LDFLAGS])
    AC_SUBST([PMIX_WRAPPER_LDFLAGS_STATIC])
    AC_MSG_RESULT([$PMIX_WRAPPER_LDFLAGS_STATIC])

    AC_MSG_CHECKING([for PMIX LIBS])
    AC_SUBST([PMIX_WRAPPER_LIBS])
    AC_MSG_RESULT([$PMIX_WRAPPER_LIBS])

    AC_MSG_CHECKING([for PMIX static LIBS])
    AC_SUBST([PMIX_WRAPPER_LIBS_STATIC])
    AC_MSG_RESULT([$PMIX_WRAPPER_LIBS_STATIC])

    dnl ####################################################################
    dnl  Setup variables for pkg-config file (maint/pmix.pc.in)
    dnl
    dnl Add all our dependent libraries to libs.Private for users that want
    dnl to static build, unless we're only building static libraries, in
    dnl which case, add the dependent libraries to libs itself, since any
    dnl linking will require the full set of libraries.
    dnl ####################################################################
    AC_MSG_CHECKING([for PMIX pkg-config Cflags])
    PMIX_PC_CFLAGS="${PMIX_WRAPPER_CPPFLAGS} ${PMIX_WRAPPER_CFLAGS} ${PMIX_WRAPPER_CFLAGS_PREFIX}"
    PMIX_PC_CFLAGS=`echo ${PMIX_PC_CFLAGS} | sed -e 's/@{/\${/g'`
    AC_SUBST([PMIX_PC_CFLAGS])
    AC_MSG_RESULT([${PMIX_PC_CFLAGS}])

    AC_MSG_CHECKING([for PMIX pkg-config Libs])
    PMIX_PC_LIBS="${PMIX_WRAPPER_LDFLAGS} ${PMIX_WRAPPER_LIBS}"
    PMIX_PC_LIBS=`echo ${PMIX_PC_LIBS} | sed -e 's/@{/\${/g'`
    AC_SUBST([PMIX_PC_LIBS])
    AC_MSG_RESULT([${PMIX_PC_LIBS}])

    AC_MSG_CHECKING([for PMIX pkg-config Libs.private])
    PMIX_PC_LIBS_PRIVATE="${PMIX_WRAPPER_LDFLAGS_STATIC} ${PMIX_WRAPPER_LIBS_STATIC}"
    PMIX_PC_LIBS_PRIVATE=`echo ${PMIX_PC_LIBS_PRIVATE} | sed -e 's/@{/\${/g'`
    AC_SUBST([PMIX_PC_LIBS_PRIVATE])
    AC_MSG_RESULT([${PMIX_PC_LIBS_PRIVATE}])

    PMIX_PC_MODULES=
    PMIX_PC_MODULES_PRIVATE=
    AS_IF([test "${enable_shared}" != "no" -a "${enable_static}" != "yes"],
          [],
          [test "${enable_shared}" != "no" -a "${enable_static}" = "yes"],
          [PMIX_PC_MODULES_PRIVATE="${wrapper_extra_pkgconfig_modules} ${pmix_mca_wrapper_extra_pc_modules}"],
          [PMIX_PC_MODULES="${wrapper_extra_pkgconfig_modules} ${pmix_mca_wrapper_extra_pc_modules}"])

    AC_MSG_CHECKING([for PMIX pkg-config Modules])
    AC_SUBST([PMIX_PC_MODULES])
    AC_MSG_RESULT([${PMIX_PC_MODULES}])

    AC_MSG_CHECKING([for PMIX pkg-config Modules.private])
    AC_SUBST([PMIX_PC_MODULES_PRIVATE])
    AC_MSG_RESULT([${PMIX_PC_MODULES_PRIVATE}])
])