/usr/share/aclocal/llnl_cross_compiling.m4 is in libsidl-dev 1.4.0.dfsg-8.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | dnl @synopsis LLNL_CROSS_COMPILING
dnl
dnl configure for BGL-type machines that need hard wired settings
dnl because the compute nodes running different OSes that the head
dnl node.
dnl
dnl @version
dnl @author Tom Epperly, LLNL
AC_DEFUN([LLNL_CROSS_COMPILING],
[
case "$target" in
powerpc64-ibm-bgl*)
cross_compiling=yes
llnl_cross_compiling_okay=yes
enable_pure_static_runtime=yes
enable_shared=no
enable_static=yes
enable_java=no
enable_python=no
sidl_cv_f77_false=0
sidl_cv_f77_true=1
sidl_cv_f90_false=0
sidl_cv_f90_true=1
llnl_cv_F77_string_passing="far int32_t"
llnl_cv_F90_string_passing="far int32_t"
ac_cv_func_malloc_0_nonnull=yes
ac_cv_func_realloc_0_nonnull=yes
ac_cv_func_memcmp_working=yes
with_sidlx=no
;;
x86_64-cray-catamount*)
cross_compiling=yes
llnl_cross_compiling_okay=yes
enable_pure_static_runtime=yes
enable_shared=no
enable_static=yes
enable_java=no
enable_python=no
enable_pthreads=no
sidl_cv_f77_false=0
sidl_cv_f77_true=-1
llnl_cv_F77_logical_size=4
sidl_cv_f90_false=0
sidl_cv_f90_true=-1
llnl_cv_F90_logical_size=4
chasm_max_descriptor_size=568
llnl_cv_F77_string_passing="far int32_t"
llnl_cv_F90_string_passing="far int32_t"
ac_cv_f90_pointer_size=8
ac_cv_header_netinet_in_h=no
ac_cv_func_malloc_0_nonnull=yes
ac_cv_func_realloc_0_nonnull=yes
ac_cv_func_memcmp_working=yes
with_sidlx=no
;;
x86_64-cray-cnl*)
cross_compiling=yes
llnl_cross_compiling_okay=yes
enable_pure_static_runtime=yes
enable_shared=no
enable_static=yes
enable_java=no
enable_python=no
llnl_cv_F77_logical_size=4
llnl_cv_F90_logical_size=4
llnl_cv_F77_string_passing="far int32_t"
llnl_cv_F90_string_passing="far int32_t"
ac_cv_func_malloc_0_nonnull=yes
ac_cv_func_realloc_0_nonnull=yes
ac_cv_func_memcmp_working=yes
ac_cv_f90_pointer_size=8
with_sidlx=no
;;
esac
])
|