-
Notifications
You must be signed in to change notification settings - Fork 53
/
configure.ac
executable file
·1074 lines (909 loc) · 42.4 KB
/
configure.ac
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
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- autoconf -*-
#
# Copyright 2011 Sandia Corporation. Under the terms of Contract
# DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government
# retains certain rights in this software.
#
# Copyright (c) 2017 Intel Corporation. All rights reserved.
# This software is available to you under the BSD license.
#
# This file is part of the Sandia OpenSHMEM software package. For license
# information, see the LICENSE file in the top level directory of the
# distribution.
dnl Init Autoconf/Automake/Libtool
AC_INIT([Sandia OpenSHMEM], [1.5.3rc1], [https://github.com/Sandia-OpenSHMEM/SOS/issues], [sandia-openshmem], [https://github.com/Sandia-OpenSHMEM/SOS])
AC_PREREQ([2.60])
AC_CONFIG_AUX_DIR([config])
AC_CONFIG_MACRO_DIR([config])
AM_INIT_AUTOMAKE([foreign check-news color-tests parallel-tests dist-bzip2 no-define subdir-objects tar-ustar 1.11 -Wall -Werror])
m4_ifndef([AS_VAR_COPY],
[m4_define([AS_VAR_COPY],
[AS_LITERAL_IF([$1[]$2], [$1=$$2], [eval $1=\$$2])])])
dnl Work around change in how the rules were implemented between
dnl 1.11.2 and 1.11.3.
AM_SILENT_RULES([yes])
AS_IF([test -z "$AM_V"],
[AM_V='$(V)'
AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
AC_SUBST([AM_V])
AC_SUBST([AM_DEFAULT_V])])
dnl information on the package
AC_CONFIG_HEADERS([src/config.h])
AC_CANONICAL_HOST
OPAL_CONFIGURE_SETUP
OPAL_CHECK_ATTRIBUTES
AS_IF([test "$opal_cv___attribute__deprecated" = 1],
[SHMEM_AC_HAVE_ATTRIBUTE_DEPRECATED=1],
[SHMEM_AC_HAVE_ATTRIBUTE_DEPRECATED=0])
AC_SUBST(SHMEM_AC_HAVE_ATTRIBUTE_DEPRECATED)
OPAL_CHECK_PMIX
AC_ARG_ENABLE([picky],
[AC_HELP_STRING([--enable-picky],
[Enable developer-level compiler pickyness when building (default: disabled)])])
AC_ARG_ENABLE([debug],
[AC_HELP_STRING([--enable-debug],
[Include debugging symbols in the build (default: disabled)])])
AC_ARG_ENABLE([error-checking],
[AC_HELP_STRING([--enable-error-checking],
[Enable error checking for SHMEM calls (default:disabled)])])
AS_IF([test "$enable_error_checking" = "yes"], [AC_DEFINE([ENABLE_ERROR_CHECKING], [1], [Enable argument checking])])
AM_CONDITIONAL([ENABLE_ERROR_CHECKING], [test "$enable_error_checking" = "yes"])
AC_ARG_ENABLE([deprecated-tests],
[AC_HELP_STRING([--enable-deprecated-tests],
[Enable deprecated SHMEM API calls in tests (default:disabled)])])
AM_CONDITIONAL([ENABLE_DEPRECATED_TESTS], [test "$enable_deprecated_tests" = "yes"])
AC_ARG_ENABLE([hard-polling],
[AC_HELP_STRING([--enable-hard-polling],
[Enable hard polling of wait calls (default:automatic)])])
AS_IF([test "$enable_hard_polling" = "yes"], [AC_DEFINE([ENABLE_HARD_POLLING], [1], [Enable hard polling])])
AC_ARG_ENABLE([completion-polling],
[AC_HELP_STRING([--enable-completion-polling],
[Enable polling in quiet, fence, and local completion operations (default:disabled)])])
AC_ARG_ENABLE([hwloc-enforce-single-socket],
[AC_HELP_STRING([--enable-hwloc-enforce-single-socket],
[Repin process to ensure it has affinity to cores within a single socket (default:disabled)])])
AS_IF([test "$enable_hwloc_enforce_single_socket" = "yes"], [AC_DEFINE([HWLOC_ENFORCE_SINGLE_SOCKET], [1], [Repin process to ensure it has affinity to cores within a single socket])])
AC_ARG_ENABLE([hwloc-enforce-single-numa-node],
[AC_HELP_STRING([--enable-hwloc-enforce-single-numa-node],
[Repin process to ensure it has affinity to cores within a single NUMA node (default:disabled)])])
AS_IF([test "$enable_hwloc_enforce_single_numa_node" = "yes"], [AC_DEFINE([HWLOC_ENFORCE_SINGLE_NUMA_NODE], [1], [Repin process to ensure it has affinity to cores within a single NUMA node])])
AC_ARG_ENABLE([manual-progress],
[AC_HELP_STRING([--enable-manual-progress],
[Enable intermittent progress calls inside transport layer (default:disabled)])])
AS_IF([test "$enable_completion_polling" = "yes" -o "$enable_manual_progress" = "yes"],
[AC_DEFINE([DEFAULT_POLL_LIMIT], [-1], [Poll limit for local/remote completions])],
[AC_DEFINE([DEFAULT_POLL_LIMIT], [0], [Poll limit for local/remote completions])])
AS_IF([test "$enable_manual_progress" = "yes"],
[AC_DEFINE([ENABLE_MANUAL_PROGRESS], [1], [Enable manual progress])])
AC_ARG_ENABLE([total-data-ordering],
[AC_HELP_STRING([--enable-total-data-ordering],
[Configure handling of total data ordering option. "no" or "never" to build with the assumption total data ordering will never be available. "yes" or "always" to build with the assumption total data ordering will always be available (if not, applications will abort in start_pes()). "check" to build with no assumptions, which may lead to a slight performance decrease on high performance networks. (default: disabled)])])
AS_CASE([x$enable_total_data_ordering],
[xyes|xalways], [ordering=1; msg="assume always available"],
[xno|xnever|x], [ordering=0; msg="assume never available"],
[xcheck], [ordering=2; msg="runtime check"],
[AC_MSG_ERROR([Unknown ordering requirement $enable_total_data_ordering])])
AC_DEFINE_UNQUOTED([WANT_TOTAL_DATA_ORDERING], [$ordering], [0 if never check for total data ordering, 1 if always assume total data ordering, 2 to check])
AC_MSG_CHECKING([For total data ordering behavior])
AC_MSG_RESULT([$msg])
AC_ARG_ENABLE([threads],
[AC_HELP_STRING([--disable-threads],
[Disable threading support (default:enabled)])])
AS_IF([test "$enable_threads" != "no"], [
OPAL_CONFIG_POSIX_THREADS(HAVE_POSIX_THREADS=1, HAVE_POSIX_THREADS=0)
AC_MSG_CHECKING([for working POSIX threads package])
if test "$HAVE_POSIX_THREADS" = "1" ; then
AC_MSG_RESULT([yes])
AC_SUBST(PTHREAD_CFLAGS)
AC_SUBST(PTHREAD_LIBS)
else
AC_MSG_RESULT([no])
fi
AC_DEFINE([ENABLE_THREADS], [1], [Enable threads])
AC_CHECK_HEADERS([stdatomic.h])
CHECK_GETTID(
[AC_DEFINE([HAVE_SYS_GETTID], [1], [Have support for SYS_gettid syscall])],
[AC_MSG_WARN([No support for SYS_gettid syscall])])
AS_IF([test "$enable_thread_completion" = "yes"],
[AC_DEFINE([USE_CTX_LOCK], [1], [Enable per-context locks])
AC_DEFINE([USE_THREAD_COMPLETION], [1], [Support SHMEM_THREAD_MULTIPLE using FI_THREAD_COMPLETION instead of FI_THREAD_SAFE])])
])
AM_CONDITIONAL([HAVE_PTHREADS], [test "$HAVE_POSIX_THREADS" = "1"])
AS_IF([test "$with_hwloc" != "no"], [
OPAL_VAR_SCOPE_PUSH([external_hwloc_happy internal_hwloc_happy opal_hwloc_STATIC_LDFLAGS opal_hwloc_LIBS opal_hwloc_STATIC_LIBS])
OPAL_3RDPARTY_WITH([hwloc], [hwloc], [package_hwloc])
_OPAL_CONFIG_HWLOC_EXTERNAL(
[external_hwloc_happy=1
opal_hwloc_mode="external"
AC_DEFINE([USE_HWLOC], [1], [Enable hwloc. Default behavior is to automatically enable hwloc if installation can be found])],
[AS_IF([test -n "$with_hwloc"],
[AC_MSG_ERROR([Could not find viable hwloc build.])],
[external_hwloc_happy=0
AC_MSG_WARN([Could not find viable hwloc build.])])]
)
OPAL_3RDPARTY_EXTRA_DIST="$OPAL_3RDPARTY_EXTRA_DIST hwloc_tarball"
OPAL_3RDPARTY_DISTCLEAN_DIRS="$OPAL_3RDPARTY_DISTCLEAN_DIRS hwloc_directory"
OPAL_WRAPPER_FLAGS_ADD([LDFLAGS], [${opal_hwloc_LDFLAGS}])
OPAL_WRAPPER_FLAGS_ADD([STATIC_LDFLAGS], [${opal_hwloc_STATIC_LDFLAGS}])
OPAL_WRAPPER_FLAGS_ADD([LIBS], [${opal_hwloc_LIBS}])
OPAL_WRAPPER_FLAGS_ADD([STATIC_LIBS], [${opal_hwloc_STATIC_LIBS}])
OPAL_WRAPPER_FLAGS_ADD([PC_MODULES], [${opal_hwloc_PC_MODULES}])
AC_CONFIG_COMMANDS_PRE([OPAL_CONFIG_HWLOC_INTERNAL_LIBS_HANDLER])
OPAL_SUMMARY_ADD([Miscellaneous], [hwloc], [], [$opal_hwloc_mode])
OPAL_VAR_SCOPE_POP
])
AS_IF([test "$enable_threads" != "no"], [
AS_IF([test "$enable_openmp" != "no"], [
AC_OPENMP
AC_SUBST(AM_OPENMP_CXXFLAGS,"$OPENMP_CXXFLAGS")
AC_SUBST(AM_OPENMP_CFLAGS,"$OPENMP_CFLAGS")])
])
AM_CONDITIONAL([HAVE_OPENMP], [test "$enable_threads" != "no" -a "$enable_openmp" != "no" -a "$ac_cv_prog_c_openmp" != "unsupported"])
AC_ARG_ENABLE([pthread-mutexes],
[AC_HELP_STRING([--enable-pthread-mutexes],
[Use pthread mutexes instead of internal queueing locks (default:disabled)])])
AS_IF([test "$enable_pthread_mutexes" = "yes"], [AC_DEFINE([ENABLE_PTHREAD_MUTEX], [1], [Enable pthread mutexes])])
AC_ARG_ENABLE([thread-completion],
[AC_HELP_STRING([--enable-thread-completion],
[Support SHMEM_THREAD_MULTIPLE in OFI transport using FI_THREAD_COMPLETION thread safety model instead of FI_THREAD_SAFE (default: disabled)])])
AC_ARG_ENABLE([remote-virtual-addressing],
[AC_HELP_STRING([--enable-remote-virtual-addressing],
[Enable optimizations assuming the symmetric heap and data segments are located at identical addresses at all PEs. This may cause erroneous behavior if this assumption is violated, but will reduce the instruction count for some operations. On Linux systems, this optimization requires disabling ASLR. This optimization also requires that the Portals 4 implementation support BIND_INACCESSIBLE on LEs. (default: disabled)])])
AS_IF([test "$enable_remote_virtual_addressing" = "yes"],
[AC_DEFINE([ENABLE_REMOTE_VIRTUAL_ADDRESSING], [1], [If defined, the implementation will use one LE/PT to cover all of the symmetric data and heap, setup so that no offset transformation is needed on the target virtual address.])])
AC_ARG_ENABLE([aslr-check],
[AC_HELP_STRING([--disable-aslr-check],
[Disable check for address space layout randomization (ASLR). This can be useful when ASLR is enabled, but position-independent executable generation is disabled by compiler or linker flags. (default: enabled)])])
AS_IF([test "$enable_aslr_check" = "no"],
[AC_DEFINE(DISABLE_ASLR_CHECK_AC, [1], [Disable ASLR check])])
AC_ARG_ENABLE([lengthy-tests],
[AC_HELP_STRING([--enable-lengthy-tests],
[Execute long running tests as part of "make check" (default: disabled)])])
AM_CONDITIONAL([ENABLE_LENGTHY_TESTS], [test "$enable_lengthy_tests" = "yes"])
AC_ARG_ENABLE([fortran],
[AC_HELP_STRING([--disable-fortran],
[Disable building the Fortran bindings (default: enabled)])])
AC_ARG_ENABLE([cxx],
[AC_HELP_STRING([--disable-cxx],
[Disable building the C++ bindings (default: enabled)])])
AC_ARG_ENABLE([c11-checks],
[AC_HELP_STRING([--disable-c11-checks],
[Disable build-time type checks for C11 bindings (default: enabled)])])
AC_ARG_ENABLE([libtool-wrapper],
[AS_HELP_STRING([--disable-libtool-wrapper],
[Disable use of libtool executable wrappers for tests (default: enabled)])])
AS_IF([test "$enable_libtool_wrapper" = "no"], [LIBTOOL_WRAPPER_LDFLAGS="-no-install"], [LIBTOOL_WRAPPER_LDFLAGS=])
AC_SUBST([LIBTOOL_WRAPPER_LDFLAGS])
AC_ARG_ENABLE([rpath],
[AS_HELP_STRING([--disable-rpath],
[Disable use of rpath in compiler wrappers and building tests (default: enabled)])])
AS_IF([test "$enable_rpath" = "no"], [], [enable_wrapper_rpath="yes"])
AC_ARG_ENABLE([profiling],
[AC_HELP_STRING([--enable-profiling],
[Enable profiling (pshmem) interface (default:disabled)])])
AS_IF([test "$enable_profiling" = "yes"],
[OPAL_C_WEAK_SYMBOLS()
AS_IF([test "$OPAL_C_HAVE_WEAK_SYMBOLS" = 1],
[AC_DEFINE([ENABLE_PROFILING], [1], [Enable profiling (pshmem) interface])],
[AC_MSG_ERROR("Profiling interface requires weak symbols support")])
])
AC_ARG_ENABLE([long-fortran-header],
[AC_HELP_STRING([--enable-long-fortran-header],
[Enable long Fortran header, including all function declarations (default:disabled)])])
AS_IF([test "$enable_long_fortran_header" = "yes"], [FORTRAN_LONG_HEADER=" "], [FORTRAN_LONG_HEADER="!"])
AC_SUBST([FORTRAN_LONG_HEADER])
AM_CONDITIONAL([HAVE_LONG_FORTRAN_HEADER], [test "$enable_long_fortran_header" = "yes"])
AC_ARG_ENABLE([ofi-mr],
[AC_HELP_STRING([--enable-ofi-mr=MODE],
[OFI memory registration mode: basic, scalable, or rma-event (default: scalable)])])
AS_IF([test -z "$enable_ofi_mr"], [enable_ofi_mr="scalable"])
AS_CASE([$enable_ofi_mr],
[basic],
[],
[scalable],
[AC_DEFINE([ENABLE_MR_SCALABLE], [1], [If defined, the OFI transport will use FI_MR_SCALABLE])],
[rma?event],
[AC_DEFINE([ENABLE_MR_RMA_EVENT], [1], [If defined, the OFI transport will use FI_MR_RMA_EVENT])
AC_DEFINE([ENABLE_MR_SCALABLE], [1], [If defined, the OFI transport will use FI_MR_SCALABLE])],
[AC_MSG_ERROR([Invalid OFI memory registration mode: $enable_ofi_mr])])
AC_ARG_ENABLE([mr-endpoint],
[AC_HELP_STRING([--enable-mr-endpoint],
[Use FI_MR_ENDPOINT to enable cxi provider. (default: disabled)])])
AS_IF([test "$enable_mr_endpoint" = "yes"],
[AC_DEFINE([ENABLE_MR_ENDPOINT], [1], [If defined, the OFI transport will use FI_MR_ENDPOINT])])
AC_ARG_ENABLE([ofi-manual-progress],
[AC_HELP_STRING([--enable-ofi-manual-progress],
[Use FI_MANUAL_PROGRESS for data progress control mode. (default: disabled)])])
AS_IF([test "$enable_ofi_manual_progress" = "yes"],
[AC_DEFINE([ENABLE_FI_MANUAL_PROGRESS], [1], [If defined, the OFI will use FI_MANUAL_PROGRESS as data progress mode. This is currently required for cxi provider.])])
AC_ARG_ENABLE([max-teams],
[AC_HELP_STRING([--enable-max-teams=NUMBER],
[Default value for the maximum number of teams allowed (default: 10)])])
AS_IF([test -z "$enable_max_teams"],
[AC_DEFINE([DEFAULT_TEAMS_MAX], [10], [Maximum number of teams (default)])],
[AC_DEFINE_UNQUOTED([DEFAULT_TEAMS_MAX], [$enable_max_teams], [Maximum number of teams (custom)])])
AC_ARG_ENABLE([rpm-prefix],
[AC_HELP_STRING([--enable-rpm-prefix],
[Generate RPM spec file that supports an alternate installation prefix (default:disabled)])])
AS_IF([test "$enable_rpm_prefix" = "yes"], [SOS_RPM_PREFIXED=""], [SOS_RPM_PREFIXED="# DISABLED: "])
AC_SUBST([SOS_RPM_PREFIXED])
AC_ARG_ENABLE([av-map],
[AC_HELP_STRING([--enable-av-map],
[enable av-map instead of av-table in the OFI transport. (default: disabled)])])
AS_IF([test "$enable_av_map" = "yes"],
[AC_DEFINE([USE_AV_MAP], [1], [If defined, the OFI transport will use FI_AV_MAP. Otherwise, FI_AV_TABLE is used.])])
AC_ARG_ENABLE([bounce-buffers],
[AC_HELP_STRING([--disable-bounce-buffers],
[Disable bounce buffers by default (default: enabled)])])
AS_IF([test "$enable_bounce_buffers" = "no"],
[AC_DEFINE([DEFAULT_BOUNCE_SIZE], [0], [Default bounce buffer threshold])],
[AC_DEFINE([DEFAULT_BOUNCE_SIZE], [2048], [Default bounce buffer threshold])])
AC_ARG_ENABLE([ofi-inject],
[AC_HELP_STRING([--disable-ofi-inject],
[Disable OFI inject by default (default: enabled)])])
AS_IF([test "$enable_ofi_inject" = "no"],
[AC_DEFINE([DISABLE_OFI_INJECT], [1], [If defined, the OFI will not use fi_inject.])])
AC_ARG_ENABLE([nonfetch-amo],
[AC_HELP_STRING([--disable-nonfetch-amo],
[Disable non-fetching AMO and replace them with fetching AMO (default: enabled)])])
AS_IF([test "$enable_nonfetch_amo" = "no"],
[AC_DEFINE([DISABLE_NONFETCH_AMO], [1], [If defined, SOS will fetch values for any AMO.])])
AC_ARG_WITH([oshrun-launcher],
[AC_HELP_STRING([--with-oshrun-launcher],
[Set launcher to be used by oshrun launcher wrapper. (default: auto)])])
AC_ARG_ENABLE([memcpy],
[AC_HELP_STRING([--enable-memcpy],
[Use memcpy to perform local put/get operations (default:disabled)])])
AC_ARG_ENABLE([ofi-fence],
[AC_HELP_STRING([--enable-ofi-fence],
[Use FI_FENCE feature to optimize put-with-signal operations. (default: disabled)])])
AS_IF([test "$enable_ofi_fence" = "yes"],
[AC_DEFINE([USE_FI_FENCE], [1], [If defined, the OFI transport will use FI_FENCE. Otherwise, transport layer fence is used.])])
AC_ARG_ENABLE([shr-atomics],
[AC_HELP_STRING([--enable-shr-atomics],
[Enable shared memory atomic operations. (default: auto)])])
AS_IF([test "$enable_shr_atomics" = "yes"],
[AC_DEFINE([USE_SHR_ATOMICS], [1], [If defined, the shared memory layer will perform processor atomics.])])
AC_ARG_ENABLE([manpages],
[AC_HELP_STRING([--enable-manpages],
[Include man pages in the installation (default:disabled)])])
AM_CONDITIONAL([ENABLE_MANPAGES], [test "$enable_manpages" = "yes"])
AS_IF([test "$enable_manpages" = "yes"], [SOS_RPM_MANPAGES=""], [SOS_RPM_MANPAGES="# DISABLED: "])
AC_SUBST([SOS_RPM_MANPAGES])
AC_ARG_ENABLE([ofi-hmem],
[AC_HELP_STRING([--enable-ofi-hmem],
[Use FI_HMEM to support transfers to and from device memory. (default: disabled)])])
AS_IF([test "$enable_ofi_hmem" = "yes"],
[AC_DEFINE([USE_FI_HMEM], [1], [If defined, the OFI transport will enable FI_HMEM.])])
PKG_INSTALLDIR()
dnl check for programs
AC_PROG_CC
AM_PROG_CC_C_O
AC_C_INLINE
AC_PROG_CXX dnl required even with --disable-cxx due to automake conditionals
m4_ifdef([AM_PROG_AR],[AM_PROG_AR])
AC_PATH_PROG([PERL],[perl])
AM_CONDITIONAL([EXTERNAL_TESTS], [false])
AM_CONDITIONAL([SHMEMX_TESTS], [true])
dnl C++ bindings require std::is_same, which is part of C++11
if test "$enable_cxx" != "no" ; then
AX_CXX_COMPILE_STDCXX([11])
fi
# start gnu11/gnu99 check
ORIG_CFLAGS=$CFLAGS
WRAPPER_COMPILER_CC=$CC
AC_SUBST([WRAPPER_COMPILER_CC])
AC_MSG_CHECKING([if -std=gnu11 works])
AC_LANG_PUSH([C])
C_COMPILER_VERSION=$("$CC" --version 2> /dev/null)
IS_ONEAPI_COMPILER=$(echo $C_COMPILER_VERSION | $GREP -c -E 'Intel\(R\) oneAPI')
if test "$IS_ONEAPI_COMPILER" -ne "0" ; then
CFLAGS="-std=gnu11"
else
CFLAGS="-pedantic-errors -std=gnu11"
fi
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
void g(int i){}
#define f(X) _Generic((X), default: g)(X)
]], [[
f(1);
]]
)],
[shmem_cv_c11_works="yes"], [shmem_cv_c11_works="no"])
AS_IF([test "$shmem_cv_c11_works" = "no"],
[AC_MSG_RESULT([no])
CFLAGS="$ORIG_CFLAGS"
AC_PROG_CC_C99
],
[AC_MSG_RESULT([yes])
CFLAGS="-std=gnu11 $ORIG_CFLAGS"]
)
AC_LANG_POP([C])
AM_CONDITIONAL([HAVE_C11], [test "$shmem_cv_c11_works" = "yes" -a "$enable_c11_checks" != "no"])
# end gnu11/gnu99 check
AC_PATH_PROG([M4], [m4], [false])
AS_IF([test "$M4" = "false"],
[AC_MSG_ERROR([Could not find 'm4' macro processor])])
if test "$enable_fortran" != "no" ; then
AC_PROG_FC
else
FC=
fi
if test "$FC" != "" ; then
#The oneAPI ifx compiler requires autoconf 2.70 to support AC_FC_WRAPPERS. If problems, please try ifort or updating autoconf:
#https://community.intel.com/t5/Intel-Fortran-Compiler/ifx-2021-1-beta04-HPC-Toolkit-build-error-with-loopopt/m-p/1184181
AC_FC_WRAPPERS
fi
AX_GCC_BUILTIN([__builtin_trap])
if test "$enable_picky" = "yes" -a "$GCC" = "yes" ; then
CFLAGS="$CFLAGS -Wall -Wno-long-long -Wmissing-prototypes -Wstrict-prototypes -Wcomment -pedantic"
else
CFLAGS="$CFLAGS -Wall"
fi
if test "$enable_debug" = "yes" ; then
CFLAGS="$CFLAGS -g"
fi
AC_CACHE_SAVE
AC_SEARCH_LIBS([clock_gettime], [rt],
[AC_DEFINE([HAVE_CLOCK_GETTIME], [1], [define if clock_gettime is available]) ])
CHECK_SCHED_GETAFFINITY(
[AC_DEFINE([HAVE_SCHED_GETAFFINITY], [1], [define if sched_getaffinity is available])], [])
AC_SEARCH_LIBS([ceil], [m], [], AC_MSG_ERROR([unable to find ceil() function]))
dnl check for libraries
OPAL_CHECK_PORTALS4([portals4],
[transport_portals4="yes"],
[transport_portals4="no"])
OPAL_CHECK_OFI
AS_IF([test "$opal_ofi_happy" = "yes"],
[transport_ofi="yes"],
[transport_ofi="no"])
OMPI_CHECK_UCX([ucx],
[transport_ucx="yes"],
[transport_ucx="no"])
num_transports=""
if test -n "$with_portals4" -a "$with_portals4" != "no" ; then
num_transports="x$num_transports"
fi
if test -n "$with_ofi" -a "$with_ofi" != "no" ; then
num_transports="x$num_transports"
fi
if test -n "$with_ucx" -a "$with_ucx" != "no" ; then
num_transports="x$num_transports"
fi
if test -n "$num_transports" -a "$num_transports" != "x" ; then
AC_MSG_ERROR([Cannot select more than one transport, see --help for details])
fi
if test -n "$with_portals4" -a "$with_portals4" != "no" ; then
transport="portals4"
transport_ofi="no"
transport_ucx="no"
AC_DEFINE([USE_PORTALS4], [1], [Define if Portals 4 transport active])
elif test -n "$with_ofi" -a "$with_ofi" != "no" ; then
transport="ofi"
transport_portals="no"
transport_ucx="no"
AC_DEFINE([USE_OFI], [1], [Define if OFI transport active])
elif test -n "$with_ucx" -a "$with_ucx" != "no" ; then
transport="ucx"
transport_ofi="no"
transport_portals="no"
AC_DEFINE([USE_UCX], [1], [Define if UCX transport active])
AC_DEFINE([ENABLE_HARD_POLLING], [1], [Enable hard polling])
else
transport="none"
transport_portals4="no"
transport_ofi="no"
transport_ucx="no"
AC_MSG_WARN([No transport requested])
fi
AM_CONDITIONAL([USE_PORTALS4], [test "$transport_portals4" = "yes"])
AM_CONDITIONAL([USE_OFI], [test "$transport_ofi" = "yes"])
AM_CONDITIONAL([USE_UCX], [test "$transport_ucx" = "yes"])
SANDIA_CHECK_XPMEM(
[transport_xpmem="yes"],
[transport_xpmem="no"])
CHECK_CMA(
[transport_cma="yes"],
[transport_cma="no"])
# If both XPMEM and CMA requested, user needs to choose one:
if test -n "$with_xpmem" -a "$with_xpmem" != "no" -a -n "$with_cma" -a "$with_cma" != "no" ; then
AC_MSG_ERROR([Cannot choose both XPMEM and CMA transports, see --help for details])
# Check which was requested, XPMEM or CMA:
elif test -n "$with_xpmem" -a "$with_xpmem" != "no" ; then
transport_cma="no"
AC_DEFINE([USE_XPMEM], [1], [Define if XPMEM transport is active])
elif test -n "$with_cma" -a "$with_cma" != "no" ; then
transport_xpmem="no"
AC_DEFINE([USE_CMA], [1], [Define if Cross Memory Attach transport is active])
AC_DEFINE([_GNU_SOURCE], [1], [CMA transport header requires global definition of _GNU_SOURCE])
# If neither, disable XPMEM and CMA:
else
transport_xpmem="no"
transport_cma="no"
AC_MSG_RESULT([Neither XPMEM nor CMA transport requested])
fi
if test "$enable_memcpy" = "yes" -a "$transport_xpmem" = "no" -a "$transport_cma" = "no" ; then
transport_memcpy="yes"
AC_DEFINE([USE_MEMCPY], [1], [Define to use memcpy for local put/get communication])
elif test "$transport_xpmem" = "yes" -o "$transport_cma" = "yes" ; then
transport_memcpy="yes"
else
transport_memcpy="no"
fi
AM_CONDITIONAL([USE_XPMEM], [test "$transport_xpmem" = "yes"])
AM_CONDITIONAL([USE_CMA], [test "$transport_cma" = "yes"])
AS_IF([test "$transport_xpmem" = "yes" -o "$transport_cma" = "yes"],
[AC_DEFINE([USE_ON_NODE_COMMS], [1], [Define if any on-node comm transport is available])
AC_DEFINE([ENABLE_HARD_POLLING], [1], [Enable hard polling])
])
if test "$enable_shr_atomics" = "yes"; then
transport_shr_atomics="yes"
else
transport_shr_atomics="no"
fi
if test "$enable_shr_atomics" != "no" -a "$transport_xpmem" = "yes" -a "$transport" = "none"; then
transport_shr_atomics="yes"
AC_DEFINE([USE_SHR_ATOMICS], [1], [If defined, the shared memory layer will perform processor atomics.])
fi
AC_ARG_ENABLE([pmi-simple], [AC_HELP_STRING([--enable-pmi-simple],
[Use MPICH simple PMI-1 library for process management])])
AC_ARG_ENABLE([pmi-mpi], [AC_HELP_STRING([--enable-pmi-mpi],
[Use MPI for process management])])
AS_IF([test "$enable_pmi_simple" = "yes" -o "$enable_pmi_mpi" = "yes"],
[TEST_RUNNER='$(abs_top_builddir)/src/oshrun -n $(NPROCS)'],
[OPAL_CHECK_PMI(pmi_type)])
AS_IF([test "$opal_external_pmix_version_found" = 1],
[pmi_CPPFLAGS="$opal_external_pmix_CPPFLAGS"
pmi_LDFLAGS="$opal_external_pmix_LDFLAGS"
pmi_LIBS="$opal_external_pmix_LIBS"])
AS_IF([test "$enable_pmi_simple" = "yes" -a "$enable_pmi_mpi" = "yes"],
[AC_MSG_ERROR([Cannot enable both simple PMI and MPI-PMI])])
AS_IF([test "$enable_pmi_mpi" = "yes"],
[AC_DEFINE([ENABLE_PMI_MPI], [1], [Enable argument checking])])
AM_CONDITIONAL([USE_PMI_MPI], [test "$enable_pmi_mpi" = "yes"])
AM_CONDITIONAL([USE_PMI_SIMPLE], [test "$enable_pmi_simple" = "yes"])
AM_CONDITIONAL([USE_PMI1], [test "$pmi_type" = "pmi1"])
AM_CONDITIONAL([USE_PMI2], [test "$pmi_type" = "pmi2"])
AM_CONDITIONAL([USE_PMIX], [test "$opal_external_pmix_version_found" = 1])
# Backtrace
## execinfo
AC_CHECK_HEADERS(execinfo.h)
bt_execinfo="no"
if test "$ac_cv_header_execinfo_h" = "yes" ; then
AC_SEARCH_LIBS(backtrace, execinfo)
AC_CHECK_FUNCS(backtrace backtrace_symbols)
if test "$ac_cv_func_backtrace" = "yes" && test "$ac_cv_func_backtrace_symbols" = "yes"; then
bt_execinfo="yes"
fi
fi
## gdb
AC_PATH_PROGS(GDB_PATH, $GDB gdb, , /usr/bin:${PATH})
if test -n "$GDB_PATH"; then
AC_DEFINE_UNQUOTED(GDB_PATH, "$GDB_PATH", [Path to GNU debugger])
fi
if test "$bt_execinfo" = "yes"; then
use_bt_option="$use_bt_option execinfo"
AC_DEFINE([USE_BT_EXECINFO], [1], [Execinfo library calls for backtrace])
if test "$IS_ONEAPI_COMPILER" -eq "0" ; then
case $host_os in
linux*)
CFLAGS="$CFLAGS -rdynamic"
;;
esac
fi
fi
if test -n "$GDB_PATH"; then
use_bt_option="$use_bt_option gdb"
AC_DEFINE([USE_BT_GDB], [1], [gdb for backtrace])
fi
if test -z "$use_bt_option"; then
use_bt_option=" not available"
fi
dnl check for header files
AC_CHECK_HEADERS([fnmatch.h])
AS_IF([test "$enable_pmi_simple" = "yes"],
[AC_CHECK_HEADERS([assert.h arpa/inet.h sys/types.h unistd.h stdlib.h string.h strings.h])
AC_DEFINE([USE_PMI_PORT], [1], [Use port])])
dnl check for types
AC_LANG_PUSH([C])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ ]], [[ _Complex v; ]] )],
[],
[AC_ERROR([C Compiler does not support _Complex])])
AC_LANG_POP([C])
SHMEM_FIND_INT_TYPE([char], [$transport])
SHMEM_FIND_INT_TYPE([signed char], [$transport])
SHMEM_FIND_INT_TYPE([short], [$transport])
SHMEM_FIND_INT_TYPE([int], [$transport])
SHMEM_FIND_INT_TYPE([long], [$transport])
SHMEM_FIND_INT_TYPE([long long], [$transport])
SHMEM_FIND_INT_TYPE([ptrdiff_t], [$transport])
SHMEM_FIND_UINT_TYPE([unsigned char], [$transport])
SHMEM_FIND_UINT_TYPE([unsigned short], [$transport])
SHMEM_FIND_UINT_TYPE([unsigned int], [$transport])
SHMEM_FIND_UINT_TYPE([unsigned long], [$transport])
SHMEM_FIND_UINT_TYPE([unsigned long long], [$transport])
SHMEM_FIND_UINT_TYPE([size_t], [$transport])
AC_CHECK_SIZEOF([float])
AC_CHECK_SIZEOF([double])
AC_CHECK_SIZEOF([long double])
AC_CHECK_SIZEOF([void*])
dnl Determine psync and pwrk sizes for collectives
C_LOG_MAXPES=32
AC_MSG_CHECKING([size of SHMEM_BCAST_SYNC_SIZE])
C_BCAST_SYNC_SIZE=1
AC_SUBST(C_BCAST_SYNC_SIZE)
AC_MSG_RESULT([$C_BCAST_SYNC_SIZE])
AC_MSG_CHECKING([size of SHMEM_REDUCE_SYNC_SIZE])
C_REDUCE_SYNC_SIZE=`$PERL -e "print $C_BCAST_SYNC_SIZE + 2 + $C_LOG_MAXPES"`
AC_SUBST(C_REDUCE_SYNC_SIZE)
AC_MSG_RESULT([$C_REDUCE_SYNC_SIZE])
AC_MSG_CHECKING([size of SHMEM_BARRIER_SYNC_SIZE])
C_BARRIER_SYNC_SIZE=`$PERL -e "print $ac_cv_sizeof_int * 8 * ($ac_cv_sizeof_int / $ac_cv_sizeof_long)"`
AC_SUBST(C_BARRIER_SYNC_SIZE)
AC_MSG_RESULT([$C_BARRIER_SYNC_SIZE])
AC_MSG_CHECKING([size of SHMEM_COLLECT_SYNC_SIZE])
linear_sync_size=`$PERL -e "print 2 + $C_BARRIER_SYNC_SIZE"`
tree_sync_size=`$PERL -e "print $C_BCAST_SYNC_SIZE + 3"`
recdbl_sync_size=`$PERL -e "print $ac_cv_sizeof_int * 8 * ($ac_cv_sizeof_int / $ac_cv_sizeof_long)"`
C_COLLECT_SYNC_SIZE=`$PERL -e "use List::Util qw(max); print max($linear_sync_size, $tree_sync_size, $recdbl_sync_size)"`
AC_SUBST(C_COLLECT_SYNC_SIZE)
AC_MSG_RESULT([$C_COLLECT_SYNC_SIZE])
AC_MSG_CHECKING([size of SHMEM_ALLTOALL_SYNC_SIZE])
C_ALLTOALL_SYNC_SIZE=$C_BARRIER_SYNC_SIZE
AC_SUBST(C_ALLTOALL_SYNC_SIZE)
AC_MSG_RESULT([$C_ALLTOALL_SYNC_SIZE])
AC_MSG_CHECKING([size of SHMEM_ALLTOALLS_SYNC_SIZE])
C_ALLTOALLS_SYNC_SIZE=$C_BARRIER_SYNC_SIZE
AC_SUBST(C_ALLTOALLS_SYNC_SIZE)
AC_MSG_RESULT([$C_ALLTOALLS_SYNC_SIZE])
AC_MSG_CHECKING([size of SHMEM_SYNC_SIZE])
C_SYNC_SIZE=`$PERL -e "use List::Util qw (max); print max(( \
$C_BCAST_SYNC_SIZE, \
$C_REDUCE_SYNC_SIZE, \
$C_BARRIER_SYNC_SIZE, \
$C_COLLECT_SYNC_SIZE, \
$C_ALLTOALL_SYNC_SIZE, \
$C_ALLTOALLS_SYNC_SIZE));"`
AC_SUBST(C_SYNC_SIZE)
AC_MSG_RESULT([$C_SYNC_SIZE])
AC_MSG_CHECKING([size of SHMEM_REDUCE_MIN_WRKDATA_SIZE])
C_REDUCE_MIN_WRKDATA_SIZE=1
AC_SUBST(C_REDUCE_MIN_WRKDATA_SIZE)
AC_MSG_RESULT([$C_REDUCE_MIN_WRKDATA_SIZE])
AC_MSG_CHECKING([if long can hold lock_t])
AC_TRY_RUN([struct lock_s { int a; int b; }; int main(void) { if (sizeof(long) == sizeof(struct lock_s)) return 0; else return 1; }],
[AC_MSG_RESULT([yes])], [
AC_MSG_RESULT([no])
AC_MSG_ERROR([Lock API requires long can hold 'struct { int a; int b; }']) ])
if test "$FC" != "" ; then
AC_DEFINE([ENABLE_FORTRAN],[1],[Fortran support enabled])
AC_MSG_CHECKING([if complex sizes are appropriate])
AC_TRY_RUN([float _Complex x; double _Complex y; int main(void) { if (sizeof(x)==8 && sizeof(y)==16) return 0; else return 1; }],
[AC_MSG_RESULT([yes])], [
AC_MSG_RESULT([no])
AC_MSG_ERROR([float _Complex and double _Complex must be 4 and 8 bytes, respectively]) ])
# make sure Fortran supports ISO_C_BINDING (Fortran 2003)
AC_CACHE_CHECK([if Fortran compiler supports ISO_C_BINDING],
[shmem_cv_fortran_iso_c_binding],
[AC_LANG_PUSH([Fortran])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(, [[
use, intrinsic :: ISO_C_BINDING
integer(c_int) :: i
i = 5
]])], [shmem_cv_fortran_iso_c_binding="yes"],
[shmem_cv_fortran_iso_c_binding="no"])
AC_LANG_POP([Fortran])])
AS_IF([test "$shmem_cv_fortran_iso_c_binding" = "no"],
[AC_MSG_ERROR([Fortran compiler does not support ISO_C_BINDING, which is required for Sandia OpenSHMEM.])])
# Get size of Fortran types
OMPI_FORTRAN_GET_SIZEOF([], [LOGICAL])
OMPI_FORTRAN_GET_SIZEOF([], [CHARACTER])
OMPI_FORTRAN_GET_SIZEOF([], [INTEGER])
OMPI_FORTRAN_GET_SIZEOF([], [REAL])
OMPI_FORTRAN_GET_SIZEOF([], [DOUBLE PRECISION])
OMPI_FORTRAN_GET_SIZEOF([], [COMPLEX])
OMPI_FORTRAN_GET_SIZEOF([], [DOUBLE COMPLEX])
# find transport integer type corresponding to INTEGER
SHMEM_FIND_FORTRAN_INT_TYPE([INTEGER], [$transport])
# find C type corresponding to given Fortran types
OMPI_FIND_TYPE([INTEGER], [char, short, int, long, long long])
OMPI_FIND_TYPE([DOUBLE PRECISION], [float, double, long double])
# Find kind values for 4 & 8 byte integer types in Fortran (used in
# shmem.fh)
OMPI_FORTRAN_GET_KIND_VALUE([C_INT32_T], [FORTRAN_INT4_KIND])
OMPI_FORTRAN_GET_KIND_VALUE([C_INT64_T], [FORTRAN_INT8_KIND])
OMPI_FORTRAN_GET_KIND_VALUE([C_FLOAT], [FORTRAN_REAL4_KIND])
OMPI_FORTRAN_GET_KIND_VALUE([C_DOUBLE], [FORTRAN_REAL8_KIND])
OMPI_FORTRAN_GET_KIND_VALUE([C_FLOAT_COMPLEX], [FORTRAN_COMP4_KIND])
OMPI_FORTRAN_GET_KIND_VALUE([C_DOUBLE_COMPLEX], [FORTRAN_COMP8_KIND])
# The collectives are all implemented in C and require the psync to
# hold a variable number of C longs. Find how many INTEGERs it takes to
# create a memory region as big as the required C region.
FORTRAN_BCAST_SYNC_SIZE=`$PERL -e "use POSIX; print ceil($ac_cv_sizeof_long / $ompi_cv_fortran_sizeof_INTEGER * $C_BCAST_SYNC_SIZE)"`
FORTRAN_REDUCE_SYNC_SIZE=`$PERL -e "use POSIX; print ceil($ac_cv_sizeof_long / $ompi_cv_fortran_sizeof_INTEGER * $C_REDUCE_SYNC_SIZE)"`
FORTRAN_BARRIER_SYNC_SIZE=`$PERL -e "use POSIX; print ceil($ac_cv_sizeof_long / $ompi_cv_fortran_sizeof_INTEGER * $C_BARRIER_SYNC_SIZE)"`
FORTRAN_COLLECT_SYNC_SIZE=`$PERL -e "use POSIX; print ceil($ac_cv_sizeof_long / $ompi_cv_fortran_sizeof_INTEGER * $C_COLLECT_SYNC_SIZE)"`
FORTRAN_ALLTOALL_SYNC_SIZE=`$PERL -e "use POSIX; print ceil($ac_cv_sizeof_long / $ompi_cv_fortran_sizeof_INTEGER * $C_ALLTOALL_SYNC_SIZE)"`
FORTRAN_ALLTOALLS_SYNC_SIZE=`$PERL -e "use POSIX; print ceil($ac_cv_sizeof_long / $ompi_cv_fortran_sizeof_INTEGER * $C_ALLTOALLS_SYNC_SIZE)"`
FORTRAN_REDUCE_MIN_WRKDATA_SIZE=`$PERL -e "use POSIX; print ceil($ac_cv_sizeof_long / $ompi_cv_fortran_sizeof_INTEGER * $C_REDUCE_MIN_WRKDATA_SIZE)"`
FORTRAN_SYNC_SIZE=`$PERL -e "use List::Util qw (max); print max(( \
$FORTRAN_BCAST_SYNC_SIZE, \
$FORTRAN_REDUCE_SYNC_SIZE, \
$FORTRAN_BARRIER_SYNC_SIZE, \
$FORTRAN_COLLECT_SYNC_SIZE, \
$FORTRAN_ALLTOALL_SYNC_SIZE, \
$FORTRAN_ALLTOALLS_SYNC_SIZE));"`
else
FORTRAN_BCAST_SYNC_SIZE=0
FORTRAN_REDUCE_SYNC_SIZE=0
FORTRAN_BARRIER_SYNC_SIZE=0
FORTRAN_COLLECT_SYNC_SIZE=0
FORTRAN_ALLTOALL_SYNC_SIZE=0
FORTRAN_ALLTOALLS_SYNC_SIZE=0
FORTRAN_SYNC_SIZE=0
FORTRAN_REDUCE_MIN_WRKDATA_SIZE=0
FORTRAN_INT4_KIND=0
FORTRAN_INT8_KIND=0
FORTRAN_REAL4_KIND=0
FORTRAN_REAL8_KIND=0
FORTRAN_COMP4_KIND=0
FORTRAN_COMP8_KIND=0
AC_DEFINE([DTYPE_FORTRAN_INTEGER],[-1],[Fortran integer C type (disabled)])
fi
if test "$ac_cv_sizeof_voidp" = "4" ; then
FORTRAN_PTR_KIND=$FORTRAN_INT4_KIND
else
FORTRAN_PTR_KIND=$FORTRAN_INT8_KIND
fi
AC_SUBST(FORTRAN_BCAST_SYNC_SIZE)
AC_SUBST(FORTRAN_REDUCE_SYNC_SIZE)
AC_SUBST(FORTRAN_BARRIER_SYNC_SIZE)
AC_SUBST(FORTRAN_COLLECT_SYNC_SIZE)
AC_SUBST(FORTRAN_ALLTOALL_SYNC_SIZE)
AC_SUBST(FORTRAN_ALLTOALLS_SYNC_SIZE)
AC_SUBST(FORTRAN_SYNC_SIZE)
AC_SUBST(FORTRAN_REDUCE_MIN_WRKDATA_SIZE)
AC_SUBST(FORTRAN_INT4_KIND)
AC_SUBST(FORTRAN_INT8_KIND)
AC_SUBST(FORTRAN_REAL4_KIND)
AC_SUBST(FORTRAN_REAL8_KIND)
AC_SUBST(FORTRAN_COMP4_KIND)
AC_SUBST(FORTRAN_COMP8_KIND)
AC_SUBST(FORTRAN_PTR_KIND)
AM_CONDITIONAL([HAVE_FORTRAN], [test "$FC" != ""])
AM_CONDITIONAL([HAVE_CXX], [test "$enable_cxx" != "no" ])
AM_CONDITIONAL([ENABLE_PROFILING], [test "$enable_profiling" = "yes" ])
dnl check for structures
dnl check for compiler characteristics
# make all symbols hidden by default
OPAL_CHECK_VISIBILITY
AS_IF([test "$opal_visibility_define" = 1],
[SHMEM_AC_HAVE_ATTRIBUTE_VISIBILITY=1],
[SHMEM_AC_HAVE_ATTRIBUTE_VISIBILITY=0])
AC_SUBST(SHMEM_AC_HAVE_ATTRIBUTE_VISIBILITY)
CFLAGS="$CFLAGS $OPAL_VISIBILITY_CFLAGS"
# Disable ASLR at link time by instructing the linker not to generate
# position-independent executable code
aslr_LDFLAGS=
case $host_os in
darwin*)
aslr_LDFLAGS="-Wl,-no_pie"
;;
esac
AC_SUBST(aslr_LDFLAGS)
dnl check for library functions
AC_MSG_CHECKING([for data segment pointer])
AC_TRY_RUN([
#ifdef __APPLE__
#include <mach-o/getsect.h>
#else
#pragma weak __data_start
#pragma weak _end
extern int __data_start;
extern int _end;
#endif
/* Ensure data segment is not empty. Anything simpler gets optimized
* away by the compiler. */
int ensure_nonempty_data(void) {
static int ncall = 0;
return ncall++;
}
int main(void) {
void *base;
long length;
#ifdef __APPLE__
base = (void*) get_etext();
length = get_end() - get_etext();
#else
if (&__data_start == (int*) 0 || &_end == (int*) 0) return 1;
base = (void*) &__data_start;
length = (long) ((char*) &_end - (char*) &__data_start);
#endif
if (!(base != (void*)0 && length > 0)) return 2;
return 0;
}],
AC_MSG_RESULT([found]),
[ AC_MSG_RESULT([not found])
AC_MSG_ERROR([Could not locate data segment])
])
dnl final output
LT_INIT
OPAL_CASE_SENSITIVE_FS_SETUP
DISTCHECK_CONFIGURE_FLAGS=
if test -n "$with_portals4" -a "$with_portals4" != "no" -a "$with_portals4" != "yes" ; then
DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS --with-portals4=${with_portals4}"
fi
if test -n "$with_ofi" -a "$with_ofi" != "no" -a "$with_ofi" != "yes" ; then
DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS --with-ofi=${with_ofi}"
fi
if test -n "$with_xpmem" -a "$with_xpmem" != "no" -a "$with_xpmem" != "yes" ; then
DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS --with-xpmem=${with_xpmem}"
fi
if test -n "$with_pmi" -a "$with_pmi" != "no" -a "$with_pmi" != "yes" ; then
DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS --with-pmi=${with_pmi}"
fi
if test -n "$with_hwloc" -a "$with_hwloc" != "no" -a "$with_hwloc" != "yes" ; then
DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS --with-hwloc=${with_hwloc}"
fi
if test "$enable_pmi_simple" = "yes" ; then
DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS --enable-pmi-simple"
fi
if test -n "$FCFLAGS" ; then
DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS FCFLAGS=\"$FCFLAGS\""
fi
AC_SUBST(DISTCHECK_CONFIGURE_FLAGS)
dnl Cause Automake to delete emacs turds
CLEANFILES="*~"
AC_SUBST(CLEANFILES)
# configuration for --with-oshrun-launcher
WRAPPER_SEARCH_LAUNCHERS="yod mpirun mpiexec srun"
if test -n "$with_oshrun_launcher" ; then
WRAPPER_SEARCH_LAUNCHERS="$with_oshrun_launcher"
fi
AC_SUBST(WRAPPER_SEARCH_LAUNCHERS)
# last minute updates of the flags so that tests don't fail oddly if
# portals libdir isn't in LD_LIBRARY_PATH...
if test "$transport_portals4" = "yes" ; then
CPPFLAGS="$CPPFLAGS $portals4_CPPFLAGS"
LDFLAGS="$LDFLAGS $portals4_LDFLAGS"
LIBS="$LIBS $portals4_LIBS"
WRAPPER_COMPILER_EXTRA_LDFLAGS="$portals4_LDFLAGS"
WRAPPER_COMPILER_EXTRA_LIBS="$portals4_LIBS"
fi
if test "$transport_ofi" = "yes" ; then
CPPFLAGS="$CPPFLAGS $opal_ofi_CPPFLAGS"
LDFLAGS="$LDFLAGS $opal_ofi_LDFLAGS"
LIBS="$LIBS $opal_ofi_LIBS"
WRAPPER_COMPILER_EXTRA_LDFLAGS="$opal_ofi_LDFLAGS"
WRAPPER_COMPILER_EXTRA_LIBS="$opal_ofi_LIBS"
fi
if test "$transport_ucx" = "yes" ; then
CPPFLAGS="$CPPFLAGS $ucx_CPPFLAGS"
LDFLAGS="$LDFLAGS $ucx_LDFLAGS"
LIBS="$LIBS $ucx_LIBS"
WRAPPER_COMPILER_EXTRA_LDFLAGS="$ucx_LDFLAGS"
WRAPPER_COMPILER_EXTRA_LIBS="$ucx_LIBS"
fi
if test "$transport_xpmem" = "yes" ; then
CPPFLAGS="$CPPFLAGS $XPMEM_CPPFLAGS"
LDFLAGS="$LDFLAGS $XPMEM_LDFLAGS"
LIBS="$LIBS $XPMEM_LIBS"
WRAPPER_COMPILER_EXTRA_LDFLAGS="$XPMEM_LDFLAGS"
WRAPPER_COMPILER_EXTRA_LIBS="$XPMEM_LIBS"
fi
if test -n "opal_hwloc_LDFLAGS"; then
WRAPPER_COMPILER_EXTRA_LDFLAGS="$WRAPPER_COMPILER_EXTRA_LDFLAGS $opal_hwloc_LDFLAGS"
fi
CPPFLAGS="$CPPFLAGS $pmi_CPPFLAGS"
LDFLAGS="$LDFLAGS $pmi_LDFLAGS $aslr_LDFLAGS"
LIBS="$LIBS $pmi_LIBS"
WRAPPER_COMPILER_EXTRA_LDFLAGS="$WRAPPER_COMPILER_EXTRA_LDFLAGS $pmi_LDFLAGS $aslr_LDFLAGS"
WRAPPER_COMPILER_EXTRA_LIBS="$WRAPPER_COMPILER_LIBS $pmi_LIBS"
# Need the libtool binary before setting up rpath
LT_OUTPUT
OPAL_TOP_BUILDDIR="`pwd`"
OPAL_SETUP_RPATH
AS_IF([test "$enable_pmi_simple" = "yes"],
[WRAPPER_COMPILER_EXTRA_LIBS="$WRAPPER_COMPILER_EXTRA_LIBS -lpmi_simple"])
AC_MSG_CHECKING([for OPAL LDFLAGS])
RPATHIFY_LDFLAGS([WRAPPER_COMPILER_EXTRA_LDFLAGS])
AS_IF([test "$enable_wrapper_rpath" = "yes"],
[WRAPPER_COMPILER_EXTRA_LDFLAGS="$WRAPPER_COMPILER_EXTRA_LDFLAGS -Wl,-rpath -Wl,${libdir}"])
AC_MSG_RESULT([$WRAPPER_COMPILER_EXTRA_LDFLAGS])
AC_SUBST(WRAPPER_COMPILER_EXTRA_LDFLAGS)
AC_SUBST(WRAPPER_COMPILER_EXTRA_LIBS)
AC_CONFIG_FILES([Makefile
sandia-openshmem.spec
man/Makefile
bindings/Makefile
pmi-simple/Makefile
mpp/Makefile
mpp/shmem.fh
mpp/shmemx.fh
mpp/shmem-def.h
src/Makefile
src/sandia-openshmem.pc
modules/Makefile
modules/tests-sos/Makefile
modules/tests-sos/test/Makefile
modules/tests-sos/test/unit/Makefile
modules/tests-sos/test/shmemx/Makefile
modules/tests-sos/test/spec-example/Makefile
modules/tests-sos/test/include/Makefile
modules/tests-sos/test/performance/Makefile
modules/tests-sos/test/performance/shmem_perf_suite/Makefile
modules/tests-sos/test/performance/tests/Makefile
modules/tests-sos/test/apps/Makefile])
AC_OUTPUT
AS_IF([test "$enable_pmi_mpi" != "yes" -a "$enable_pmi_simple" != "yes" -a "$opal_external_pmix_version_found" != 1 -a "$ompi_check_pmi_happy" != "yes" -a -z "$pmi_type"],
[AC_MSG_ERROR([No PMI client interface was configured, consider --enable-pmi-simple or --with-pmi])])
AS_IF([test -z "$num_transports"],
[AC_MSG_WARN([No transport found, resulting library will be unable to exchange messages])])
AS_IF([test "$shmem_cv_c11_works" != "yes"],
[AC_MSG_WARN([C compiler does not support _Generic, unable to verify and test C11 bindings])])
AS_IF([test "$enable_c11_checks" == "no"],
[AC_MSG_WARN([C11 _Generic type checks disabled, not verifying type coverage of C11 bindings])])