• Centos7 之PostgresSQL11.x 安装及插件安装


    银河麒麟v10(yum源更换为华为 centos 7.9)
    pgsql 11.16

    postgresql 自带的 extension 叫做 uuid-ossp,是用来产生通用唯一标识符。

    一、下载pgsql源码包,下载地址:https://www.postgresql.org/ftp/source/v11.16/

    pgsql安装传送门:前往

    1.安装依赖包

    [root @kylin ]$ yum -y install readline  gcc  -y readline-devel zlib-devel
    [root@kylin pgsql-11.16]# yum -y install uuid uuid-devel
    uuid-devel-1.6.2-26.el7.x86_64
    libuuid-2.35.2-2.p02.ky10.x86_64
    uuid-1.6.2-26.el7.x86_64
    [root@kylin pgsql-11.16]# rpm -qa |grep uuid
    uuid-devel-1.6.2-26.el7.x86_64
    libuuid-2.35.2-2.p02.ky10.x86_64
    uuid-1.6.2-26.el7.x86_64
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    1.1、安装插件uuid

    [root@kylin postgresql-11.16]# ./configure --prefix=/opt/pgsql-11.16
    checking build system type... x86_64-pc-linux-gnu
    checking host system type... x86_64-pc-linux-gnu
    checking which template to use... linux
    checking whether NLS is wanted... no
    checking for default port number... 5432
    checking for block size... 8kB
    checking for segment size... 1GB
    checking for WAL block size... 8kB
    checking for gcc... gcc
    checking whether the C compiler works... yes
    checking for C compiler default output file name... a.out
    checking for suffix of executables... 
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking for g++... g++
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking for gawk... gawk
    checking whether gcc supports -Wdeclaration-after-statement, for CFLAGS... yes
    checking whether gcc supports -Wendif-labels, for CFLAGS... yes
    checking whether g++ supports -Wendif-labels, for CXXFLAGS... yes
    checking whether gcc supports -Wmissing-format-attribute, for CFLAGS... yes
    checking whether g++ supports -Wmissing-format-attribute, for CXXFLAGS... yes
    checking whether gcc supports -Wformat-security, for CFLAGS... yes
    checking whether g++ supports -Wformat-security, for CXXFLAGS... yes
    checking whether gcc supports -fno-strict-aliasing, for CFLAGS... yes
    checking whether g++ supports -fno-strict-aliasing, for CXXFLAGS... yes
    checking whether gcc supports -fwrapv, for CFLAGS... yes
    checking whether g++ supports -fwrapv, for CXXFLAGS... yes
    checking whether gcc supports -fexcess-precision=standard, for CFLAGS... yes
    checking whether g++ supports -fexcess-precision=standard, for CXXFLAGS... no
    checking whether gcc supports -funroll-loops, for CFLAGS_VECTOR... yes
    checking whether gcc supports -ftree-vectorize, for CFLAGS_VECTOR... yes
    checking whether gcc supports -Wunused-command-line-argument, for NOT_THE_CFLAGS... no
    checking whether gcc supports -Wcompound-token-split-by-macro, for NOT_THE_CFLAGS... no
    checking whether gcc supports -Wformat-truncation, for NOT_THE_CFLAGS... yes
    checking whether gcc supports -Wstringop-truncation, for NOT_THE_CFLAGS... no
    checking whether the C compiler still works... yes
    checking how to run the C preprocessor... gcc -E
    checking for pkg-config... /usr/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking allow thread-safe client libraries... yes
    checking whether to build with ICU support... no
    checking whether to build with Tcl... no
    checking whether to build Perl modules... no
    checking whether to build Python modules... no
    checking whether to build with GSSAPI support... no
    checking whether to build with PAM support... no
    checking whether to build with BSD Authentication support... no
    checking whether to build with LDAP support... no
    checking whether to build with Bonjour support... no
    checking whether to build with OpenSSL support... no
    checking whether to build with SELinux support... no
    checking whether to build with systemd support... no
    checking whether to build with XML support... no
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for ld used by GCC... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for ranlib... ranlib
    checking for strip... strip
    checking whether it is possible to strip libraries... yes
    checking for ar... ar
    checking for a BSD-compatible install... /usr/bin/install -c
    checking for tar... /usr/bin/tar
    checking whether ln -s works... yes
    checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
    checking for bison... no
    configure: WARNING:
    *** Without Bison you will not be able to build PostgreSQL from Git nor
    *** change any of the parser definition files.  You can obtain Bison from
    *** a GNU mirror site.  (If you are using the official distribution of
    *** PostgreSQL then you do not need to worry about this, because the Bison
    *** output is pre-generated.)
    checking for flex... no
    configure: WARNING:
    *** Without Flex you will not be able to build PostgreSQL from Git nor
    *** change any of the scanner definition files.  You can obtain Flex from
    *** a GNU mirror site.  (If you are using the official distribution of
    *** PostgreSQL then you do not need to worry about this because the Flex
    *** output is pre-generated.)
    checking for perl... /usr/bin/perl
    configure: using perl 5.28.2
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking if compiler needs certain flags to reject unknown flags... no
    checking for the pthreads library -lpthreads... no
    checking whether pthreads work without any flags... no
    checking whether pthreads work with -Kthread... no
    checking whether pthreads work with -kthread... no
    checking for the pthreads library -llthread... no
    checking whether pthreads work with -pthread... yes
    checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
    checking if more special flags are required for pthreads... no
    checking for PTHREAD_PRIO_INHERIT... yes
    checking pthread.h usability... yes
    checking pthread.h presence... yes
    checking for pthread.h... yes
    checking for strerror_r... yes
    checking for getpwuid_r... yes
    checking for gethostbyname_r... yes
    checking whether strerror_r returns int... no
    checking for main in -lm... yes
    checking for library containing setproctitle... no
    checking for library containing dlsym... -ldl
    checking for library containing socket... none required
    checking for library containing shl_load... no
    checking for library containing getopt_long... none required
    checking for library containing crypt... -lcrypt
    checking for library containing shm_open... -lrt
    checking for library containing shm_unlink... none required
    checking for library containing clock_gettime... none required
    checking for library containing fdatasync... none required
    checking for library containing sched_yield... none required
    checking for library containing gethostbyname_r... none required
    checking for library containing shmget... none required
    checking for library containing readline... -lreadline
    checking for inflate in -lz... yes
    checking for uuid_export in -lossp-uuid... yes
    checking for stdbool.h that conforms to C99... yes
    checking for _Bool... yes
    checking atomic.h usability... no
    checking atomic.h presence... no
    checking for atomic.h... no
    checking crypt.h usability... yes
    checking crypt.h presence... yes
    checking for crypt.h... yes
    checking dld.h usability... no
    checking dld.h presence... no
    checking for dld.h... no
    checking fp_class.h usability... no
    checking fp_class.h presence... no
    checking for fp_class.h... no
    checking getopt.h usability... yes
    checking getopt.h presence... yes
    checking for getopt.h... yes
    checking ieeefp.h usability... no
    checking ieeefp.h presence... no
    checking for ieeefp.h... no
    checking ifaddrs.h usability... yes
    checking ifaddrs.h presence... yes
    checking for ifaddrs.h... yes
    checking langinfo.h usability... yes
    checking langinfo.h presence... yes
    checking for langinfo.h... yes
    checking mbarrier.h usability... no
    checking mbarrier.h presence... no
    checking for mbarrier.h... no
    checking poll.h usability... yes
    checking poll.h presence... yes
    checking for poll.h... yes
    checking sys/epoll.h usability... yes
    checking sys/epoll.h presence... yes
    checking for sys/epoll.h... yes
    checking sys/ipc.h usability... yes
    checking sys/ipc.h presence... yes
    checking for sys/ipc.h... yes
    checking sys/pstat.h usability... no
    checking sys/pstat.h presence... no
    checking for sys/pstat.h... no
    checking sys/resource.h usability... yes
    checking sys/resource.h presence... yes
    checking for sys/resource.h... yes
    checking sys/select.h usability... yes
    checking sys/select.h presence... yes
    checking for sys/select.h... yes
    checking sys/sem.h usability... yes
    checking sys/sem.h presence... yes
    checking for sys/sem.h... yes
    checking sys/shm.h usability... yes
    checking sys/shm.h presence... yes
    checking for sys/shm.h... yes
    checking sys/sockio.h usability... no
    checking sys/sockio.h presence... no
    checking for sys/sockio.h... no
    checking sys/tas.h usability... no
    checking sys/tas.h presence... no
    checking for sys/tas.h... no
    checking sys/un.h usability... yes
    checking sys/un.h presence... yes
    checking for sys/un.h... yes
    checking termios.h usability... yes
    checking termios.h presence... yes
    checking for termios.h... yes
    checking ucred.h usability... no
    checking ucred.h presence... no
    checking for ucred.h... no
    checking utime.h usability... yes
    checking utime.h presence... yes
    checking for utime.h... yes
    checking wchar.h usability... yes
    checking wchar.h presence... yes
    checking for wchar.h... yes
    checking wctype.h usability... yes
    checking wctype.h presence... yes
    checking for wctype.h... yes
    checking for net/if.h... yes
    checking for sys/ucred.h... no
    checking for netinet/tcp.h... yes
    checking readline/readline.h usability... yes
    checking readline/readline.h presence... yes
    checking for readline/readline.h... yes
    checking readline/history.h usability... yes
    checking readline/history.h presence... yes
    checking for readline/history.h... yes
    checking zlib.h usability... yes
    checking zlib.h presence... yes
    checking for zlib.h... yes
    checking ossp/uuid.h usability... no
    checking ossp/uuid.h presence... no
    checking for ossp/uuid.h... no
    checking uuid.h usability... yes
    checking uuid.h presence... yes
    checking for uuid.h... yes
    checking whether byte ordering is bigendian... no
    checking for inline... inline
    checking for printf format archetype... gnu_printf
    checking for flexible array members... yes
    checking for signed types... yes
    checking for __func__... yes
    checking for _Static_assert... yes
    checking for typeof... typeof
    checking for __builtin_types_compatible_p... yes
    checking for __builtin_bswap16... yes
    checking for __builtin_bswap32... yes
    checking for __builtin_bswap64... yes
    checking for __builtin_constant_p... yes
    checking for __builtin_unreachable... yes
    checking for computed goto support... yes
    checking for __VA_ARGS__... yes
    checking whether struct tm is in sys/time.h or time.h... time.h
    checking for struct tm.tm_zone... yes
    checking for tzname... yes
    checking for union semun... no
    checking for struct sockaddr_un... yes
    checking for struct sockaddr_storage... yes
    checking for struct sockaddr_storage.ss_family... yes
    checking for struct sockaddr_storage.__ss_family... no
    checking for struct sockaddr_storage.ss_len... no
    checking for struct sockaddr_storage.__ss_len... no
    checking for struct sockaddr.sa_len... no
    checking for struct addrinfo... yes
    checking for intptr_t... yes
    checking for uintptr_t... yes
    checking for unsigned long long int... yes
    checking for long long int... yes
    checking for locale_t... yes
    checking for C/C++ restrict keyword... __restrict
    checking for struct cmsgcred... no
    checking for struct option... yes
    checking for z_streamp... yes
    checking for special C compiler options needed for large files... no
    checking for _FILE_OFFSET_BITS value needed for large files... no
    checking size of off_t... 8
    checking size of bool... 1
    checking for int timezone... yes
    checking types of arguments for accept()... int, int, struct sockaddr *, socklen_t *
    checking whether gettimeofday takes only one argument... no
    checking for wcstombs_l declaration... no
    checking for cbrt... yes
    checking for clock_gettime... yes
    checking for dlopen... yes
    checking for fdatasync... yes
    checking for getifaddrs... yes
    checking for getpeerucred... no
    checking for getrlimit... yes
    checking for mbstowcs_l... no
    checking for memmove... yes
    checking for poll... yes
    checking for posix_fallocate... yes
    checking for pstat... no
    checking for pthread_is_threaded_np... no
    checking for readlink... yes
    checking for setproctitle... no
    checking for setsid... yes
    checking for shm_open... yes
    checking for strsignal... yes
    checking for symlink... yes
    checking for sync_file_range... yes
    checking for uselocale... yes
    checking for utime... yes
    checking for utimes... yes
    checking for wcstombs_l... no
    checking for fseeko... yes
    checking for _LARGEFILE_SOURCE value needed for large files... no
    checking how gcc reports undeclared, standard C functions... error
    checking for posix_fadvise... yes
    checking whether posix_fadvise is declared... yes
    checking whether fdatasync is declared... yes
    checking whether strlcat is declared... no
    checking whether strlcpy is declared... no
    checking whether strnlen is declared... yes
    checking whether F_FULLFSYNC is declared... no
    checking for struct sockaddr_in6... yes
    checking for PS_STRINGS... no
    checking for snprintf... yes
    checking for vsnprintf... yes
    checking whether snprintf is declared... yes
    checking whether vsnprintf is declared... yes
    checking for isinf... yes
    checking for crypt... yes
    checking for fls... no
    checking for getopt... yes
    checking for getrusage... yes
    checking for inet_aton... yes
    checking for mkdtemp... yes
    checking for random... yes
    checking for rint... yes
    checking for srandom... yes
    checking for strerror... yes
    checking for strlcat... no
    checking for strlcpy... no
    checking for strnlen... yes
    checking for unsetenv... yes
    checking for getpeereid... no
    checking for getaddrinfo... yes
    checking for getopt_long... yes
    checking for syslog... yes
    checking syslog.h usability... yes
    checking syslog.h presence... yes
    checking for syslog.h... yes
    checking for opterr... yes
    checking for optreset... no
    checking for strtoll... yes
    checking for strtoull... yes
    checking whether strtoll is declared... yes
    checking whether strtoull is declared... yes
    checking for rl_completion_append_character... yes
    checking for rl_completion_matches... yes
    checking for rl_filename_completion_function... yes
    checking for rl_reset_screen_size... yes
    checking for append_history... yes
    checking for history_truncate_file... yes
    checking test program... ok
    checking whether long int is 64 bits... yes
    checking whether snprintf supports the %z modifier... yes
    checking for __builtin_mul_overflow... yes
    checking size of void *... 8
    checking size of size_t... 8
    checking size of long... 8
    checking whether to build with float4 passed by value... yes
    checking whether to build with float8 passed by value... yes
    checking alignment of short... 2
    checking alignment of int... 4
    checking alignment of long... 8
    checking alignment of double... 8
    checking for int8... no
    checking for uint8... no
    checking for int64... no
    checking for uint64... no
    checking for __int128... yes
    checking for __int128 alignment bug... ok
    checking alignment of PG_INT128_TYPE... 16
    checking for builtin __sync char locking functions... yes
    checking for builtin __sync int32 locking functions... yes
    checking for builtin __sync int32 atomic operations... yes
    checking for builtin __sync int64 atomic operations... yes
    checking for builtin __atomic int32 atomic operations... yes
    checking for builtin __atomic int64 atomic operations... yes
    checking for __get_cpuid... yes
    checking for __cpuid... no
    checking for _mm_crc32_u8 and _mm_crc32_u32 with CFLAGS=... no
    checking for _mm_crc32_u8 and _mm_crc32_u32 with CFLAGS=-msse4.2... yes
    checking for __crc32cb, __crc32ch, __crc32cw, and __crc32cd with CFLAGS=... no
    checking for __crc32cb, __crc32ch, __crc32cw, and __crc32cd with CFLAGS=-march=armv8-a+crc... no
    checking which CRC-32C implementation to use... SSE 4.2 with runtime check
    checking for library containing sem_init... -lpthread
    checking which semaphore API to use... unnamed POSIX
    checking for /dev/urandom... yes
    checking which random number source to use... /dev/urandom
    checking for xmllint... /usr/bin/xmllint
    checking for xsltproc... /usr/bin/xsltproc
    checking for fop... no
    checking for dbtoepub... no
    checking thread safety of required library functions... yes
    checking whether gcc supports -Wl,--as-needed... yes
    configure: using compiler=gcc (GCC) 7.3.0
    configure: using CFLAGS=-Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -O2
    configure: using CPPFLAGS= -D_GNU_SOURCE 
    configure: using LDFLAGS=  -Wl,--as-needed
    configure: creating ./config.status
    config.status: creating GNUmakefile
    config.status: creating src/Makefile.global
    config.status: creating src/include/pg_config.h
    config.status: src/include/pg_config.h is unchanged
    config.status: creating src/include/pg_config_ext.h
    config.status: src/include/pg_config_ext.h is unchanged
    config.status: creating src/interfaces/ecpg/include/ecpg_config.h
    config.status: src/interfaces/ecpg/include/ecpg_config.h is unchanged
    config.status: linking src/backend/port/tas/dummy.s to src/backend/port/tas.s
    config.status: linking src/backend/port/dynloader/linux.c to src/backend/port/dynloader.c
    config.status: linking src/backend/port/posix_sema.c to src/backend/port/pg_sema.c
    config.status: linking src/backend/port/sysv_shmem.c to src/backend/port/pg_shmem.c
    config.status: linking src/backend/port/dynloader/linux.h to src/include/dynloader.h
    config.status: linking src/include/port/linux.h to src/include/pg_config_os.h
    config.status: linking src/makefiles/Makefile.linux to src/Makefile.port
    [root@kylin postgresql-11.16]# ./configure --prefix=/opt/pgsql-11.16  --with-uuid=ossp^C
    [root@kylin postgresql-11.16]# rm -rf /opt/pgsql
    [root@kylin postgresql-11.16]# ls /opt/
    firefox          postgresql-10.21  postgresql-11.16_bak  sqldeveloper  todesk  uxdbinstall
    patch_workspace  postgresql-11.16  software              sqlScripts    user
    
    • 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

    2、如是想将contrib下的扩展一同安装,使用make world && make install-world 命令编译安装

    2.1 make world

    [root@kylin postgresql-11.16]# make world
    make -C ./src/backend generated-headers
    make[1]: Entering directory '/opt/software/postgresql-11.16/src/backend'
    make -C catalog distprep generated-header-symlinks
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/backend/catalog'
    make[2]: Nothing to be done for 'distprep'.
    make[2]: Nothing to be done for 'generated-header-symlinks'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/backend/catalog'
    make -C utils distprep generated-header-symlinks
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils'
    make[2]: Nothing to be done for 'distprep'.
    make[2]: Nothing to be done for 'generated-header-symlinks'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils'
    make[1]: Leaving directory '/opt/software/postgresql-11.16/src/backend'
    make -C doc all
    make[1]: Entering directory '/opt/software/postgresql-11.16/doc'
    make -C src all
    make[2]: Entering directory '/opt/software/postgresql-11.16/doc/src'
    make -C sgml all
    make[3]: Entering directory '/opt/software/postgresql-11.16/doc/src/sgml'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/doc/src/sgml'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/doc/src'
    make[1]: Leaving directory '/opt/software/postgresql-11.16/doc'
    make -C src all
    make[1]: Entering directory '/opt/software/postgresql-11.16/src'
    make -C common all
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C port all
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/port'
    echo "#define PGBINDIR \"/opt/pgsql-11.16/bin\"" >pg_config_paths.h
    echo "#define PGSHAREDIR \"/opt/pgsql-11.16/share\"" >>pg_config_paths.h
    echo "#define SYSCONFDIR \"/opt/pgsql-11.16/etc\"" >>pg_config_paths.h
    echo "#define INCLUDEDIR \"/opt/pgsql-11.16/include\"" >>pg_config_paths.h
    echo "#define PKGINCLUDEDIR \"/opt/pgsql-11.16/include\"" >>pg_config_paths.h
    echo "#define INCLUDEDIRSERVER \"/opt/pgsql-11.16/include/server\"" >>pg_config_paths.h
    echo "#define LIBDIR \"/opt/pgsql-11.16/lib\"" >>pg_config_paths.h
    echo "#define PKGLIBDIR \"/opt/pgsql-11.16/lib\"" >>pg_config_paths.h
    echo "#define LOCALEDIR \"/opt/pgsql-11.16/share/locale\"" >>pg_config_paths.h
    echo "#define DOCDIR \"/opt/pgsql-11.16/share/doc/\"" >>pg_config_paths.h
    echo "#define HTMLDIR \"/opt/pgsql-11.16/share/doc/\"" >>pg_config_paths.h
    echo "#define MANDIR \"/opt/pgsql-11.16/share/man\"" >>pg_config_paths.h
    gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -O2 -I../../src/port -DFRONTEND -I../../src/include  -D_GNU_SOURCE   -c -o path.o path.c
    rm -f libpgport.a
    ar crs libpgport.a fls.o strlcat.o strlcpy.o getpeereid.o pg_crc32c_sse42.o pg_crc32c_sb8.o pg_crc32c_sse42_choose.o chklocale.o erand48.o inet_net_ntop.o noblock.o path.o pgcheckdir.o pgmkdirp.o pgsleep.o pgstrcasecmp.o pgstrsignal.o pqsignal.o qsort.o qsort_arg.o quotes.o sprompt.o tar.o thread.o pg_strong_random.o
    gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -O2  -I../../src/port  -I../../src/include  -D_GNU_SOURCE  -c path.c -o path_srv.o
    rm -f libpgport_srv.a
    ar crs libpgport_srv.a fls_srv.o strlcat_srv.o strlcpy_srv.o getpeereid_srv.o pg_crc32c_sse42_srv.o pg_crc32c_sb8_srv.o pg_crc32c_sse42_choose_srv.o chklocale_srv.o erand48_srv.o inet_net_ntop_srv.o noblock_srv.o path_srv.o pgcheckdir_srv.o pgmkdirp_srv.o pgsleep_srv.o pgstrcasecmp_srv.o pgstrsignal_srv.o pqsignal_srv.o qsort_srv.o qsort_arg_srv.o quotes_srv.o sprompt_srv.o tar_srv.o thread_srv.o pg_strong_random_srv.o
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C timezone all
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/timezone'
    make -C ../../src/port all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../src/common all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/timezone'
    make -C backend all
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/backend'
    make -C ../../src/port all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../src/common all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C catalog distprep generated-header-symlinks
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/catalog'
    make[3]: Nothing to be done for 'distprep'.
    make[3]: Nothing to be done for 'generated-header-symlinks'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/catalog'
    make -C utils distprep generated-header-symlinks
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils'
    make[3]: Nothing to be done for 'distprep'.
    make[3]: Nothing to be done for 'generated-header-symlinks'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils'
    make -C access all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/access'
    make -C brin all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/brin'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/brin'
    make -C common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/common'
    make -C gin all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/gin'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/gin'
    make -C gist all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/gist'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/gist'
    make -C hash all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/hash'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/hash'
    make -C heap all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/heap'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/heap'
    make -C index all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/index'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/index'
    make -C nbtree all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/nbtree'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/nbtree'
    make -C rmgrdesc all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/rmgrdesc'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/rmgrdesc'
    make -C spgist all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/spgist'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/spgist'
    make -C tablesample all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/tablesample'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/tablesample'
    make -C transam all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/transam'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/transam'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access'
    make -C bootstrap all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/bootstrap'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/bootstrap'
    make -C catalog all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/catalog'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/catalog'
    make -C parser all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/parser'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/parser'
    make -C commands all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/commands'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/commands'
    make -C executor all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/executor'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/executor'
    make -C foreign all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/foreign'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/foreign'
    make -C lib all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/lib'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/lib'
    make -C libpq all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/libpq'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/libpq'
    make -C main all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/main'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/main'
    make -C nodes all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/nodes'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/nodes'
    make -C optimizer all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/optimizer'
    make -C geqo all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/optimizer/geqo'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/optimizer/geqo'
    make -C path all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/optimizer/path'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/optimizer/path'
    make -C plan all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/optimizer/plan'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/optimizer/plan'
    make -C prep all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/optimizer/prep'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/optimizer/prep'
    make -C util all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/optimizer/util'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/optimizer/util'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/optimizer'
    make -C partitioning all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/partitioning'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/partitioning'
    make -C port all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/port'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/port'
    make -C postmaster all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/postmaster'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/postmaster'
    make -C regex all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/regex'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/regex'
    make -C replication all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/replication'
    make -C logical all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/replication/logical'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/replication/logical'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/replication'
    make -C rewrite all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/rewrite'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/rewrite'
    make -C statistics all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/statistics'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/statistics'
    make -C storage all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage'
    make -C buffer all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/buffer'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/buffer'
    make -C file all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/file'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/file'
    make -C freespace all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/freespace'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/freespace'
    make -C ipc all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/ipc'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/ipc'
    make -C large_object all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/large_object'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/large_object'
    make -C lmgr all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/lmgr'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/lmgr'
    make -C page all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/page'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/page'
    make -C smgr all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/smgr'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/smgr'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage'
    make -C tcop all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/tcop'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/tcop'
    make -C tsearch all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/tsearch'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/tsearch'
    make -C utils all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils'
    make -C adt all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/adt'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/adt'
    make -C cache all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/cache'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/cache'
    make -C error all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/error'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/error'
    make -C fmgr all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/fmgr'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/fmgr'
    make -C hash all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/hash'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/hash'
    make -C init all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/init'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/init'
    make -C mb all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb'
    make -C misc all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/misc'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/misc'
    make -C mmgr all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mmgr'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mmgr'
    make -C resowner all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/resowner'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/resowner'
    make -C sort all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/sort'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/sort'
    make -C time all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/time'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/time'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils'
    make -C ../../src/timezone all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/timezone'
    make -C ../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/timezone'
    make -C jit all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/jit'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/jit'
    gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -O2 -L../../src/port -L../../src/common   -Wl,--as-needed -Wl,-rpath,'/opt/pgsql-11.16/lib',--enable-new-dtags  -Wl,-E access/brin/brin.o access/brin/brin_pageops.o access/brin/brin_revmap.o access/brin/brin_tuple.o access/brin/brin_xlog.o access/brin/brin_minmax.o access/brin/brin_inclusion.o access/brin/brin_validate.o access/common/bufmask.o access/common/heaptuple.o access/common/indextuple.o access/common/printsimple.o access/common/printtup.o access/common/reloptions.o access/common/scankey.o access/common/session.o access/common/tupconvert.o access/common/tupdesc.o access/gin/ginutil.o access/gin/gininsert.o access/gin/ginxlog.o access/gin/ginentrypage.o access/gin/gindatapage.o access/gin/ginbtree.o access/gin/ginscan.o access/gin/ginget.o access/gin/ginvacuum.o access/gin/ginarrayproc.o access/gin/ginbulk.o access/gin/ginfast.o access/gin/ginpostinglist.o access/gin/ginlogic.o access/gin/ginvalidate.o access/gist/gist.o access/gist/gistutil.o access/gist/gistxlog.o access/gist/gistvacuum.o access/gist/gistget.o access/gist/gistscan.o access/gist/gistproc.o access/gist/gistsplit.o access/gist/gistbuild.o access/gist/gistbuildbuffers.o access/gist/gistvalidate.o access/hash/hash.o access/hash/hashfunc.o access/hash/hashinsert.o access/hash/hashovfl.o access/hash/hashpage.o access/hash/hashsearch.o access/hash/hashsort.o access/hash/hashutil.o access/hash/hashvalidate.o access/hash/hash_xlog.o access/heap/heapam.o access/heap/hio.o access/heap/pruneheap.o access/heap/rewriteheap.o access/heap/syncscan.o access/heap/tuptoaster.o access/heap/visibilitymap.o access/index/amapi.o access/index/amvalidate.o access/index/genam.o access/index/indexam.o access/nbtree/nbtcompare.o access/nbtree/nbtinsert.o access/nbtree/nbtpage.o access/nbtree/nbtree.o access/nbtree/nbtsearch.o access/nbtree/nbtutils.o access/nbtree/nbtsort.o access/nbtree/nbtvalidate.o access/nbtree/nbtxlog.o access/rmgrdesc/brindesc.o access/rmgrdesc/clogdesc.o access/rmgrdesc/committsdesc.o access/rmgrdesc/dbasedesc.o access/rmgrdesc/genericdesc.o access/rmgrdesc/gindesc.o access/rmgrdesc/gistdesc.o access/rmgrdesc/hashdesc.o access/rmgrdesc/heapdesc.o access/rmgrdesc/logicalmsgdesc.o access/rmgrdesc/mxactdesc.o access/rmgrdesc/nbtdesc.o access/rmgrdesc/relmapdesc.o access/rmgrdesc/replorigindesc.o access/rmgrdesc/seqdesc.o access/rmgrdesc/smgrdesc.o access/rmgrdesc/spgdesc.o access/rmgrdesc/standbydesc.o access/rmgrdesc/tblspcdesc.o access/rmgrdesc/xactdesc.o access/rmgrdesc/xlogdesc.o access/spgist/spgutils.o access/spgist/spginsert.o access/spgist/spgscan.o access/spgist/spgvacuum.o access/spgist/spgvalidate.o access/spgist/spgdoinsert.o access/spgist/spgxlog.o access/spgist/spgtextproc.o access/spgist/spgquadtreeproc.o access/spgist/spgkdtreeproc.o access/tablesample/bernoulli.o access/tablesample/system.o access/tablesample/tablesample.o access/transam/clog.o access/transam/commit_ts.o access/transam/generic_xlog.o access/transam/multixact.o access/transam/parallel.o access/transam/rmgr.o access/transam/slru.o access/transam/subtrans.o access/transam/timeline.o access/transam/transam.o access/transam/twophase.o access/transam/twophase_rmgr.o access/transam/varsup.o access/transam/xact.o access/transam/xlog.o access/transam/xlogarchive.o access/transam/xlogfuncs.o access/transam/xloginsert.o access/transam/xlogreader.o access/transam/xlogutils.o bootstrap/bootparse.o bootstrap/bootstrap.o catalog/catalog.o catalog/dependency.o catalog/heap.o catalog/index.o catalog/indexing.o catalog/namespace.o catalog/aclchk.o catalog/objectaccess.o catalog/objectaddress.o catalog/partition.o catalog/pg_aggregate.o catalog/pg_collation.o catalog/pg_constraint.o catalog/pg_conversion.o catalog/pg_depend.o catalog/pg_enum.o catalog/pg_inherits.o catalog/pg_largeobject.o catalog/pg_namespace.o catalog/pg_operator.o catalog/pg_proc.o catalog/pg_publication.o catalog/pg_range.o catalog/pg_db_role_setting.o catalog/pg_shdepend.o catalog/pg_subscription.o catalog/pg_type.o catalog/storage.o catalog/toasting.o parser/analyze.o parser/gram.o parser/scan.o parser/parser.o parser/parse_agg.o parser/parse_clause.o parser/parse_coerce.o parser/parse_collate.o parser/parse_cte.o parser/parse_enr.o parser/parse_expr.o parser/parse_func.o parser/parse_node.o parser/parse_oper.o parser/parse_param.o parser/parse_relation.o parser/parse_target.o parser/parse_type.o parser/parse_utilcmd.o parser/scansup.o commands/amcmds.o commands/aggregatecmds.o commands/alter.o commands/analyze.o commands/async.o commands/cluster.o commands/comment.o commands/collationcmds.o commands/constraint.o commands/conversioncmds.o commands/copy.o commands/createas.o commands/dbcommands.o commands/define.o commands/discard.o commands/dropcmds.o commands/event_trigger.o commands/explain.o commands/extension.o commands/foreigncmds.o commands/functioncmds.o commands/indexcmds.o commands/lockcmds.o commands/matview.o commands/operatorcmds.o commands/opclasscmds.o commands/policy.o commands/portalcmds.o commands/prepare.o commands/proclang.o commands/publicationcmds.o commands/schemacmds.o commands/seclabel.o commands/sequence.o commands/statscmds.o commands/subscriptioncmds.o commands/tablecmds.o commands/tablespace.o commands/trigger.o commands/tsearchcmds.o commands/typecmds.o commands/user.o commands/vacuum.o commands/vacuumlazy.o commands/variable.o commands/view.o executor/execAmi.o executor/execCurrent.o executor/execExpr.o executor/execExprInterp.o executor/execGrouping.o executor/execIndexing.o executor/execJunk.o executor/execMain.o executor/execParallel.o executor/execPartition.o executor/execProcnode.o executor/execReplication.o executor/execScan.o executor/execSRF.o executor/execTuples.o executor/execUtils.o executor/functions.o executor/instrument.o executor/nodeAppend.o executor/nodeAgg.o executor/nodeBitmapAnd.o executor/nodeBitmapOr.o executor/nodeBitmapHeapscan.o executor/nodeBitmapIndexscan.o executor/nodeCustom.o executor/nodeFunctionscan.o executor/nodeGather.o executor/nodeHash.o executor/nodeHashjoin.o executor/nodeIndexscan.o executor/nodeIndexonlyscan.o executor/nodeLimit.o executor/nodeLockRows.o executor/nodeGatherMerge.o executor/nodeMaterial.o executor/nodeMergeAppend.o executor/nodeMergejoin.o executor/nodeModifyTable.o executor/nodeNestloop.o executor/nodeProjectSet.o executor/nodeRecursiveunion.o executor/nodeResult.o executor/nodeSamplescan.o executor/nodeSeqscan.o executor/nodeSetOp.o executor/nodeSort.o executor/nodeUnique.o executor/nodeValuesscan.o executor/nodeCtescan.o executor/nodeNamedtuplestorescan.o executor/nodeWorktablescan.o executor/nodeGroup.o executor/nodeSubplan.o executor/nodeSubqueryscan.o executor/nodeTidscan.o executor/nodeForeignscan.o executor/nodeWindowAgg.o executor/tstoreReceiver.o executor/tqueue.o executor/spi.o executor/nodeTableFuncscan.o foreign/foreign.o lib/binaryheap.o lib/bipartite_match.o lib/bloomfilter.o lib/dshash.o lib/hyperloglog.o lib/ilist.o lib/knapsack.o lib/pairingheap.o lib/rbtree.o lib/stringinfo.o libpq/be-fsstubs.o libpq/be-secure.o libpq/be-secure-common.o libpq/auth.o libpq/crypt.o libpq/hba.o libpq/ifaddr.o libpq/pqcomm.o libpq/pqformat.o libpq/pqmq.o libpq/pqsignal.o libpq/auth-scram.o main/main.o nodes/nodeFuncs.o nodes/nodes.o nodes/list.o nodes/bitmapset.o nodes/tidbitmap.o nodes/copyfuncs.o nodes/equalfuncs.o nodes/extensible.o nodes/makefuncs.o nodes/outfuncs.o nodes/readfuncs.o nodes/print.o nodes/read.o nodes/params.o nodes/value.o optimizer/geqo/geqo_copy.o optimizer/geqo/geqo_eval.o optimizer/geqo/geqo_main.o optimizer/geqo/geqo_misc.o optimizer/geqo/geqo_mutation.o optimizer/geqo/geqo_pool.o optimizer/geqo/geqo_random.o optimizer/geqo/geqo_recombination.o optimizer/geqo/geqo_selection.o optimizer/geqo/geqo_erx.o optimizer/geqo/geqo_pmx.o optimizer/geqo/geqo_cx.o optimizer/geqo/geqo_px.o optimizer/geqo/geqo_ox1.o optimizer/geqo/geqo_ox2.o optimizer/path/allpaths.o optimizer/path/clausesel.o optimizer/path/costsize.o optimizer/path/equivclass.o optimizer/path/indxpath.o optimizer/path/joinpath.o optimizer/path/joinrels.o optimizer/path/pathkeys.o optimizer/path/tidpath.o optimizer/plan/analyzejoins.o optimizer/plan/createplan.o optimizer/plan/initsplan.o optimizer/plan/planagg.o optimizer/plan/planmain.o optimizer/plan/planner.o optimizer/plan/setrefs.o optimizer/plan/subselect.o optimizer/prep/prepjointree.o optimizer/prep/prepqual.o optimizer/prep/preptlist.o optimizer/prep/prepunion.o optimizer/util/clauses.o optimizer/util/joininfo.o optimizer/util/orclauses.o optimizer/util/paramassign.o optimizer/util/pathnode.o optimizer/util/placeholder.o optimizer/util/plancat.o optimizer/util/predtest.o optimizer/util/relnode.o optimizer/util/restrictinfo.o optimizer/util/tlist.o optimizer/util/var.o partitioning/partprune.o partitioning/partbounds.o port/atomics.o port/dynloader.o port/pg_sema.o port/pg_shmem.o postmaster/autovacuum.o postmaster/bgworker.o postmaster/bgwriter.o postmaster/checkpointer.o postmaster/fork_process.o postmaster/pgarch.o postmaster/pgstat.o postmaster/postmaster.o postmaster/startup.o postmaster/syslogger.o postmaster/walwriter.o regex/regcomp.o regex/regerror.o regex/regexec.o regex/regfree.o regex/regprefix.o regex/regexport.o replication/logical/decode.o replication/logical/launcher.o replication/logical/logical.o replication/logical/logicalfuncs.o replication/logical/message.o replication/logical/origin.o replication/logical/proto.o replication/logical/relation.o replication/logical/reorderbuffer.o replication/logical/snapbuild.o replication/logical/tablesync.o replication/logical/worker.o replication/walsender.o replication/walreceiverfuncs.o replication/walreceiver.o replication/basebackup.o replication/repl_gram.o replication/slot.o replication/slotfuncs.o replication/syncrep.o replication/syncrep_gram.o rewrite/rewriteRemove.o rewrite/rewriteDefine.o rewrite/rewriteHandler.o rewrite/rewriteManip.o rewrite/rewriteSupport.o rewrite/rowsecurity.o statistics/extended_stats.o statistics/dependencies.o statistics/mvdistinct.o storage/buffer/buf_table.o storage/buffer/buf_init.o storage/buffer/bufmgr.o storage/buffer/freelist.o storage/buffer/localbuf.o storage/file/fd.o storage/file/buffile.o storage/file/copydir.o storage/file/reinit.o storage/file/sharedfileset.o storage/freespace/freespace.o storage/freespace/fsmpage.o storage/freespace/indexfsm.o storage/ipc/barrier.o storage/ipc/dsm_impl.o storage/ipc/dsm.o storage/ipc/ipc.o storage/ipc/ipci.o storage/ipc/latch.o storage/ipc/pmsignal.o storage/ipc/procarray.o storage/ipc/procsignal.o storage/ipc/shmem.o storage/ipc/shmqueue.o storage/ipc/shm_mq.o storage/ipc/shm_toc.o storage/ipc/sinval.o storage/ipc/sinvaladt.o storage/ipc/standby.o storage/large_object/inv_api.o storage/lmgr/lmgr.o storage/lmgr/lock.o storage/lmgr/proc.o storage/lmgr/deadlock.o storage/lmgr/lwlock.o storage/lmgr/lwlocknames.o storage/lmgr/spin.o storage/lmgr/s_lock.o storage/lmgr/predicate.o storage/lmgr/condition_variable.o storage/page/bufpage.o storage/page/checksum.o storage/page/itemptr.o storage/smgr/md.o storage/smgr/smgr.o storage/smgr/smgrtype.o tcop/dest.o tcop/fastpath.o tcop/postgres.o tcop/pquery.o tcop/utility.o tsearch/ts_locale.o tsearch/ts_parse.o tsearch/wparser.o tsearch/wparser_def.o tsearch/dict.o tsearch/dict_simple.o tsearch/dict_synonym.o tsearch/dict_thesaurus.o tsearch/dict_ispell.o tsearch/regis.o tsearch/spell.o tsearch/to_tsany.o tsearch/ts_selfuncs.o tsearch/ts_typanalyze.o tsearch/ts_utils.o utils/adt/acl.o utils/adt/amutils.o utils/adt/arrayfuncs.o utils/adt/array_expanded.o utils/adt/array_selfuncs.o utils/adt/array_typanalyze.o utils/adt/array_userfuncs.o utils/adt/arrayutils.o utils/adt/ascii.o utils/adt/bool.o utils/adt/cash.o utils/adt/char.o utils/adt/cryptohashes.o utils/adt/date.o utils/adt/datetime.o utils/adt/datum.o utils/adt/dbsize.o utils/adt/domains.o utils/adt/encode.o utils/adt/enum.o utils/adt/expandeddatum.o utils/adt/expandedrecord.o utils/adt/float.o utils/adt/format_type.o utils/adt/formatting.o utils/adt/genfile.o utils/adt/geo_ops.o utils/adt/geo_selfuncs.o utils/adt/geo_spgist.o utils/adt/inet_cidr_ntop.o utils/adt/inet_net_pton.o utils/adt/int.o utils/adt/int8.o utils/adt/json.o utils/adt/jsonb.o utils/adt/jsonb_gin.o utils/adt/jsonb_op.o utils/adt/jsonb_util.o utils/adt/jsonfuncs.o utils/adt/like.o utils/adt/lockfuncs.o utils/adt/mac.o utils/adt/mac8.o utils/adt/misc.o utils/adt/nabstime.o utils/adt/name.o utils/adt/network.o utils/adt/network_gist.o utils/adt/network_selfuncs.o utils/adt/network_spgist.o utils/adt/numeric.o utils/adt/numutils.o utils/adt/oid.o utils/adt/oracle_compat.o utils/adt/orderedsetaggs.o utils/adt/pg_locale.o utils/adt/pg_lsn.o utils/adt/pg_upgrade_support.o utils/adt/pgstatfuncs.o utils/adt/pseudotypes.o utils/adt/quote.o utils/adt/rangetypes.o utils/adt/rangetypes_gist.o utils/adt/rangetypes_selfuncs.o utils/adt/rangetypes_spgist.o utils/adt/rangetypes_typanalyze.o utils/adt/regexp.o utils/adt/regproc.o utils/adt/ri_triggers.o utils/adt/rowtypes.o utils/adt/ruleutils.o utils/adt/selfuncs.o utils/adt/tid.o utils/adt/timestamp.o utils/adt/trigfuncs.o utils/adt/tsginidx.o utils/adt/tsgistidx.o utils/adt/tsquery.o utils/adt/tsquery_cleanup.o utils/adt/tsquery_gist.o utils/adt/tsquery_op.o utils/adt/tsquery_rewrite.o utils/adt/tsquery_util.o utils/adt/tsrank.o utils/adt/tsvector.o utils/adt/tsvector_op.o utils/adt/tsvector_parser.o utils/adt/txid.o utils/adt/uuid.o utils/adt/varbit.o utils/adt/varchar.o utils/adt/varlena.o utils/adt/version.o utils/adt/windowfuncs.o utils/adt/xid.o utils/adt/xml.o utils/cache/attoptcache.o utils/cache/catcache.o utils/cache/evtcache.o utils/cache/inval.o utils/cache/lsyscache.o utils/cache/partcache.o utils/cache/plancache.o utils/cache/relcache.o utils/cache/relmapper.o utils/cache/relfilenodemap.o utils/cache/spccache.o utils/cache/syscache.o utils/cache/ts_cache.o utils/cache/typcache.o utils/error/assert.o utils/error/elog.o utils/fmgr/dfmgr.o utils/fmgr/fmgr.o utils/fmgr/funcapi.o utils/hash/dynahash.o utils/hash/hashfn.o utils/hash/pg_crc.o utils/init/globals.o utils/init/miscinit.o utils/init/postinit.o utils/mb/encnames.o utils/mb/conv.o utils/mb/mbutils.o utils/mb/wchar.o utils/mb/wstrcmp.o utils/mb/wstrncmp.o utils/misc/backend_random.o utils/misc/guc.o utils/misc/help_config.o utils/misc/pg_config.o utils/misc/pg_controldata.o utils/misc/pg_rusage.o utils/misc/ps_status.o utils/misc/queryenvironment.o utils/misc/rls.o utils/misc/sampling.o utils/misc/superuser.o utils/misc/timeout.o utils/misc/tzparser.o utils/mmgr/aset.o utils/mmgr/dsa.o utils/mmgr/freepage.o utils/mmgr/generation.o utils/mmgr/mcxt.o utils/mmgr/memdebug.o utils/mmgr/portalmem.o utils/mmgr/slab.o utils/resowner/resowner.o utils/sort/logtape.o utils/sort/sharedtuplestore.o utils/sort/sortsupport.o utils/sort/tuplesort.o utils/sort/tuplestore.o utils/time/combocid.o utils/time/tqual.o utils/time/snapmgr.o utils/fmgrtab.o ../../src/timezone/localtime.o ../../src/timezone/strftime.o ../../src/timezone/pgtz.o jit/jit.o ../../src/port/libpgport_srv.a ../../src/common/libpgcommon_srv.a -lpthread -lrt -lcrypt -ldl -lm -o postgres
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/backend'
    make -C backend/utils/mb/conversion_procs all
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs'
    make -C ascii_and_mic all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/ascii_and_mic'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/ascii_and_mic'
    make -C cyrillic_and_mic all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/cyrillic_and_mic'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/cyrillic_and_mic'
    make -C euc_cn_and_mic all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_cn_and_mic'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_cn_and_mic'
    make -C euc_jp_and_sjis all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis'
    make -C euc_kr_and_mic all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_kr_and_mic'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_kr_and_mic'
    make -C euc_tw_and_big5 all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_tw_and_big5'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_tw_and_big5'
    make -C latin2_and_win1250 all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/latin2_and_win1250'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/latin2_and_win1250'
    make -C latin_and_mic all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/latin_and_mic'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/latin_and_mic'
    make -C utf8_and_ascii all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_ascii'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_ascii'
    make -C utf8_and_big5 all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_big5'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_big5'
    make -C utf8_and_cyrillic all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic'
    make -C utf8_and_euc_cn all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn'
    make -C utf8_and_euc_jp all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp'
    make -C utf8_and_euc_kr all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr'
    make -C utf8_and_euc_tw all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw'
    make -C utf8_and_gb18030 all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_gb18030'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_gb18030'
    make -C utf8_and_gbk all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_gbk'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_gbk'
    make -C utf8_and_iso8859 all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_iso8859'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_iso8859'
    make -C utf8_and_iso8859_1 all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1'
    make -C utf8_and_johab all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_johab'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_johab'
    make -C utf8_and_sjis all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_sjis'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_sjis'
    make -C utf8_and_win all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_win'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_win'
    make -C utf8_and_uhc all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_uhc'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_uhc'
    make -C utf8_and_euc2004 all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc2004'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc2004'
    make -C utf8_and_sjis2004 all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_sjis2004'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_sjis2004'
    make -C euc2004_sjis2004 all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc2004_sjis2004'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc2004_sjis2004'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs'
    make -C backend/snowball all
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/backend/snowball'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/backend/snowball'
    make -C include all
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/include'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/include'
    make -C interfaces all
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/interfaces'
    make -C libpq all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -O2 -pthread -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fPIC -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include  -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o fe-connect.o fe-connect.c
    gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -O2 -pthread -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fPIC -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include  -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o fe-misc.o fe-misc.c
    gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -O2 -pthread -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fPIC -shared -Wl,-soname,libpq.so.5 -Wl,--version-script=exports.list -o libpq.so.5.11 fe-auth.o fe-auth-scram.o fe-connect.o fe-exec.o fe-misc.o fe-print.o fe-lobj.o fe-protocol2.o fe-protocol3.o pqexpbuffer.o fe-secure.o libpq-events.o chklocale.o inet_net_ntop.o noblock.o pgstrcasecmp.o pqsignal.o thread.o strlcpy.o getpeereid.o pg_strong_random.o encnames.o wchar.o base64.o ip.o md5.o scram-common.o saslprep.o unicode_norm.o sha2.o -L../../../src/port -L../../../src/common    -Wl,--as-needed -Wl,-rpath,'/opt/pgsql-11.16/lib',--enable-new-dtags  -lcrypt  
    rm -f libpq.so.5
    ln -s libpq.so.5.11 libpq.so.5
    rm -f libpq.so
    ln -s libpq.so.5.11 libpq.so
    rm -f libpq.a
    ar crs libpq.a fe-auth.o fe-auth-scram.o fe-connect.o fe-exec.o fe-misc.o fe-print.o fe-lobj.o fe-protocol2.o fe-protocol3.o pqexpbuffer.o fe-secure.o libpq-events.o chklocale.o inet_net_ntop.o noblock.o pgstrcasecmp.o pqsignal.o thread.o strlcpy.o getpeereid.o pg_strong_random.o encnames.o wchar.o base64.o ip.o md5.o scram-common.o saslprep.o unicode_norm.o sha2.o
    ranlib libpq.a
    touch libpq.a
    echo 'Name: libpq' >libpq.pc
    echo 'Description: PostgreSQL libpq library' >>libpq.pc
    echo 'Url: http://www.postgresql.org/' >>libpq.pc
    echo 'Version: 11.16' >>libpq.pc
    echo 'Requires: ' >>libpq.pc
    echo 'Requires.private: ' >>libpq.pc
    echo 'Cflags: -I/opt/pgsql-11.16/include' >>libpq.pc
    echo 'Libs: -L/opt/pgsql-11.16/lib -lpq' >>libpq.pc
    echo 'Libs.private:  -lcrypt' >>libpq.pc
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ecpg all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg'
    make -C include all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/include'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/include'
    make -C pgtypeslib all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/pgtypeslib'
    echo 'Name: libpgtypes' >libpgtypes.pc
    echo 'Description: PostgreSQL libpgtypes library' >>libpgtypes.pc
    echo 'Url: http://www.postgresql.org/' >>libpgtypes.pc
    echo 'Version: 11.16' >>libpgtypes.pc
    echo 'Requires: ' >>libpgtypes.pc
    echo 'Requires.private: ' >>libpgtypes.pc
    echo 'Cflags: -I/opt/pgsql-11.16/include' >>libpgtypes.pc
    echo 'Libs: -L/opt/pgsql-11.16/lib -lpgtypes' >>libpgtypes.pc
    echo 'Libs.private:  -lm' >>libpgtypes.pc
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/pgtypeslib'
    make -C ecpglib all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/ecpglib'
    gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -O2 -pthread -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fPIC -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/interfaces/libpq -I../../../../src/port -DFRONTEND -I../../../../src/include  -D_GNU_SOURCE  -DSO_MAJOR_VERSION=6  -c -o misc.o misc.c
    gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -O2 -pthread -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fPIC -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/interfaces/libpq -I../../../../src/port -DFRONTEND -I../../../../src/include  -D_GNU_SOURCE  -DSO_MAJOR_VERSION=6  -c -o path.o path.c
    make -C ../../../../src/interfaces/libpq all
    make[5]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../../src/interfaces/ecpg/pgtypeslib all
    make[5]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/pgtypeslib'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/pgtypeslib'
    gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -O2 -pthread -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fPIC -shared -Wl,-soname,libecpg.so.6 -Wl,--version-script=exports.list -o libecpg.so.6.11 execute.o typename.o descriptor.o sqlda.o data.o error.o prepare.o memory.o connect.o misc.o path.o pgstrcasecmp.o strlcpy.o  thread.o -L../../../../src/port -L../../../../src/common -L../pgtypeslib -lpgtypes -L../../../../src/interfaces/libpq -lpq   -Wl,--as-needed -Wl,-rpath,'/opt/pgsql-11.16/lib',--enable-new-dtags  -lm 
    rm -f libecpg.so.6
    ln -s libecpg.so.6.11 libecpg.so.6
    rm -f libecpg.so
    ln -s libecpg.so.6.11 libecpg.so
    rm -f libecpg.a
    ar crs libecpg.a execute.o typename.o descriptor.o sqlda.o data.o error.o prepare.o memory.o connect.o misc.o path.o pgstrcasecmp.o strlcpy.o thread.o
    ranlib libecpg.a
    touch libecpg.a
    echo 'Name: libecpg' >libecpg.pc
    echo 'Description: PostgreSQL libecpg library' >>libecpg.pc
    echo 'Url: http://www.postgresql.org/' >>libecpg.pc
    echo 'Version: 11.16' >>libecpg.pc
    echo 'Requires: ' >>libecpg.pc
    echo 'Requires.private: libpq libpgtypes' >>libecpg.pc
    echo 'Cflags: -I/opt/pgsql-11.16/include' >>libecpg.pc
    echo 'Libs: -L/opt/pgsql-11.16/lib -lecpg' >>libecpg.pc
    echo 'Libs.private:  -lm' >>libecpg.pc
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/ecpglib'
    make -C compatlib all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/compatlib'
    make -C ../../../../src/interfaces/ecpg/ecpglib all
    make[5]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/ecpglib'
    make -C ../../../../src/interfaces/libpq all
    make[6]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[6]: Nothing to be done for 'all'.
    make[6]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../../src/interfaces/ecpg/pgtypeslib all
    make[6]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/pgtypeslib'
    make[6]: Nothing to be done for 'all'.
    make[6]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/pgtypeslib'
    make[5]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/ecpglib'
    make -C ../../../../src/interfaces/ecpg/pgtypeslib all
    make[5]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/pgtypeslib'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/pgtypeslib'
    echo 'Name: libecpg_compat' >libecpg_compat.pc
    echo 'Description: PostgreSQL libecpg_compat library' >>libecpg_compat.pc
    echo 'Url: http://www.postgresql.org/' >>libecpg_compat.pc
    echo 'Version: 11.16' >>libecpg_compat.pc
    echo 'Requires: ' >>libecpg_compat.pc
    echo 'Requires.private: libecpg libpgtypes' >>libecpg_compat.pc
    echo 'Cflags: -I/opt/pgsql-11.16/include' >>libecpg_compat.pc
    echo 'Libs: -L/opt/pgsql-11.16/lib -lecpg_compat' >>libecpg_compat.pc
    echo 'Libs.private:  -lm' >>libecpg_compat.pc
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/compatlib'
    make -C preproc all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/preproc'
    make -C ../../../../src/port all
    make[5]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../../src/common all
    make[5]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/preproc'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces'
    make -C backend/replication/libpqwalreceiver all
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/backend/replication/libpqwalreceiver'
    make -C ../../../../src/interfaces/libpq all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/backend/replication/libpqwalreceiver'
    make -C backend/replication/pgoutput all
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/backend/replication/pgoutput'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/backend/replication/pgoutput'
    make -C fe_utils all
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/fe_utils'
    make -C bin all
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/bin'
    make -C initdb all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/initdb'
    gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -O2 -DFRONTEND -I../../../src/interfaces/libpq -I../../../src/timezone -I../../../src/include  -D_GNU_SOURCE   -c -o initdb.o initdb.c
    make -C ../../../src/interfaces/libpq all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/fe_utils all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/fe_utils'
    gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -O2 initdb.o findtimezone.o localtime.o encnames.o  -L../../../src/port -L../../../src/common -L../../../src/fe_utils -lpgfeutils -L../../../src/common -lpgcommon -L../../../src/port -lpgport -L../../../src/interfaces/libpq -lpq   -Wl,--as-needed -Wl,-rpath,'/opt/pgsql-11.16/lib',--enable-new-dtags  -lpgcommon -lpgport -lpthread -lz -lreadline -lrt -lcrypt -ldl -lm  -o initdb
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/initdb'
    make -C pg_archivecleanup all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_archivecleanup'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_archivecleanup'
    make -C pg_basebackup all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_basebackup'
    make -C ../../../src/interfaces/libpq all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/fe_utils all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_basebackup'
    make -C pg_config all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_config'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_config'
    make -C pg_controldata all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_controldata'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_controldata'
    make -C pg_ctl all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_ctl'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_ctl'
    make -C pg_dump all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_dump'
    make -C ../../../src/interfaces/libpq all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/fe_utils all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_dump'
    make -C pg_resetwal all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_resetwal'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_resetwal'
    make -C pg_rewind all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_rewind'
    make -C ../../../src/interfaces/libpq all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_rewind'
    make -C pg_test_fsync all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_test_fsync'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_test_fsync'
    make -C pg_test_timing all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_test_timing'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_test_timing'
    make -C pg_upgrade all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_upgrade'
    make -C ../../../src/interfaces/libpq all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/fe_utils all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_upgrade'
    make -C pg_verify_checksums all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_verify_checksums'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_verify_checksums'
    make -C pg_waldump all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_waldump'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_waldump'
    make -C pgbench all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pgbench'
    make -C ../../../src/interfaces/libpq all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/fe_utils all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pgbench'
    make -C psql all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/psql'
    make -C ../../../src/interfaces/libpq all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/fe_utils all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/psql'
    make -C scripts all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/scripts'
    make -C ../../../src/interfaces/libpq all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/fe_utils all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/scripts'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/bin'
    make -C pl all
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/pl'
    make -C plpgsql all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/pl/plpgsql'
    make -C src all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/pl/plpgsql/src'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/pl/plpgsql/src'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/pl/plpgsql'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/pl'
    make -C makefiles all
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/makefiles'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/makefiles'
    make -C test/regress all
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/test/regress'
    make -C ../../../src/port all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -O2 -fPIC -I../../../src/include  -D_GNU_SOURCE  -I../../../src/port '-DHOST_TUPLE="x86_64-pc-linux-gnu"' '-DSHELLPROG="/bin/sh"' '-DDLSUFFIX=".so"'  -c -o pg_regress.o pg_regress.c
    gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -O2 -fPIC pg_regress.o pg_regress_main.o -L../../../src/port -L../../../src/common    -Wl,--as-needed -Wl,-rpath,'/opt/pgsql-11.16/lib',--enable-new-dtags  -lpgcommon -lpgport -lpthread -lz -lreadline -lrt -lcrypt -ldl -lm  -o pg_regress
    make -C ../../../contrib/spi
    make[3]: Entering directory '/opt/software/postgresql-11.16/contrib/spi'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/contrib/spi'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/test/regress'
    make -C test/isolation all
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/test/isolation'
    make -C ../../../src/interfaces/libpq all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../src/port all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -O2 isolation_main.o pg_regress.o -L../../../src/port -L../../../src/common   -Wl,--as-needed -Wl,-rpath,'/opt/pgsql-11.16/lib',--enable-new-dtags  -lpgcommon -lpgport -lpthread -lz -lreadline -lrt -lcrypt -ldl -lm  -o pg_isolation_regress
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/test/isolation'
    make -C test/perl all
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/test/perl'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/test/perl'
    make[1]: Leaving directory '/opt/software/postgresql-11.16/src'
    make -C config all
    make[1]: Entering directory '/opt/software/postgresql-11.16/config'
    make[1]: Nothing to be done for 'all'.
    make[1]: Leaving directory '/opt/software/postgresql-11.16/config'
    make -C contrib all
    make[1]: Entering directory '/opt/software/postgresql-11.16/contrib'
    make -C adminpack all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/adminpack'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/adminpack'
    make -C amcheck all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/amcheck'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/amcheck'
    make -C auth_delay all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/auth_delay'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/auth_delay'
    make -C auto_explain all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/auto_explain'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/auto_explain'
    make -C bloom all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/bloom'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/bloom'
    make -C btree_gin all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/btree_gin'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/btree_gin'
    make -C btree_gist all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/btree_gist'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/btree_gist'
    make -C citext all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/citext'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/citext'
    make -C cube all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/cube'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/cube'
    make -C dblink all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/dblink'
    make -C ../../src/interfaces/libpq all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/dblink'
    make -C dict_int all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/dict_int'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/dict_int'
    make -C dict_xsyn all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/dict_xsyn'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/dict_xsyn'
    make -C earthdistance all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/earthdistance'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/earthdistance'
    make -C file_fdw all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/file_fdw'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/file_fdw'
    make -C fuzzystrmatch all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/fuzzystrmatch'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/fuzzystrmatch'
    make -C hstore all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/hstore'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/hstore'
    make -C intagg all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/intagg'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/intagg'
    make -C intarray all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/intarray'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/intarray'
    make -C isn all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/isn'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/isn'
    make -C lo all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/lo'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/lo'
    make -C ltree all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/ltree'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/ltree'
    make -C oid2name all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/oid2name'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/oid2name'
    make -C pageinspect all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pageinspect'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pageinspect'
    make -C passwordcheck all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/passwordcheck'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/passwordcheck'
    make -C pg_buffercache all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pg_buffercache'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pg_buffercache'
    make -C pg_freespacemap all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pg_freespacemap'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pg_freespacemap'
    make -C pg_prewarm all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pg_prewarm'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pg_prewarm'
    make -C pg_standby all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pg_standby'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pg_standby'
    make -C pg_stat_statements all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pg_stat_statements'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pg_stat_statements'
    make -C pg_trgm all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pg_trgm'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pg_trgm'
    make -C pgcrypto all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pgcrypto'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pgcrypto'
    make -C pgrowlocks all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pgrowlocks'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pgrowlocks'
    make -C pgstattuple all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pgstattuple'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pgstattuple'
    make -C pg_visibility all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pg_visibility'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pg_visibility'
    make -C postgres_fdw all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/postgres_fdw'
    make -C ../../src/interfaces/libpq all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/postgres_fdw'
    make -C seg all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/seg'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/seg'
    make -C spi all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/spi'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/spi'
    make -C tablefunc all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/tablefunc'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/tablefunc'
    make -C tcn all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/tcn'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/tcn'
    make -C test_decoding all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/test_decoding'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/test_decoding'
    make -C tsm_system_rows all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/tsm_system_rows'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/tsm_system_rows'
    make -C tsm_system_time all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/tsm_system_time'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/tsm_system_time'
    make -C unaccent all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/unaccent'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/unaccent'
    make -C vacuumlo all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/vacuumlo'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/vacuumlo'
    make -C uuid-ossp all
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/uuid-ossp'
    gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -O2 -fPIC -I../../contrib/pgcrypto -I. -I. -I../../src/include  -D_GNU_SOURCE   -c -o uuid-ossp.o uuid-ossp.c
    gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -O2 -fPIC -shared -o uuid-ossp.so uuid-ossp.o   -L../../src/port -L../../src/common    -Wl,--as-needed -Wl,-rpath,'/opt/pgsql-11.16/lib',--enable-new-dtags  -lossp-uuid 
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/uuid-ossp'
    make[1]: Leaving directory '/opt/software/postgresql-11.16/contrib'
    PostgreSQL, contrib, and documentation successfully made. Ready to install.
    
    • 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
    • 1001
    • 1002
    • 1003
    • 1004
    • 1005
    • 1006
    • 1007
    • 1008
    • 1009
    • 1010
    • 1011
    • 1012
    • 1013
    • 1014
    • 1015
    • 1016
    • 1017
    • 1018
    • 1019
    • 1020
    • 1021
    • 1022
    • 1023
    • 1024
    • 1025
    • 1026
    • 1027
    • 1028
    • 1029
    • 1030
    • 1031
    • 1032
    • 1033
    • 1034
    • 1035
    • 1036
    • 1037
    • 1038
    • 1039
    • 1040
    • 1041
    • 1042
    • 1043
    • 1044
    • 1045
    • 1046
    • 1047
    • 1048
    • 1049
    • 1050
    • 1051
    • 1052
    • 1053
    • 1054
    • 1055
    • 1056
    • 1057
    • 1058
    • 1059
    • 1060
    • 1061
    • 1062
    • 1063
    • 1064
    • 1065
    • 1066
    • 1067
    • 1068
    • 1069
    • 1070
    • 1071
    • 1072
    • 1073
    • 1074
    • 1075
    • 1076
    • 1077
    • 1078
    • 1079
    • 1080
    • 1081
    • 1082
    • 1083
    • 1084
    • 1085
    • 1086
    • 1087
    • 1088
    • 1089
    • 1090
    • 1091
    • 1092
    • 1093
    • 1094
    • 1095
    • 1096
    • 1097
    • 1098
    • 1099
    • 1100
    • 1101
    • 1102
    • 1103
    • 1104
    • 1105
    • 1106
    • 1107
    • 1108
    • 1109
    • 1110
    • 1111
    • 1112
    • 1113
    • 1114
    • 1115
    • 1116
    • 1117
    • 1118
    • 1119
    • 1120
    • 1121
    • 1122
    • 1123
    • 1124
    • 1125
    • 1126
    • 1127
    • 1128
    • 1129
    • 1130
    • 1131
    • 1132
    • 1133
    • 1134
    • 1135
    • 1136
    • 1137

    2.2 出现 PostgreSQL, contrib, and documentation successfully made. Ready to install.即编译成功。接下来运行make install安装。
    make install-world

    [root@kylin postgresql-11.16]# make install-world
    make -C ./src/backend generated-headers
    make[1]: Entering directory '/opt/software/postgresql-11.16/src/backend'
    make -C catalog distprep generated-header-symlinks
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/backend/catalog'
    make[2]: Nothing to be done for 'distprep'.
    make[2]: Nothing to be done for 'generated-header-symlinks'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/backend/catalog'
    make -C utils distprep generated-header-symlinks
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils'
    make[2]: Nothing to be done for 'distprep'.
    make[2]: Nothing to be done for 'generated-header-symlinks'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils'
    make[1]: Leaving directory '/opt/software/postgresql-11.16/src/backend'
    make -C doc install
    make[1]: Entering directory '/opt/software/postgresql-11.16/doc'
    make -C src install
    make[2]: Entering directory '/opt/software/postgresql-11.16/doc/src'
    make -C sgml install
    make[3]: Entering directory '/opt/software/postgresql-11.16/doc/src/sgml'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/doc/'/html '/opt/pgsql-11.16/share/man'/man1 '/opt/pgsql-11.16/share/man'/man3 '/opt/pgsql-11.16/share/man'/man7
    cp -R `for f in ./html; do test -r $f && echo $f && break; done` '/opt/pgsql-11.16/share/doc/'
    cp -R `for f in ./man1; do test -r $f && echo $f && break; done` `for f in ./man3; do test -r $f && echo $f && break; done` `for f in ./man7; do test -r $f && echo $f && break; done` '/opt/pgsql-11.16/share/man'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/doc/src/sgml'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/doc/src'
    make[1]: Leaving directory '/opt/software/postgresql-11.16/doc'
    make -C src install
    make[1]: Entering directory '/opt/software/postgresql-11.16/src'
    make -C common install
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/common'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 644  libpgcommon.a '/opt/pgsql-11.16/lib/libpgcommon.a'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C port install
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/port'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 644  libpgport.a '/opt/pgsql-11.16/lib/libpgport.a'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C timezone install
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/timezone'
    make -C ../../src/port all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../src/common all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share'
    ./zic -d '/opt/pgsql-11.16/share/timezone' -p 'US/Eastern' -b fat  ./data/tzdata.zi
    make -C tznames install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/timezone/tznames'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/timezonesets'
    /usr/bin/install -c -m 644 ./Africa.txt ./America.txt ./Antarctica.txt ./Asia.txt ./Atlantic.txt ./Australia.txt ./Etc.txt ./Europe.txt ./Indian.txt ./Pacific.txt '/opt/pgsql-11.16/share/timezonesets'
    /usr/bin/install -c -m 644 ./Default ./Australia ./India '/opt/pgsql-11.16/share/timezonesets'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/timezone/tznames'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/timezone'
    make -C backend install
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/backend'
    make -C ../../src/port all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../src/common all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C catalog distprep generated-header-symlinks
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/catalog'
    make[3]: Nothing to be done for 'distprep'.
    make[3]: Nothing to be done for 'generated-header-symlinks'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/catalog'
    make -C utils distprep generated-header-symlinks
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils'
    make[3]: Nothing to be done for 'distprep'.
    make[3]: Nothing to be done for 'generated-header-symlinks'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils'
    make -C access all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/access'
    make -C brin all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/brin'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/brin'
    make -C common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/common'
    make -C gin all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/gin'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/gin'
    make -C gist all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/gist'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/gist'
    make -C hash all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/hash'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/hash'
    make -C heap all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/heap'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/heap'
    make -C index all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/index'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/index'
    make -C nbtree all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/nbtree'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/nbtree'
    make -C rmgrdesc all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/rmgrdesc'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/rmgrdesc'
    make -C spgist all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/spgist'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/spgist'
    make -C tablesample all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/tablesample'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/tablesample'
    make -C transam all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/transam'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/transam'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access'
    make -C bootstrap all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/bootstrap'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/bootstrap'
    make -C catalog all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/catalog'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/catalog'
    make -C parser all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/parser'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/parser'
    make -C commands all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/commands'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/commands'
    make -C executor all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/executor'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/executor'
    make -C foreign all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/foreign'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/foreign'
    make -C lib all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/lib'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/lib'
    make -C libpq all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/libpq'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/libpq'
    make -C main all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/main'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/main'
    make -C nodes all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/nodes'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/nodes'
    make -C optimizer all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/optimizer'
    make -C geqo all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/optimizer/geqo'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/optimizer/geqo'
    make -C path all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/optimizer/path'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/optimizer/path'
    make -C plan all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/optimizer/plan'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/optimizer/plan'
    make -C prep all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/optimizer/prep'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/optimizer/prep'
    make -C util all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/optimizer/util'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/optimizer/util'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/optimizer'
    make -C partitioning all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/partitioning'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/partitioning'
    make -C port all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/port'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/port'
    make -C postmaster all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/postmaster'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/postmaster'
    make -C regex all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/regex'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/regex'
    make -C replication all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/replication'
    make -C logical all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/replication/logical'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/replication/logical'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/replication'
    make -C rewrite all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/rewrite'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/rewrite'
    make -C statistics all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/statistics'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/statistics'
    make -C storage all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage'
    make -C buffer all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/buffer'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/buffer'
    make -C file all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/file'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/file'
    make -C freespace all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/freespace'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/freespace'
    make -C ipc all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/ipc'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/ipc'
    make -C large_object all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/large_object'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/large_object'
    make -C lmgr all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/lmgr'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/lmgr'
    make -C page all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/page'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/page'
    make -C smgr all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/smgr'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/smgr'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage'
    make -C tcop all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/tcop'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/tcop'
    make -C tsearch all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/tsearch'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/tsearch'
    make -C utils all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils'
    make -C adt all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/adt'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/adt'
    make -C cache all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/cache'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/cache'
    make -C error all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/error'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/error'
    make -C fmgr all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/fmgr'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/fmgr'
    make -C hash all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/hash'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/hash'
    make -C init all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/init'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/init'
    make -C mb all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb'
    make -C misc all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/misc'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/misc'
    make -C mmgr all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mmgr'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mmgr'
    make -C resowner all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/resowner'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/resowner'
    make -C sort all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/sort'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/sort'
    make -C time all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/time'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/time'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils'
    make -C ../../src/timezone all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/timezone'
    make -C ../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/timezone'
    make -C jit all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/jit'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/jit'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin' '/opt/pgsql-11.16/share'
    /usr/bin/install -c  postgres '/opt/pgsql-11.16/bin/postgres'
    ln -s postgres '/opt/pgsql-11.16/bin/postmaster'
    make -C access install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/access'
    make -C brin install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/brin'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/brin'
    make -C common install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/common'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/common'
    make -C gin install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/gin'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/gin'
    make -C gist install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/gist'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/gist'
    make -C hash install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/hash'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/hash'
    make -C heap install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/heap'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/heap'
    make -C index install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/index'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/index'
    make -C nbtree install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/nbtree'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/nbtree'
    make -C rmgrdesc install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/rmgrdesc'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/rmgrdesc'
    make -C spgist install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/spgist'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/spgist'
    make -C tablesample install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/tablesample'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/tablesample'
    make -C transam install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/access/transam'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access/transam'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/access'
    make -C bootstrap install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/bootstrap'
    make[3]: Nothing to be done for 'install'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/bootstrap'
    make -C catalog install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/catalog'
    make[3]: Nothing to be done for 'install'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/catalog'
    make -C parser install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/parser'
    make[3]: Nothing to be done for 'install'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/parser'
    make -C commands install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/commands'
    make[3]: Nothing to be done for 'install'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/commands'
    make -C executor install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/executor'
    make[3]: Nothing to be done for 'install'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/executor'
    make -C foreign install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/foreign'
    make[3]: Nothing to be done for 'install'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/foreign'
    make -C lib install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/lib'
    make[3]: Nothing to be done for 'install'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/lib'
    make -C libpq install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/libpq'
    make[3]: Nothing to be done for 'install'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/libpq'
    make -C main install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/main'
    make[3]: Nothing to be done for 'install'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/main'
    make -C nodes install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/nodes'
    make[3]: Nothing to be done for 'install'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/nodes'
    make -C optimizer install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/optimizer'
    make -C geqo install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/optimizer/geqo'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/optimizer/geqo'
    make -C path install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/optimizer/path'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/optimizer/path'
    make -C plan install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/optimizer/plan'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/optimizer/plan'
    make -C prep install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/optimizer/prep'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/optimizer/prep'
    make -C util install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/optimizer/util'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/optimizer/util'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/optimizer'
    make -C partitioning install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/partitioning'
    make[3]: Nothing to be done for 'install'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/partitioning'
    make -C port install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/port'
    make[3]: Nothing to be done for 'install'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/port'
    make -C postmaster install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/postmaster'
    make[3]: Nothing to be done for 'install'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/postmaster'
    make -C regex install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/regex'
    make[3]: Nothing to be done for 'install'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/regex'
    make -C replication install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/replication'
    make -C logical install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/replication/logical'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/replication/logical'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/replication'
    make -C rewrite install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/rewrite'
    make[3]: Nothing to be done for 'install'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/rewrite'
    make -C statistics install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/statistics'
    make[3]: Nothing to be done for 'install'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/statistics'
    make -C storage install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage'
    make -C buffer install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/buffer'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/buffer'
    make -C file install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/file'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/file'
    make -C freespace install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/freespace'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/freespace'
    make -C ipc install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/ipc'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/ipc'
    make -C large_object install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/large_object'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/large_object'
    make -C lmgr install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/lmgr'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/lmgr'
    make -C page install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/page'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/page'
    make -C smgr install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/storage/smgr'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage/smgr'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/storage'
    make -C tcop install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/tcop'
    make[3]: Nothing to be done for 'install'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/tcop'
    make -C tsearch install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/tsearch'
    make[3]: Nothing to be done for 'install'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/tsearch'
    make -C utils install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils'
    make -C adt install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/adt'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/adt'
    make -C cache install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/cache'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/cache'
    make -C error install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/error'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/error'
    make -C fmgr install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/fmgr'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/fmgr'
    make -C hash install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/hash'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/hash'
    make -C init install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/init'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/init'
    make -C mb install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb'
    make -C misc install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/misc'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/misc'
    make -C mmgr install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mmgr'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mmgr'
    make -C resowner install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/resowner'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/resowner'
    make -C sort install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/sort'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/sort'
    make -C time install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/time'
    make[4]: Nothing to be done for 'install'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/time'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils'
    make -C ../../src/timezone install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/timezone'
    make -C ../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share'
    ./zic -d '/opt/pgsql-11.16/share/timezone' -p 'US/Eastern' -b fat  ./data/tzdata.zi
    make -C tznames install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/timezone/tznames'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/timezonesets'
    /usr/bin/install -c -m 644 ./Africa.txt ./America.txt ./Antarctica.txt ./Asia.txt ./Atlantic.txt ./Australia.txt ./Etc.txt ./Europe.txt ./Indian.txt ./Pacific.txt '/opt/pgsql-11.16/share/timezonesets'
    /usr/bin/install -c -m 644 ./Default ./Australia ./India '/opt/pgsql-11.16/share/timezonesets'
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/timezone/tznames'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/timezone'
    make -C jit install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/jit'
    make[3]: Nothing to be done for 'install'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/jit'
    make -C catalog install-data
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/catalog'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share'
    /usr/bin/install -c -m 644 `for f in ./postgres.bki; do test -r $f && echo $f && break; done` '/opt/pgsql-11.16/share/postgres.bki'
    /usr/bin/install -c -m 644 `for f in ./postgres.description; do test -r $f && echo $f && break; done` '/opt/pgsql-11.16/share/postgres.description'
    /usr/bin/install -c -m 644 `for f in ./postgres.shdescription; do test -r $f && echo $f && break; done` '/opt/pgsql-11.16/share/postgres.shdescription'
    /usr/bin/install -c -m 644 ./system_views.sql '/opt/pgsql-11.16/share/system_views.sql'
    /usr/bin/install -c -m 644 ./information_schema.sql '/opt/pgsql-11.16/share/information_schema.sql'
    /usr/bin/install -c -m 644 ./sql_features.txt '/opt/pgsql-11.16/share/sql_features.txt'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/catalog'
    make -C tsearch install-data
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/tsearch'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share' '/opt/pgsql-11.16/share/tsearch_data'
    /usr/bin/install -c -m 644 ./dicts/synonym_sample.syn ./dicts/thesaurus_sample.ths ./dicts/hunspell_sample.affix ./dicts/ispell_sample.affix ./dicts/ispell_sample.dict ./dicts/hunspell_sample_long.affix ./dicts/hunspell_sample_long.dict ./dicts/hunspell_sample_num.affix ./dicts/hunspell_sample_num.dict '/opt/pgsql-11.16/share/tsearch_data/'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/tsearch'
    make -C utils install-data
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share'
    /usr/bin/install -c -m 644 ./errcodes.txt '/opt/pgsql-11.16/share/errcodes.txt'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils'
    /usr/bin/install -c -m 644 ./libpq/pg_hba.conf.sample '/opt/pgsql-11.16/share/pg_hba.conf.sample'
    /usr/bin/install -c -m 644 ./libpq/pg_ident.conf.sample '/opt/pgsql-11.16/share/pg_ident.conf.sample'
    /usr/bin/install -c -m 644 ./utils/misc/postgresql.conf.sample '/opt/pgsql-11.16/share/postgresql.conf.sample'
    /usr/bin/install -c -m 644 ./access/transam/recovery.conf.sample '/opt/pgsql-11.16/share/recovery.conf.sample'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/backend'
    make -C backend/utils/mb/conversion_procs install
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs'
    make -C ascii_and_mic installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/ascii_and_mic'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/ascii_and_mic'
    make -C cyrillic_and_mic installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/cyrillic_and_mic'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/cyrillic_and_mic'
    make -C euc_cn_and_mic installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_cn_and_mic'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_cn_and_mic'
    make -C euc_jp_and_sjis installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis'
    make -C euc_kr_and_mic installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_kr_and_mic'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_kr_and_mic'
    make -C euc_tw_and_big5 installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_tw_and_big5'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_tw_and_big5'
    make -C latin2_and_win1250 installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/latin2_and_win1250'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/latin2_and_win1250'
    make -C latin_and_mic installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/latin_and_mic'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/latin_and_mic'
    make -C utf8_and_ascii installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_ascii'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_ascii'
    make -C utf8_and_big5 installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_big5'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_big5'
    make -C utf8_and_cyrillic installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic'
    make -C utf8_and_euc_cn installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn'
    make -C utf8_and_euc_jp installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp'
    make -C utf8_and_euc_kr installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr'
    make -C utf8_and_euc_tw installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw'
    make -C utf8_and_gb18030 installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_gb18030'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_gb18030'
    make -C utf8_and_gbk installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_gbk'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_gbk'
    make -C utf8_and_iso8859 installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_iso8859'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_iso8859'
    make -C utf8_and_iso8859_1 installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1'
    make -C utf8_and_johab installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_johab'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_johab'
    make -C utf8_and_sjis installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_sjis'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_sjis'
    make -C utf8_and_win installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_win'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_win'
    make -C utf8_and_uhc installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_uhc'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_uhc'
    make -C utf8_and_euc2004 installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc2004'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc2004'
    make -C utf8_and_sjis2004 installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_sjis2004'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_sjis2004'
    make -C euc2004_sjis2004 installdirs
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc2004_sjis2004'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc2004_sjis2004'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share' '/opt/pgsql-11.16/lib'
    make -C ascii_and_mic install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/ascii_and_mic'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  ascii_and_mic.so '/opt/pgsql-11.16/lib/ascii_and_mic.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/ascii_and_mic'
    make -C cyrillic_and_mic install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/cyrillic_and_mic'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  cyrillic_and_mic.so '/opt/pgsql-11.16/lib/cyrillic_and_mic.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/cyrillic_and_mic'
    make -C euc_cn_and_mic install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_cn_and_mic'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  euc_cn_and_mic.so '/opt/pgsql-11.16/lib/euc_cn_and_mic.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_cn_and_mic'
    make -C euc_jp_and_sjis install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  euc_jp_and_sjis.so '/opt/pgsql-11.16/lib/euc_jp_and_sjis.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis'
    make -C euc_kr_and_mic install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_kr_and_mic'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  euc_kr_and_mic.so '/opt/pgsql-11.16/lib/euc_kr_and_mic.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_kr_and_mic'
    make -C euc_tw_and_big5 install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_tw_and_big5'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  euc_tw_and_big5.so '/opt/pgsql-11.16/lib/euc_tw_and_big5.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc_tw_and_big5'
    make -C latin2_and_win1250 install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/latin2_and_win1250'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  latin2_and_win1250.so '/opt/pgsql-11.16/lib/latin2_and_win1250.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/latin2_and_win1250'
    make -C latin_and_mic install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/latin_and_mic'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  latin_and_mic.so '/opt/pgsql-11.16/lib/latin_and_mic.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/latin_and_mic'
    make -C utf8_and_ascii install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_ascii'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  utf8_and_ascii.so '/opt/pgsql-11.16/lib/utf8_and_ascii.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_ascii'
    make -C utf8_and_big5 install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_big5'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  utf8_and_big5.so '/opt/pgsql-11.16/lib/utf8_and_big5.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_big5'
    make -C utf8_and_cyrillic install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  utf8_and_cyrillic.so '/opt/pgsql-11.16/lib/utf8_and_cyrillic.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic'
    make -C utf8_and_euc_cn install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  utf8_and_euc_cn.so '/opt/pgsql-11.16/lib/utf8_and_euc_cn.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn'
    make -C utf8_and_euc_jp install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  utf8_and_euc_jp.so '/opt/pgsql-11.16/lib/utf8_and_euc_jp.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp'
    make -C utf8_and_euc_kr install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  utf8_and_euc_kr.so '/opt/pgsql-11.16/lib/utf8_and_euc_kr.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr'
    make -C utf8_and_euc_tw install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  utf8_and_euc_tw.so '/opt/pgsql-11.16/lib/utf8_and_euc_tw.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw'
    make -C utf8_and_gb18030 install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_gb18030'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  utf8_and_gb18030.so '/opt/pgsql-11.16/lib/utf8_and_gb18030.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_gb18030'
    make -C utf8_and_gbk install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_gbk'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  utf8_and_gbk.so '/opt/pgsql-11.16/lib/utf8_and_gbk.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_gbk'
    make -C utf8_and_iso8859 install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_iso8859'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  utf8_and_iso8859.so '/opt/pgsql-11.16/lib/utf8_and_iso8859.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_iso8859'
    make -C utf8_and_iso8859_1 install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  utf8_and_iso8859_1.so '/opt/pgsql-11.16/lib/utf8_and_iso8859_1.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1'
    make -C utf8_and_johab install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_johab'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  utf8_and_johab.so '/opt/pgsql-11.16/lib/utf8_and_johab.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_johab'
    make -C utf8_and_sjis install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_sjis'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  utf8_and_sjis.so '/opt/pgsql-11.16/lib/utf8_and_sjis.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_sjis'
    make -C utf8_and_win install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_win'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  utf8_and_win.so '/opt/pgsql-11.16/lib/utf8_and_win.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_win'
    make -C utf8_and_uhc install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_uhc'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  utf8_and_uhc.so '/opt/pgsql-11.16/lib/utf8_and_uhc.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_uhc'
    make -C utf8_and_euc2004 install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc2004'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  utf8_and_euc2004.so '/opt/pgsql-11.16/lib/utf8_and_euc2004.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_euc2004'
    make -C utf8_and_sjis2004 install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_sjis2004'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  utf8_and_sjis2004.so '/opt/pgsql-11.16/lib/utf8_and_sjis2004.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/utf8_and_sjis2004'
    make -C euc2004_sjis2004 install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc2004_sjis2004'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  euc2004_sjis2004.so '/opt/pgsql-11.16/lib/euc2004_sjis2004.so'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs/euc2004_sjis2004'
    /usr/bin/install -c -m 644 conversion_create.sql '/opt/pgsql-11.16/share'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/backend/utils/mb/conversion_procs'
    make -C backend/snowball install
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/backend/snowball'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share' '/opt/pgsql-11.16/share/tsearch_data'
    /usr/bin/install -c -m 755  dict_snowball.so '/opt/pgsql-11.16/lib/dict_snowball.so'
    /usr/bin/install -c -m 644 snowball_create.sql '/opt/pgsql-11.16/share'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/backend/snowball'
    make -C include install
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/include'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/include/libpq' '/opt/pgsql-11.16/include/internal/libpq'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/include/server'/access '/opt/pgsql-11.16/include/server'/bootstrap '/opt/pgsql-11.16/include/server'/catalog '/opt/pgsql-11.16/include/server'/commands '/opt/pgsql-11.16/include/server'/common '/opt/pgsql-11.16/include/server'/datatype '/opt/pgsql-11.16/include/server'/executor '/opt/pgsql-11.16/include/server'/fe_utils '/opt/pgsql-11.16/include/server'/foreign '/opt/pgsql-11.16/include/server'/jit '/opt/pgsql-11.16/include/server'/lib '/opt/pgsql-11.16/include/server'/libpq '/opt/pgsql-11.16/include/server'/mb '/opt/pgsql-11.16/include/server'/nodes '/opt/pgsql-11.16/include/server'/optimizer '/opt/pgsql-11.16/include/server'/parser '/opt/pgsql-11.16/include/server'/partitioning '/opt/pgsql-11.16/include/server'/postmaster '/opt/pgsql-11.16/include/server'/regex '/opt/pgsql-11.16/include/server'/replication '/opt/pgsql-11.16/include/server'/rewrite '/opt/pgsql-11.16/include/server'/statistics '/opt/pgsql-11.16/include/server'/storage '/opt/pgsql-11.16/include/server'/tcop '/opt/pgsql-11.16/include/server'/snowball '/opt/pgsql-11.16/include/server'/snowball/libstemmer '/opt/pgsql-11.16/include/server'/tsearch '/opt/pgsql-11.16/include/server'/tsearch/dicts '/opt/pgsql-11.16/include/server'/utils '/opt/pgsql-11.16/include/server'/port '/opt/pgsql-11.16/include/server'/port/atomics '/opt/pgsql-11.16/include/server'/port/win32 '/opt/pgsql-11.16/include/server'/port/win32_msvc '/opt/pgsql-11.16/include/server'/port/win32_msvc/sys '/opt/pgsql-11.16/include/server'/port/win32/arpa '/opt/pgsql-11.16/include/server'/port/win32/netinet '/opt/pgsql-11.16/include/server'/port/win32/sys '/opt/pgsql-11.16/include/server'/portability
    /usr/bin/install -c -m 644 ./postgres_ext.h   '/opt/pgsql-11.16/include'
    /usr/bin/install -c -m 644 ./libpq/libpq-fs.h '/opt/pgsql-11.16/include/libpq'
    /usr/bin/install -c -m 644 pg_config.h     '/opt/pgsql-11.16/include'
    /usr/bin/install -c -m 644 pg_config_ext.h '/opt/pgsql-11.16/include'
    /usr/bin/install -c -m 644 pg_config_os.h  '/opt/pgsql-11.16/include'
    /usr/bin/install -c -m 644 ./pg_config_manual.h '/opt/pgsql-11.16/include'
    /usr/bin/install -c -m 644 ./c.h            '/opt/pgsql-11.16/include/internal'
    /usr/bin/install -c -m 644 ./port.h         '/opt/pgsql-11.16/include/internal'
    /usr/bin/install -c -m 644 ./postgres_fe.h  '/opt/pgsql-11.16/include/internal'
    /usr/bin/install -c -m 644 ./libpq/pqcomm.h '/opt/pgsql-11.16/include/internal/libpq'
    /usr/bin/install -c -m 644 pg_config.h     '/opt/pgsql-11.16/include/server'
    /usr/bin/install -c -m 644 pg_config_ext.h '/opt/pgsql-11.16/include/server'
    /usr/bin/install -c -m 644 pg_config_os.h  '/opt/pgsql-11.16/include/server'
    /usr/bin/install -c -m 644 utils/errcodes.h '/opt/pgsql-11.16/include/server/utils'
    /usr/bin/install -c -m 644 utils/fmgroids.h '/opt/pgsql-11.16/include/server/utils'
    /usr/bin/install -c -m 644 utils/fmgrprotos.h '/opt/pgsql-11.16/include/server/utils'
    cp ./*.h '/opt/pgsql-11.16/include/server'/
    for dir in access bootstrap catalog commands common datatype executor fe_utils foreign jit lib libpq mb nodes optimizer parser partitioning postmaster regex replication rewrite statistics storage tcop snowball snowball/libstemmer tsearch tsearch/dicts utils port port/atomics port/win32 port/win32_msvc port/win32_msvc/sys port/win32/arpa port/win32/netinet port/win32/sys portability; do \
      cp ./$dir/*.h '/opt/pgsql-11.16/include/server'/$dir/ || exit; \
    done
    cd '/opt/pgsql-11.16/include/server' && chmod 644 *.h
    for dir in access bootstrap catalog commands common datatype executor fe_utils foreign jit lib libpq mb nodes optimizer parser partitioning postmaster regex replication rewrite statistics storage tcop snowball snowball/libstemmer tsearch tsearch/dicts utils port port/atomics port/win32 port/win32_msvc port/win32_msvc/sys port/win32/arpa port/win32/netinet port/win32/sys portability; do \
      cd '/opt/pgsql-11.16/include/server'/$dir || exit; \
      chmod 644 *.h || exit; \
    done
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/include'
    make -C interfaces install
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/interfaces'
    make -C libpq install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib' '/opt/pgsql-11.16/lib/pkgconfig' 
    /usr/bin/mkdir -p '/opt/pgsql-11.16/include' '/opt/pgsql-11.16/include/internal' '/opt/pgsql-11.16/share'
    /usr/bin/install -c -m 755  libpq.so.5.11 '/opt/pgsql-11.16/lib/libpq.so.5.11'
    cd '/opt/pgsql-11.16/lib' && \
    rm -f libpq.so.5 && \
    ln -s libpq.so.5.11 libpq.so.5
    cd '/opt/pgsql-11.16/lib' && \
    rm -f libpq.so && \
    ln -s libpq.so.5.11 libpq.so
    /usr/bin/install -c -m 644  libpq.a '/opt/pgsql-11.16/lib/libpq.a'
    /usr/bin/install -c -m 644 libpq.pc '/opt/pgsql-11.16/lib/pkgconfig/libpq.pc'
    /usr/bin/install -c -m 644 ./libpq-fe.h '/opt/pgsql-11.16/include'
    /usr/bin/install -c -m 644 ./libpq-events.h '/opt/pgsql-11.16/include'
    /usr/bin/install -c -m 644 ./libpq-int.h '/opt/pgsql-11.16/include/internal'
    /usr/bin/install -c -m 644 ./pqexpbuffer.h '/opt/pgsql-11.16/include/internal'
    /usr/bin/install -c -m 644 ./pg_service.conf.sample '/opt/pgsql-11.16/share/pg_service.conf.sample'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ecpg install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg'
    make -C include install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/include'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/include' '/opt/pgsql-11.16/include/informix/esql'
    /usr/bin/install -c -m 644 ./ecpgerrno.h ./ecpglib.h ./ecpgtype.h ./sqlca.h ./sql3types.h ./ecpg_informix.h ./pgtypes_error.h ./pgtypes_numeric.h ./pgtypes_timestamp.h ./pgtypes_date.h ./pgtypes_interval.h ./pgtypes.h ./sqlda.h ./sqlda-compat.h ./sqlda-native.h '/opt/pgsql-11.16/include/'
    /usr/bin/install -c -m 644 ./datetime.h ./decimal.h ./sqltypes.h '/opt/pgsql-11.16/include/informix/esql/'
    /usr/bin/install -c -m 644 ../../../../src/interfaces/ecpg/include/ecpg_config.h '/opt/pgsql-11.16/include'
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/include'
    make -C pgtypeslib install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/pgtypeslib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib' '/opt/pgsql-11.16/lib/pkgconfig' 
    /usr/bin/install -c -m 755  libpgtypes.so.3.11 '/opt/pgsql-11.16/lib/libpgtypes.so.3.11'
    cd '/opt/pgsql-11.16/lib' && \
    rm -f libpgtypes.so.3 && \
    ln -s libpgtypes.so.3.11 libpgtypes.so.3
    cd '/opt/pgsql-11.16/lib' && \
    rm -f libpgtypes.so && \
    ln -s libpgtypes.so.3.11 libpgtypes.so
    /usr/bin/install -c -m 644  libpgtypes.a '/opt/pgsql-11.16/lib/libpgtypes.a'
    /usr/bin/install -c -m 644 libpgtypes.pc '/opt/pgsql-11.16/lib/pkgconfig/libpgtypes.pc'
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/pgtypeslib'
    make -C ecpglib install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/ecpglib'
    make -C ../../../../src/interfaces/libpq all
    make[5]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../../src/interfaces/ecpg/pgtypeslib all
    make[5]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/pgtypeslib'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/pgtypeslib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib' '/opt/pgsql-11.16/lib/pkgconfig' 
    /usr/bin/install -c -m 755  libecpg.so.6.11 '/opt/pgsql-11.16/lib/libecpg.so.6.11'
    cd '/opt/pgsql-11.16/lib' && \
    rm -f libecpg.so.6 && \
    ln -s libecpg.so.6.11 libecpg.so.6
    cd '/opt/pgsql-11.16/lib' && \
    rm -f libecpg.so && \
    ln -s libecpg.so.6.11 libecpg.so
    /usr/bin/install -c -m 644  libecpg.a '/opt/pgsql-11.16/lib/libecpg.a'
    /usr/bin/install -c -m 644 libecpg.pc '/opt/pgsql-11.16/lib/pkgconfig/libecpg.pc'
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/ecpglib'
    make -C compatlib install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/compatlib'
    make -C ../../../../src/interfaces/ecpg/ecpglib all
    make[5]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/ecpglib'
    make -C ../../../../src/interfaces/libpq all
    make[6]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[6]: Nothing to be done for 'all'.
    make[6]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../../src/interfaces/ecpg/pgtypeslib all
    make[6]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/pgtypeslib'
    make[6]: Nothing to be done for 'all'.
    make[6]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/pgtypeslib'
    make[5]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/ecpglib'
    make -C ../../../../src/interfaces/ecpg/pgtypeslib all
    make[5]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/pgtypeslib'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/pgtypeslib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib' '/opt/pgsql-11.16/lib/pkgconfig' 
    /usr/bin/install -c -m 755  libecpg_compat.so.3.11 '/opt/pgsql-11.16/lib/libecpg_compat.so.3.11'
    cd '/opt/pgsql-11.16/lib' && \
    rm -f libecpg_compat.so.3 && \
    ln -s libecpg_compat.so.3.11 libecpg_compat.so.3
    cd '/opt/pgsql-11.16/lib' && \
    rm -f libecpg_compat.so && \
    ln -s libecpg_compat.so.3.11 libecpg_compat.so
    /usr/bin/install -c -m 644  libecpg_compat.a '/opt/pgsql-11.16/lib/libecpg_compat.a'
    /usr/bin/install -c -m 644 libecpg_compat.pc '/opt/pgsql-11.16/lib/pkgconfig/libecpg_compat.pc'
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/compatlib'
    make -C preproc install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/preproc'
    make -C ../../../../src/port all
    make[5]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../../src/common all
    make[5]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c  ecpg '/opt/pgsql-11.16/bin'
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg/preproc'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/ecpg'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces'
    make -C backend/replication/libpqwalreceiver install
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/backend/replication/libpqwalreceiver'
    make -C ../../../../src/interfaces/libpq all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  libpqwalreceiver.so '/opt/pgsql-11.16/lib/libpqwalreceiver.so'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/backend/replication/libpqwalreceiver'
    make -C backend/replication/pgoutput install
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/backend/replication/pgoutput'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  pgoutput.so '/opt/pgsql-11.16/lib/pgoutput.so'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/backend/replication/pgoutput'
    make -C fe_utils install
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/fe_utils'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 644  libpgfeutils.a '/opt/pgsql-11.16/lib/libpgfeutils.a'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/fe_utils'
    make -C bin install
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/bin'
    make -C initdb install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/initdb'
    make -C ../../../src/interfaces/libpq all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/fe_utils all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/fe_utils'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c  initdb '/opt/pgsql-11.16/bin/initdb'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/initdb'
    make -C pg_archivecleanup install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_archivecleanup'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c  pg_archivecleanup '/opt/pgsql-11.16/bin/pg_archivecleanup'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_archivecleanup'
    make -C pg_basebackup install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_basebackup'
    make -C ../../../src/interfaces/libpq all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/fe_utils all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/fe_utils'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c  pg_basebackup '/opt/pgsql-11.16/bin/pg_basebackup'
    /usr/bin/install -c  pg_receivewal '/opt/pgsql-11.16/bin/pg_receivewal'
    /usr/bin/install -c  pg_recvlogical '/opt/pgsql-11.16/bin/pg_recvlogical'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_basebackup'
    make -C pg_config install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_config'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c -m 755 pg_config '/opt/pgsql-11.16/bin/pg_config'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_config'
    make -C pg_controldata install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_controldata'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c  pg_controldata '/opt/pgsql-11.16/bin/pg_controldata'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_controldata'
    make -C pg_ctl install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_ctl'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c  pg_ctl '/opt/pgsql-11.16/bin/pg_ctl'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_ctl'
    make -C pg_dump install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_dump'
    make -C ../../../src/interfaces/libpq all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/fe_utils all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/fe_utils'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c  pg_dump '/opt/pgsql-11.16/bin'/pg_dump
    /usr/bin/install -c  pg_restore '/opt/pgsql-11.16/bin'/pg_restore
    /usr/bin/install -c  pg_dumpall '/opt/pgsql-11.16/bin'/pg_dumpall
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_dump'
    make -C pg_resetwal install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_resetwal'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c  pg_resetwal '/opt/pgsql-11.16/bin/pg_resetwal'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_resetwal'
    make -C pg_rewind install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_rewind'
    make -C ../../../src/interfaces/libpq all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c  pg_rewind '/opt/pgsql-11.16/bin/pg_rewind'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_rewind'
    make -C pg_test_fsync install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_test_fsync'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c  pg_test_fsync '/opt/pgsql-11.16/bin/pg_test_fsync'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_test_fsync'
    make -C pg_test_timing install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_test_timing'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c  pg_test_timing '/opt/pgsql-11.16/bin/pg_test_timing'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_test_timing'
    make -C pg_upgrade install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_upgrade'
    make -C ../../../src/interfaces/libpq all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/fe_utils all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/fe_utils'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c  pg_upgrade '/opt/pgsql-11.16/bin/pg_upgrade'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_upgrade'
    make -C pg_verify_checksums install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_verify_checksums'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c  pg_verify_checksums '/opt/pgsql-11.16/bin/pg_verify_checksums'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_verify_checksums'
    make -C pg_waldump install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pg_waldump'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c  pg_waldump '/opt/pgsql-11.16/bin/pg_waldump'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pg_waldump'
    make -C pgbench install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/pgbench'
    make -C ../../../src/interfaces/libpq all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/fe_utils all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/fe_utils'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c  pgbench '/opt/pgsql-11.16/bin/pgbench'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/pgbench'
    make -C psql install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/psql'
    make -C ../../../src/interfaces/libpq all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/fe_utils all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/fe_utils'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin' '/opt/pgsql-11.16/share'
    /usr/bin/install -c  psql '/opt/pgsql-11.16/bin/psql'
    /usr/bin/install -c -m 644 ./psqlrc.sample '/opt/pgsql-11.16/share/psqlrc.sample'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/psql'
    make -C scripts install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/bin/scripts'
    make -C ../../../src/interfaces/libpq all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/port all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../src/fe_utils all
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/fe_utils'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/fe_utils'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c  createdb   '/opt/pgsql-11.16/bin'/createdb
    /usr/bin/install -c  dropdb     '/opt/pgsql-11.16/bin'/dropdb
    /usr/bin/install -c  createuser '/opt/pgsql-11.16/bin'/createuser
    /usr/bin/install -c  dropuser   '/opt/pgsql-11.16/bin'/dropuser
    /usr/bin/install -c  clusterdb  '/opt/pgsql-11.16/bin'/clusterdb
    /usr/bin/install -c  vacuumdb   '/opt/pgsql-11.16/bin'/vacuumdb
    /usr/bin/install -c  reindexdb  '/opt/pgsql-11.16/bin'/reindexdb
    /usr/bin/install -c  pg_isready '/opt/pgsql-11.16/bin'/pg_isready
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/bin/scripts'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/bin'
    make -C pl install
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/pl'
    make -C plpgsql install
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/pl/plpgsql'
    make -C src install
    make[4]: Entering directory '/opt/software/postgresql-11.16/src/pl/plpgsql/src'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  plpgsql.so '/opt/pgsql-11.16/lib/plpgsql.so'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/include/server'
    /usr/bin/install -c -m 644 ./plpgsql.control ./plpgsql--1.0.sql ./plpgsql--unpackaged--1.0.sql '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 './plpgsql.h' '/opt/pgsql-11.16/include/server'
    make[4]: Leaving directory '/opt/software/postgresql-11.16/src/pl/plpgsql/src'
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/pl/plpgsql'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/pl'
    make -C makefiles install
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/makefiles'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib/pgxs/src/makefiles'
    /usr/bin/install -c -m 644 ./pgxs.mk '/opt/pgsql-11.16/lib/pgxs/src/makefiles/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/makefiles'
    make -C test/regress install
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/test/regress'
    make -C ../../../src/port all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make -C ../../../contrib/spi
    make[3]: Entering directory '/opt/software/postgresql-11.16/contrib/spi'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/contrib/spi'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib/pgxs/src/test/regress'
    /usr/bin/install -c  pg_regress '/opt/pgsql-11.16/lib/pgxs/src/test/regress/pg_regress'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/test/regress'
    make -C test/isolation install
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/test/isolation'
    make -C ../../../src/interfaces/libpq all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make -C ../../../src/port all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/port'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/port'
    make -C ../../../src/common all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/common'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/common'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/test/isolation'
    make -C test/perl install
    make[2]: Entering directory '/opt/software/postgresql-11.16/src/test/perl'
    make[2]: Nothing to be done for 'install'.
    make[2]: Leaving directory '/opt/software/postgresql-11.16/src/test/perl'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib/pgxs/src'
    /usr/bin/install -c -m 644 Makefile.global '/opt/pgsql-11.16/lib/pgxs/src/Makefile.global'
    /usr/bin/install -c -m 644 Makefile.port '/opt/pgsql-11.16/lib/pgxs/src/Makefile.port'
    /usr/bin/install -c -m 644 ./Makefile.shlib '/opt/pgsql-11.16/lib/pgxs/src/Makefile.shlib'
    /usr/bin/install -c -m 644 ./nls-global.mk '/opt/pgsql-11.16/lib/pgxs/src/nls-global.mk'
    make[1]: Leaving directory '/opt/software/postgresql-11.16/src'
    make -C config install
    make[1]: Entering directory '/opt/software/postgresql-11.16/config'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib/pgxs/config'
    /usr/bin/install -c -m 755 ./install-sh '/opt/pgsql-11.16/lib/pgxs/config/install-sh'
    /usr/bin/install -c -m 755 ./missing '/opt/pgsql-11.16/lib/pgxs/config/missing'
    make[1]: Leaving directory '/opt/software/postgresql-11.16/config'
    make -C contrib install
    make[1]: Entering directory '/opt/software/postgresql-11.16/contrib'
    make -C adminpack install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/adminpack'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  adminpack.so '/opt/pgsql-11.16/lib/adminpack.so'
    /usr/bin/install -c -m 644 ./adminpack.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./adminpack--1.0.sql ./adminpack--1.0--1.1.sql ./adminpack--1.1--2.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/adminpack'
    make -C amcheck install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/amcheck'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  amcheck.so '/opt/pgsql-11.16/lib/amcheck.so'
    /usr/bin/install -c -m 644 ./amcheck.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./amcheck--1.0--1.1.sql ./amcheck--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/amcheck'
    make -C auth_delay install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/auth_delay'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  auth_delay.so '/opt/pgsql-11.16/lib/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/auth_delay'
    make -C auto_explain install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/auto_explain'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  auto_explain.so '/opt/pgsql-11.16/lib/auto_explain.so'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/auto_explain'
    make -C bloom install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/bloom'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  bloom.so '/opt/pgsql-11.16/lib/bloom.so'
    /usr/bin/install -c -m 644 ./bloom.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./bloom--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/bloom'
    make -C btree_gin install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/btree_gin'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  btree_gin.so '/opt/pgsql-11.16/lib/btree_gin.so'
    /usr/bin/install -c -m 644 ./btree_gin.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./btree_gin--1.0.sql ./btree_gin--1.0--1.1.sql ./btree_gin--1.1--1.2.sql ./btree_gin--1.2--1.3.sql ./btree_gin--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/btree_gin'
    make -C btree_gist install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/btree_gist'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  btree_gist.so '/opt/pgsql-11.16/lib/btree_gist.so'
    /usr/bin/install -c -m 644 ./btree_gist.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./btree_gist--unpackaged--1.0.sql ./btree_gist--1.0--1.1.sql ./btree_gist--1.1--1.2.sql ./btree_gist--1.2.sql ./btree_gist--1.2--1.3.sql ./btree_gist--1.3--1.4.sql ./btree_gist--1.4--1.5.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/btree_gist'
    make -C citext install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/citext'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 644 ./citext.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./citext--1.4.sql ./citext--1.4--1.5.sql ./citext--1.3--1.4.sql ./citext--1.2--1.3.sql ./citext--1.1--1.2.sql ./citext--1.0--1.1.sql ./citext--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 755  citext.so '/opt/pgsql-11.16/lib/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/citext'
    make -C cube install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/cube'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  cube.so '/opt/pgsql-11.16/lib/cube.so'
    /usr/bin/install -c -m 644 ./cube.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./cube--1.2.sql ./cube--1.2--1.3.sql ./cube--1.3--1.4.sql ./cube--1.1--1.2.sql ./cube--1.0--1.1.sql ./cube--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/include/server/extension/cube/'
    /usr/bin/install -c -m 644   ./cubedata.h '/opt/pgsql-11.16/include/server/extension/cube/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/cube'
    make -C dblink install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/dblink'
    make -C ../../src/interfaces/libpq all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  dblink.so '/opt/pgsql-11.16/lib/dblink.so'
    /usr/bin/install -c -m 644 ./dblink.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./dblink--1.2.sql ./dblink--1.1--1.2.sql ./dblink--1.0--1.1.sql ./dblink--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/dblink'
    make -C dict_int install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/dict_int'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  dict_int.so '/opt/pgsql-11.16/lib/dict_int.so'
    /usr/bin/install -c -m 644 ./dict_int.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./dict_int--1.0.sql ./dict_int--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/dict_int'
    make -C dict_xsyn install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/dict_xsyn'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/tsearch_data'
    /usr/bin/install -c -m 755  dict_xsyn.so '/opt/pgsql-11.16/lib/dict_xsyn.so'
    /usr/bin/install -c -m 644 ./dict_xsyn.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./dict_xsyn--1.0.sql ./dict_xsyn--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./xsyn_sample.rules '/opt/pgsql-11.16/share/tsearch_data/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/dict_xsyn'
    make -C earthdistance install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/earthdistance'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 644 ./earthdistance.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./earthdistance--1.1.sql ./earthdistance--1.0--1.1.sql ./earthdistance--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 755  earthdistance.so '/opt/pgsql-11.16/lib/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/earthdistance'
    make -C file_fdw install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/file_fdw'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 644 ./file_fdw.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./file_fdw--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 755  file_fdw.so '/opt/pgsql-11.16/lib/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/file_fdw'
    make -C fuzzystrmatch install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/fuzzystrmatch'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  fuzzystrmatch.so '/opt/pgsql-11.16/lib/fuzzystrmatch.so'
    /usr/bin/install -c -m 644 ./fuzzystrmatch.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./fuzzystrmatch--1.1.sql ./fuzzystrmatch--1.0--1.1.sql ./fuzzystrmatch--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/fuzzystrmatch'
    make -C hstore install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/hstore'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  hstore.so '/opt/pgsql-11.16/lib/hstore.so'
    /usr/bin/install -c -m 644 ./hstore.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./hstore--1.4.sql ./hstore--1.4--1.5.sql ./hstore--1.3--1.4.sql ./hstore--1.2--1.3.sql ./hstore--1.1--1.2.sql ./hstore--1.0--1.1.sql ./hstore--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/include/server/extension/hstore/'
    /usr/bin/install -c -m 644   ./hstore.h '/opt/pgsql-11.16/include/server/extension/hstore/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/hstore'
    make -C intagg install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/intagg'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 644 ./intagg.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./intagg--1.1.sql ./intagg--1.0--1.1.sql ./intagg--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/intagg'
    make -C intarray install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/intarray'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  _int.so '/opt/pgsql-11.16/lib/_int.so'
    /usr/bin/install -c -m 644 ./intarray.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./intarray--1.2.sql ./intarray--1.1--1.2.sql ./intarray--1.0--1.1.sql ./intarray--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/intarray'
    make -C isn install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/isn'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 644 ./isn.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./isn--1.1.sql ./isn--1.1--1.2.sql ./isn--1.0--1.1.sql ./isn--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 755  isn.so '/opt/pgsql-11.16/lib/'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/include/server/extension/isn/'
    /usr/bin/install -c -m 644  ./isn.h '/opt/pgsql-11.16/include/server/extension/isn/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/isn'
    make -C lo install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/lo'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 644 ./lo.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./lo--1.1.sql ./lo--1.0--1.1.sql ./lo--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 755  lo.so '/opt/pgsql-11.16/lib/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/lo'
    make -C ltree install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/ltree'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  ltree.so '/opt/pgsql-11.16/lib/ltree.so'
    /usr/bin/install -c -m 644 ./ltree.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./ltree--1.1.sql ./ltree--1.0--1.1.sql ./ltree--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/include/server/extension/ltree/'
    /usr/bin/install -c -m 644   ./ltree.h '/opt/pgsql-11.16/include/server/extension/ltree/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/ltree'
    make -C oid2name install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/oid2name'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c  oid2name '/opt/pgsql-11.16/bin'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/oid2name'
    make -C pageinspect install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pageinspect'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  pageinspect.so '/opt/pgsql-11.16/lib/pageinspect.so'
    /usr/bin/install -c -m 644 ./pageinspect.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./pageinspect--1.6--1.7.sql ./pageinspect--1.5.sql ./pageinspect--1.5--1.6.sql ./pageinspect--1.4--1.5.sql ./pageinspect--1.3--1.4.sql ./pageinspect--1.2--1.3.sql ./pageinspect--1.1--1.2.sql ./pageinspect--1.0--1.1.sql ./pageinspect--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pageinspect'
    make -C passwordcheck install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/passwordcheck'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  passwordcheck.so '/opt/pgsql-11.16/lib/passwordcheck.so'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/passwordcheck'
    make -C pg_buffercache install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pg_buffercache'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  pg_buffercache.so '/opt/pgsql-11.16/lib/pg_buffercache.so'
    /usr/bin/install -c -m 644 ./pg_buffercache.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./pg_buffercache--1.2.sql ./pg_buffercache--1.2--1.3.sql ./pg_buffercache--1.1--1.2.sql ./pg_buffercache--1.0--1.1.sql ./pg_buffercache--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pg_buffercache'
    make -C pg_freespacemap install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pg_freespacemap'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  pg_freespacemap.so '/opt/pgsql-11.16/lib/pg_freespacemap.so'
    /usr/bin/install -c -m 644 ./pg_freespacemap.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./pg_freespacemap--1.1.sql ./pg_freespacemap--1.1--1.2.sql ./pg_freespacemap--1.0--1.1.sql ./pg_freespacemap--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pg_freespacemap'
    make -C pg_prewarm install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pg_prewarm'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  pg_prewarm.so '/opt/pgsql-11.16/lib/pg_prewarm.so'
    /usr/bin/install -c -m 644 ./pg_prewarm.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./pg_prewarm--1.1--1.2.sql ./pg_prewarm--1.1.sql ./pg_prewarm--1.0--1.1.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pg_prewarm'
    make -C pg_standby install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pg_standby'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c  pg_standby '/opt/pgsql-11.16/bin'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pg_standby'
    make -C pg_stat_statements install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pg_stat_statements'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  pg_stat_statements.so '/opt/pgsql-11.16/lib/pg_stat_statements.so'
    /usr/bin/install -c -m 644 ./pg_stat_statements.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./pg_stat_statements--1.4.sql ./pg_stat_statements--1.5--1.6.sql ./pg_stat_statements--1.4--1.5.sql ./pg_stat_statements--1.3--1.4.sql ./pg_stat_statements--1.2--1.3.sql ./pg_stat_statements--1.1--1.2.sql ./pg_stat_statements--1.0--1.1.sql ./pg_stat_statements--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pg_stat_statements'
    make -C pg_trgm install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pg_trgm'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  pg_trgm.so '/opt/pgsql-11.16/lib/pg_trgm.so'
    /usr/bin/install -c -m 644 ./pg_trgm.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./pg_trgm--1.3--1.4.sql ./pg_trgm--1.3.sql ./pg_trgm--1.2--1.3.sql ./pg_trgm--1.1--1.2.sql ./pg_trgm--1.0--1.1.sql ./pg_trgm--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pg_trgm'
    make -C pgcrypto install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pgcrypto'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  pgcrypto.so '/opt/pgsql-11.16/lib/pgcrypto.so'
    /usr/bin/install -c -m 644 ./pgcrypto.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./pgcrypto--1.3.sql ./pgcrypto--1.2--1.3.sql ./pgcrypto--1.1--1.2.sql ./pgcrypto--1.0--1.1.sql ./pgcrypto--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pgcrypto'
    make -C pgrowlocks install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pgrowlocks'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  pgrowlocks.so '/opt/pgsql-11.16/lib/pgrowlocks.so'
    /usr/bin/install -c -m 644 ./pgrowlocks.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./pgrowlocks--1.2.sql ./pgrowlocks--1.1--1.2.sql ./pgrowlocks--1.0--1.1.sql ./pgrowlocks--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pgrowlocks'
    make -C pgstattuple install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pgstattuple'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  pgstattuple.so '/opt/pgsql-11.16/lib/pgstattuple.so'
    /usr/bin/install -c -m 644 ./pgstattuple.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./pgstattuple--1.4.sql ./pgstattuple--1.4--1.5.sql ./pgstattuple--1.3--1.4.sql ./pgstattuple--1.2--1.3.sql ./pgstattuple--1.1--1.2.sql ./pgstattuple--1.0--1.1.sql ./pgstattuple--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pgstattuple'
    make -C pg_visibility install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/pg_visibility'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  pg_visibility.so '/opt/pgsql-11.16/lib/pg_visibility.so'
    /usr/bin/install -c -m 644 ./pg_visibility.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./pg_visibility--1.1.sql ./pg_visibility--1.1--1.2.sql ./pg_visibility--1.0--1.1.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/pg_visibility'
    make -C postgres_fdw install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/postgres_fdw'
    make -C ../../src/interfaces/libpq all
    make[3]: Entering directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/opt/software/postgresql-11.16/src/interfaces/libpq'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  postgres_fdw.so '/opt/pgsql-11.16/lib/postgres_fdw.so'
    /usr/bin/install -c -m 644 ./postgres_fdw.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./postgres_fdw--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/postgres_fdw'
    make -C seg install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/seg'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  seg.so '/opt/pgsql-11.16/lib/seg.so'
    /usr/bin/install -c -m 644 ./seg.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./seg--1.1.sql ./seg--1.1--1.2.sql ./seg--1.2--1.3.sql ./seg--1.0--1.1.sql ./seg--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/include/server/extension/seg/'
    /usr/bin/install -c -m 644   ./segdata.h '/opt/pgsql-11.16/include/server/extension/seg/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/seg'
    make -C spi install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/spi'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/doc//extension'
    /usr/bin/install -c -m 644 ./autoinc.control ./insert_username.control ./moddatetime.control ./refint.control ./timetravel.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./autoinc--1.0.sql ./autoinc--unpackaged--1.0.sql ./insert_username--1.0.sql ./insert_username--unpackaged--1.0.sql ./moddatetime--1.0.sql ./moddatetime--unpackaged--1.0.sql ./refint--1.0.sql ./refint--unpackaged--1.0.sql ./timetravel--1.0.sql ./timetravel--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 755  autoinc.so insert_username.so moddatetime.so refint.so timetravel.so '/opt/pgsql-11.16/lib/'
    /usr/bin/install -c -m 644 ./autoinc.example ./insert_username.example ./moddatetime.example ./refint.example ./timetravel.example '/opt/pgsql-11.16/share/doc//extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/spi'
    make -C tablefunc install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/tablefunc'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 644 ./tablefunc.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./tablefunc--1.0.sql ./tablefunc--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 755  tablefunc.so '/opt/pgsql-11.16/lib/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/tablefunc'
    make -C tcn install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/tcn'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 644 ./tcn.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./tcn--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 755  tcn.so '/opt/pgsql-11.16/lib/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/tcn'
    make -C test_decoding install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/test_decoding'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/install -c -m 755  test_decoding.so '/opt/pgsql-11.16/lib/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/test_decoding'
    make -C tsm_system_rows install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/tsm_system_rows'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  tsm_system_rows.so '/opt/pgsql-11.16/lib/tsm_system_rows.so'
    /usr/bin/install -c -m 644 ./tsm_system_rows.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./tsm_system_rows--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/tsm_system_rows'
    make -C tsm_system_time install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/tsm_system_time'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  tsm_system_time.so '/opt/pgsql-11.16/lib/tsm_system_time.so'
    /usr/bin/install -c -m 644 ./tsm_system_time.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./tsm_system_time--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/tsm_system_time'
    make -C unaccent install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/unaccent'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/tsearch_data'
    /usr/bin/install -c -m 755  unaccent.so '/opt/pgsql-11.16/lib/unaccent.so'
    /usr/bin/install -c -m 644 ./unaccent.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./unaccent--1.1.sql ./unaccent--1.0--1.1.sql ./unaccent--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./unaccent.rules '/opt/pgsql-11.16/share/tsearch_data/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/unaccent'
    make -C vacuumlo install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/vacuumlo'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/bin'
    /usr/bin/install -c  vacuumlo '/opt/pgsql-11.16/bin'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/vacuumlo'
    make -C uuid-ossp install
    make[2]: Entering directory '/opt/software/postgresql-11.16/contrib/uuid-ossp'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/lib'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/mkdir -p '/opt/pgsql-11.16/share/extension'
    /usr/bin/install -c -m 755  uuid-ossp.so '/opt/pgsql-11.16/lib/uuid-ossp.so'
    /usr/bin/install -c -m 644 ./uuid-ossp.control '/opt/pgsql-11.16/share/extension/'
    /usr/bin/install -c -m 644 ./uuid-ossp--1.1.sql ./uuid-ossp--1.0--1.1.sql ./uuid-ossp--unpackaged--1.0.sql  '/opt/pgsql-11.16/share/extension/'
    make[2]: Leaving directory '/opt/software/postgresql-11.16/contrib/uuid-ossp'
    make[1]: Leaving directory '/opt/software/postgresql-11.16/contrib'
    PostgreSQL, contrib, and documentation installation complete.
    
    • 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
    • 1001
    • 1002
    • 1003
    • 1004
    • 1005
    • 1006
    • 1007
    • 1008
    • 1009
    • 1010
    • 1011
    • 1012
    • 1013
    • 1014
    • 1015
    • 1016
    • 1017
    • 1018
    • 1019
    • 1020
    • 1021
    • 1022
    • 1023
    • 1024
    • 1025
    • 1026
    • 1027
    • 1028
    • 1029
    • 1030
    • 1031
    • 1032
    • 1033
    • 1034
    • 1035
    • 1036
    • 1037
    • 1038
    • 1039
    • 1040
    • 1041
    • 1042
    • 1043
    • 1044
    • 1045
    • 1046
    • 1047
    • 1048
    • 1049
    • 1050
    • 1051
    • 1052
    • 1053
    • 1054
    • 1055
    • 1056
    • 1057
    • 1058
    • 1059
    • 1060
    • 1061
    • 1062
    • 1063
    • 1064
    • 1065
    • 1066
    • 1067
    • 1068
    • 1069
    • 1070
    • 1071
    • 1072
    • 1073
    • 1074
    • 1075
    • 1076
    • 1077
    • 1078
    • 1079
    • 1080
    • 1081
    • 1082
    • 1083
    • 1084
    • 1085
    • 1086
    • 1087
    • 1088
    • 1089
    • 1090
    • 1091
    • 1092
    • 1093
    • 1094
    • 1095
    • 1096
    • 1097
    • 1098
    • 1099
    • 1100
    • 1101
    • 1102
    • 1103
    • 1104
    • 1105
    • 1106
    • 1107
    • 1108
    • 1109
    • 1110
    • 1111
    • 1112
    • 1113
    • 1114
    • 1115
    • 1116
    • 1117
    • 1118
    • 1119
    • 1120
    • 1121
    • 1122
    • 1123
    • 1124
    • 1125
    • 1126
    • 1127
    • 1128
    • 1129
    • 1130
    • 1131
    • 1132
    • 1133
    • 1134
    • 1135
    • 1136
    • 1137
    • 1138
    • 1139
    • 1140
    • 1141
    • 1142
    • 1143
    • 1144
    • 1145
    • 1146
    • 1147
    • 1148
    • 1149
    • 1150
    • 1151
    • 1152
    • 1153
    • 1154
    • 1155
    • 1156
    • 1157
    • 1158
    • 1159
    • 1160
    • 1161
    • 1162
    • 1163
    • 1164
    • 1165
    • 1166
    • 1167
    • 1168
    • 1169
    • 1170
    • 1171
    • 1172
    • 1173
    • 1174
    • 1175
    • 1176
    • 1177
    • 1178
    • 1179
    • 1180
    • 1181
    • 1182
    • 1183
    • 1184
    • 1185
    • 1186
    • 1187
    • 1188
    • 1189
    • 1190
    • 1191
    • 1192
    • 1193
    • 1194
    • 1195
    • 1196
    • 1197
    • 1198
    • 1199
    • 1200
    • 1201
    • 1202
    • 1203
    • 1204
    • 1205
    • 1206
    • 1207
    • 1208
    • 1209
    • 1210
    • 1211
    • 1212
    • 1213
    • 1214
    • 1215
    • 1216
    • 1217
    • 1218
    • 1219
    • 1220
    • 1221
    • 1222
    • 1223
    • 1224
    • 1225
    • 1226
    • 1227
    • 1228
    • 1229
    • 1230
    • 1231
    • 1232
    • 1233
    • 1234
    • 1235
    • 1236
    • 1237
    • 1238
    • 1239
    • 1240
    • 1241
    • 1242
    • 1243
    • 1244
    • 1245
    • 1246
    • 1247
    • 1248
    • 1249
    • 1250
    • 1251
    • 1252
    • 1253
    • 1254
    • 1255
    • 1256
    • 1257
    • 1258
    • 1259
    • 1260
    • 1261
    • 1262
    • 1263
    • 1264
    • 1265
    • 1266
    • 1267
    • 1268
    • 1269
    • 1270
    • 1271
    • 1272
    • 1273
    • 1274
    • 1275
    • 1276
    • 1277
    • 1278
    • 1279
    • 1280
    • 1281
    • 1282
    • 1283
    • 1284
    • 1285
    • 1286
    • 1287
    • 1288
    • 1289
    • 1290
    • 1291
    • 1292
    • 1293
    • 1294
    • 1295
    • 1296
    • 1297
    • 1298
    • 1299
    • 1300
    • 1301
    • 1302
    • 1303
    • 1304
    • 1305
    • 1306
    • 1307
    • 1308
    • 1309
    • 1310
    • 1311
    • 1312
    • 1313
    • 1314
    • 1315
    • 1316
    • 1317
    • 1318
    • 1319
    • 1320
    • 1321
    • 1322
    • 1323
    • 1324
    • 1325
    • 1326
    • 1327
    • 1328
    • 1329
    • 1330
    • 1331
    • 1332
    • 1333
    • 1334
    • 1335
    • 1336
    • 1337
    • 1338
    • 1339
    • 1340
    • 1341
    • 1342
    • 1343
    • 1344
    • 1345
    • 1346
    • 1347
    • 1348
    • 1349
    • 1350
    • 1351
    • 1352
    • 1353
    • 1354
    • 1355
    • 1356
    • 1357
    • 1358
    • 1359
    • 1360
    • 1361
    • 1362
    • 1363
    • 1364
    • 1365
    • 1366
    • 1367
    • 1368
    • 1369
    • 1370
    • 1371
    • 1372
    • 1373
    • 1374
    • 1375
    • 1376
    • 1377
    • 1378
    • 1379
    • 1380
    • 1381
    • 1382
    • 1383
    • 1384
    • 1385
    • 1386
    • 1387
    • 1388
    • 1389
    • 1390
    • 1391
    • 1392
    • 1393
    • 1394
    • 1395
    • 1396
    • 1397
    • 1398
    • 1399
    • 1400
    • 1401
    • 1402
    • 1403
    • 1404
    • 1405
    • 1406
    • 1407
    • 1408
    • 1409
    • 1410
    • 1411
    • 1412
    • 1413
    • 1414
    • 1415
    • 1416
    • 1417
    • 1418
    • 1419
    • 1420
    • 1421
    • 1422
    • 1423
    • 1424
    • 1425
    • 1426
    • 1427
    • 1428
    • 1429
    • 1430
    • 1431
    • 1432
    • 1433
    • 1434
    • 1435
    • 1436
    • 1437
    • 1438
    • 1439
    • 1440
    • 1441
    • 1442
    • 1443
    • 1444
    • 1445
    • 1446
    • 1447
    • 1448
    • 1449
    • 1450
    • 1451
    • 1452
    • 1453
    • 1454
    • 1455
    • 1456
    • 1457
    • 1458
    • 1459
    • 1460
    • 1461
    • 1462
    • 1463
    • 1464
    • 1465
    • 1466
    • 1467
    • 1468
    • 1469
    • 1470
    • 1471
    • 1472
    • 1473
    • 1474
    • 1475
    • 1476
    • 1477
    • 1478
    • 1479
    • 1480
    • 1481
    • 1482
    • 1483
    • 1484
    • 1485
    • 1486
    • 1487
    • 1488
    • 1489
    • 1490
    • 1491
    • 1492
    • 1493
    • 1494
    • 1495
    • 1496
    • 1497
    • 1498
    • 1499
    • 1500
    • 1501
    • 1502
    • 1503
    • 1504
    • 1505
    • 1506
    • 1507
    • 1508
    • 1509
    • 1510
    • 1511
    • 1512
    • 1513
    • 1514
    • 1515
    • 1516
    • 1517
    • 1518
    • 1519
    • 1520
    • 1521
    • 1522
    • 1523
    • 1524
    • 1525
    • 1526
    • 1527
    • 1528
    • 1529
    • 1530
    • 1531
    • 1532
    • 1533
    • 1534
    • 1535
    • 1536
    • 1537
    • 1538
    • 1539
    • 1540
    • 1541
    • 1542
    • 1543
    • 1544
    • 1545
    • 1546
    • 1547
    • 1548
    • 1549
    • 1550
    • 1551
    • 1552
    • 1553
    • 1554
    • 1555
    • 1556
    • 1557
    • 1558
    • 1559
    • 1560
    • 1561
    • 1562
    • 1563
    • 1564
    • 1565
    • 1566
    • 1567
    • 1568
    • 1569
    • 1570
    • 1571
    • 1572
    • 1573
    • 1574
    • 1575
    • 1576
    • 1577
    • 1578
    • 1579
    • 1580
    • 1581
    • 1582
    • 1583
    • 1584
    • 1585
    • 1586
    • 1587
    • 1588
    • 1589
    • 1590
    • 1591
    • 1592
    • 1593
    • 1594
    • 1595
    • 1596
    • 1597
    • 1598
    • 1599
    • 1600
    • 1601
    • 1602
    • 1603
    • 1604
    • 1605
    • 1606
    • 1607
    • 1608
    • 1609
    • 1610
    • 1611
    • 1612
    • 1613
    • 1614
    • 1615
    • 1616
    • 1617
    • 1618
    • 1619
    • 1620
    • 1621
    • 1622
    • 1623
    • 1624
    • 1625
    • 1626
    • 1627
    • 1628
    • 1629
    • 1630
    • 1631
    • 1632
    • 1633
    • 1634
    • 1635
    • 1636
    • 1637
    • 1638
    • 1639
    • 1640
    • 1641
    • 1642
    • 1643
    • 1644
    • 1645
    • 1646
    • 1647
    • 1648
    • 1649
    • 1650
    • 1651
    • 1652
    • 1653
    • 1654
    • 1655
    • 1656
    • 1657
    • 1658
    • 1659
    • 1660
    • 1661
    • 1662
    • 1663
    • 1664
    • 1665
    • 1666
    • 1667
    • 1668
    • 1669
    • 1670
    • 1671
    • 1672
    • 1673
    • 1674
    • 1675
    • 1676
    • 1677
    • 1678
    • 1679
    • 1680
    • 1681
    • 1682
    • 1683
    • 1684
    • 1685
    • 1686
    • 1687
    • 1688
    • 1689
    • 1690
    • 1691
    • 1692
    • 1693
    • 1694
    • 1695
    • 1696
    • 1697
    • 1698
    • 1699
    • 1700
    • 1701
    • 1702
    • 1703
    • 1704
    • 1705
    • 1706
    • 1707
    • 1708
    • 1709
    • 1710
    • 1711
    • 1712
    • 1713
    • 1714
    • 1715
    • 1716
    • 1717
    • 1718
    • 1719
    • 1720
    • 1721
    • 1722
    • 1723
    • 1724
    • 1725
    • 1726
    • 1727
    • 1728
    • 1729
    • 1730
    • 1731
    • 1732
    • 1733
    • 1734
    • 1735
    • 1736
    • 1737
    • 1738
    • 1739
    • 1740
    • 1741
    • 1742
    • 1743
    • 1744
    • 1745
    • 1746
    • 1747
    • 1748
    • 1749
    • 1750
    • 1751
    • 1752
    • 1753
    • 1754
    • 1755
    • 1756
    • 1757
    • 1758
    • 1759
    • 1760
    • 1761
    • 1762
    • 1763
    • 1764
    • 1765
    • 1766
    • 1767
    • 1768
    • 1769
    • 1770
    • 1771
    • 1772
    • 1773
    • 1774
    • 1775
    • 1776
    • 1777
    • 1778
    • 1779
    • 1780
    • 1781
    • 1782
    • 1783
    • 1784
    • 1785
    • 1786
    • 1787
    • 1788
    • 1789
    • 1790
    • 1791
    • 1792
    • 1793
    • 1794
    • 1795
    • 1796
    • 1797
    • 1798
    • 1799
    • 1800
    • 1801
    • 1802
    • 1803
    • 1804
    • 1805
    • 1806
    • 1807
    • 1808
    • 1809
    • 1810
    • 1811
    • 1812
    • 1813
    • 1814
    • 1815
    • 1816
    • 1817
    • 1818
    • 1819
    • 1820
    • 1821
    • 1822
    • 1823
    • 1824
    • 1825
    • 1826
    • 1827
    • 1828
    • 1829
    • 1830
    • 1831
    • 1832
    • 1833
    • 1834
    • 1835
    • 1836
    • 1837
    • 1838
    • 1839
    • 1840
    • 1841
    • 1842
    • 1843
    • 1844
    • 1845
    • 1846

    2.3查看UUID插件

    [root@kylin ]# cd /opt/pgsql-11.16/
    [root@kylin pgsql-11.16]# ls lib |grep uuid*
    uuid-ossp.so
    [root@kylin pgsql-11.16]# ls  /opt/pgsql-11.16/share/extension/ |grep uuid*
    uuid-ossp--1.0--1.1.sql
    uuid-ossp--1.1.sql
    uuid-ossp.control
    uuid-ossp--unpackaged--1.0.sql
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    3.创建相应的用户

     [root @kylin ]$ groupadd postgres
    
     [root @kylin ]$ useradd -g postgres postgres
    
    创建数据及日志目录,并做相应授权
    
    [root @kylin ]$ mkdir -p /opt/pgsql-11.6/{data,log}
    
    [root @kylin ]$ chown -R postgres:postgres /opt/pgsql-11.16
    
     
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    4.初始化数据库

    4.1 初始化数据库
    [root @kylin ]$ su - postgres
    
    [postgres@kylin bin]$ cd /opt/pgsql-11.16/bin
    
    [postgres@kylin bin]$ ./initdb -D /opt/pgsql-11.16/data/
    
    [postgres@kylin bin]$ ./pg_ctl -D /opt/pgsql-11.16/data/ -l /opt/pgsql-11.16/log/postgres.log  start
    waiting for server to start.... done
    server started
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    4.2 修改用户postgres环境变量
    [postgres@kylin bin]$ cd ~
    [postgres@kylin ~]$ ls
    [postgres@kylin ~]$ pwd
    /home/postgres
    [postgres@kylin ~]$ vim .bash_profile 
    
    # Source /root/.bashrc if user has one
    [ -f ~/.bashrc ] && . ~/.bashrc
    
    PATH=$PATH:$HOME/.local/bin:$HOME/bin:/opt/pgsql-11.16/bin
    
    export PATH
    ~
    
    ".bash_profile" 6L, 149C written       
    [postgres@kylin ~]$ source ~/.bash_profile 
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    [postgres@kylin ~]$ cd  /opt/pgsql-11.16/
    [postgres@kylin postgresql-11.16]$ ls
    bin  data  include  lib  log  share
    [postgres@kylin postgresql-11.16]$ cd bin
    [postgres@kylin bin]$ ./pg_ctl -D /opt/pgsql-11.16/data/ -l /opt/pgsql-11.16/log/postgres.log  restart
    waiting for server to shut down.... done
    server stopped
    waiting for server to start.... done
    server started
    
    [postgres@kylin bin]$ ./psql -p 5666
    psql (11.16)
    Type "help" for help.
    
    postgres=# ALTER USER postgres WITH PASSWORD 'postgres';
    ALTER ROLE
    postgres=# select * from pg_shadow ;
     usename  | usesysid | usecreatedb | usesuper | userepl | usebypass
    rls |               passwd                | valuntil | useconfig 
    ----------+----------+-------------+----------+---------+----------
    ----+-------------------------------------+----------+-----------
     postgres |       10 | t           | t        | t       | t        
        | md53175bce1d3201d16594cebf9d7eb3f9d |          | 
    (1 row)
    
    postgres=# \q          
    
    • 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
    4.2 修改监听地址及端口
    [postgres@kylin bin]$ vim /opt/pgsql-11.16/data/postgresql.conf
    # with the "SET" SQL command.
    #
    # Memory units:  kB = kilobytes        Time units:  ms  = milliseconds
    #                MB = megabytes                     s   = seconds
    #                GB = gigabytes                     min = minutes
    #                TB = terabytes                     h   = hours
    #                                                   d   = days
    
    
    #------------------------------------------------------------------------------
    # FILE LOCATIONS
    #------------------------------------------------------------------------------
    
    # The default values of these variables are driven from the -D command-line
    # option or PGDATA environment variable, represented here as ConfigDir.
    
    #data_directory = 'ConfigDir'           # use data in another directory
                                            # (change requires restart)
    #hba_file = 'ConfigDir/pg_hba.conf'     # host-based authentication file
                                            # (change requires restart)
    #ident_file = 'ConfigDir/pg_ident.conf' # ident configuration file
                                            # (change requires restart)
    
    # If external_pid_file is not explicitly set, no extra PID file is written.
    #external_pid_file = ''                 # write an extra PID file
                                            # (change requires restart)
    
    
    #------------------------------------------------------------------------------
    # CONNECTIONS AND AUTHENTICATION
    #------------------------------------------------------------------------------
    
    # - Connection Settings -
    
    #listen_addresses = 'localhost'         # what IP address(es) to listen on;
    listen_addresses = '*'
                                            # comma-separated list of addresses;
                                            # defaults to 'localhost'; use '*' for all
                                            # (change requires restart)
    #port = 5432                            # (change requires restart)
    port=5666
    
    wal_level = replica
    archive_mode = on
    archive_command = 'cp %p /opt/postgresql-11.6/data/pg_archive/%f'
    ##%p = path of file to archive
    ##%f = file name only
    max_wal_senders = 6
    wal_keep_segments = 10240
    wal_sender_timeout = 60s
    
    • 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
    4.3 连接远程
    [postgres@kylin bin]$ vim   ../data/pg_hba.conf 
    # Database and user names containing spaces, commas, quotes and other
    # special characters must be quoted.  Quoting one of the keywords
    # "all", "sameuser", "samerole" or "replication" makes the name lose
    # its special character, and just match a database or username with
    # that name.
    #
    # This file is read on server startup and when the server receives a
    # SIGHUP signal.  If you edit the file on a running system, you have to
    # SIGHUP the server for the changes to take effect, run "pg_ctl reload",
    # or execute "SELECT pg_reload_conf()".
    #
    # Put your actual configuration here
    # ----------------------------------
    #
    # If you want to allow non-local connections, you need to add more
    # "host" records.  In that case you will also need to make PostgreSQL
    # listen on a non-local interface via the listen_addresses
    # configuration parameter, or via the -i or -h command line switches.
    
    # CAUTION: Configuring the system for local "trust" authentication
    # allows any local user to connect as any PostgreSQL user, including
    # the database superuser.  If you do not trust all your local users,
    # use another authentication method.
    
    
    # TYPE  DATABASE        USER            ADDRESS                 METHOD
    
    # "local" is for Unix domain socket connections only
    local   all             all                                     trust
    # IPv4 local connections:
    host    all             all             127.0.0.1/32            trust
    host    all             all             0.0.0.0/0            md5
    # IPv6 local connections:
    host    all             all             ::1/128                 trust
    # Allow replication connections from localhost, by a user with the
    # replication privilege.
    local   replication     all                                     trust
    host    replication     all             127.0.0.1/32            trust
    host    replication     all             ::1/128                 trust
    host    replication     repl             192.168.1.6/24         md5
    host    all             repl             192.168.1.6/24         trust
    
    • 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

    重新加载文件

    [postgres@kylin bin]$ ./pg_ctl -D /opt/pgsql-11.16/data reload
    [postgres@kylin bin]$ ./pg_ctl -D /opt/pgsql-11.16/data/ -l /opt/pgsql-11.16/log/postgres.log  restart
    waiting for server to shut down.... done
    server stopped
    waiting for ser
    
    • 1
    • 2
    • 3
    • 4
    • 5

    5、登录数据库创建扩展UUID

    [postgres@kylin postgresql-11.16]$ psql -p 5666 
    psql (11.16)
    Type "help" for help.
    
    postgres=# CREATE EXTENSION "uuid-ossp";
    CREATE EXTENSION
    postgres=# 
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    参看: https://www.cnblogs.com/likecoke/p/15715095.html
    http://postgres.cn/docs/9.6/contrib.html
    http://postgres.cn/docs/9.6/uuid-ossp.html

  • 相关阅读:
    高考计算机专业 热门专业方向
    第十章 Linux系统安全及应用
    代码随想录第45天|70. 爬楼梯 (进阶)322. 零钱兑换
    牛客网刷题——JAVA
    【UNI】底部梯形按钮组件
    Java并发编程异步操作Future和FutureTask
    ChatGPT绘图指南:DALL.E3玩法大全(一)
    前端开发编辑器,一轻一重两相宜
    三个经典示例解释什么是「零知识证明」
    华为---PPP协议简介及示例配置
  • 原文地址:https://blog.csdn.net/weixin_38504735/article/details/126176464