ossc-db / pg_bulkload

High speed data loading utility for PostgreSQL
http://ossc-db.github.io/pg_bulkload/index.html
Other
443 stars 75 forks source link

Put the source code into the contrib directory and use "make". Compil… #158

Closed Leo-XM-Zeng closed 1 month ago

Leo-XM-Zeng commented 9 months ago

…e failed #157

shinyaaa commented 1 month ago

If you specify USE_PGXS=1 and PG_CONFIG=/path/to/pg_config, make will be success.

make USE_PGXS=1 PG_CONFIG=/path/to/pg_config
make USE_PGXS=1 PG_CONFIG=/path/to/pg_config install
make USE_PGXS=1 PG_CONFIG=/path/to/pg_config installcheck
Leo-XM-Zeng commented 1 month ago

If you specify USE_PGXS=1 and PG_CONFIG=/path/to/pg_config, make will be success.

make USE_PGXS=1 PG_CONFIG=/path/to/pg_config
make USE_PGXS=1 PG_CONFIG=/path/to/pg_config install
make USE_PGXS=1 PG_CONFIG=/path/to/pg_config installcheck

thanks