mirror of https://github.com/citusdata/citus.git
Clean up & address rest of comments
parent
613e4d4274
commit
ea449bc9c8
3
Makefile
3
Makefile
|
@ -10,9 +10,6 @@ ifeq (,$(wildcard Makefile.global))
|
||||||
endif
|
endif
|
||||||
|
|
||||||
include Makefile.global
|
include Makefile.global
|
||||||
# directories with source files
|
|
||||||
SUBDIRS += $(citus_top_builddir)/src/backend/columnar/safeclib
|
|
||||||
ENSURE_SUBDIRS_EXIST := $(shell mkdir -p $(SUBDIRS))
|
|
||||||
all: extension
|
all: extension
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -3,12 +3,12 @@ citus_top_builddir = ../../..
|
||||||
safestringlib_srcdir = $(citus_abs_top_srcdir)/vendor/safestringlib
|
safestringlib_srcdir = $(citus_abs_top_srcdir)/vendor/safestringlib
|
||||||
SUBDIRS = . safeclib
|
SUBDIRS = . safeclib
|
||||||
SUBDIRS +=
|
SUBDIRS +=
|
||||||
|
ENSURE_SUBDIRS_EXIST := $(shell mkdir -p $(SUBDIRS))
|
||||||
OBJS += \
|
OBJS += \
|
||||||
$(patsubst $(citus_abs_srcdir)/%.c,%.o,$(foreach dir,$(SUBDIRS), $(sort $(wildcard $(citus_abs_srcdir)/$(dir)/*.c))))
|
$(patsubst $(citus_abs_srcdir)/%.c,%.o,$(foreach dir,$(SUBDIRS), $(sort $(wildcard $(citus_abs_srcdir)/$(dir)/*.c))))
|
||||||
|
|
||||||
MODULE_big = columnar
|
MODULE_big = columnar
|
||||||
|
|
||||||
|
|
||||||
PG_CPPFLAGS += -I$(libpq_srcdir) -I$(safestringlib_srcdir)/include
|
PG_CPPFLAGS += -I$(libpq_srcdir) -I$(safestringlib_srcdir)/include
|
||||||
|
|
||||||
include $(citus_top_builddir)/Makefile.global
|
include $(citus_top_builddir)/Makefile.global
|
||||||
|
|
|
@ -36,12 +36,12 @@ all:
|
||||||
|
|
||||||
NO_PGXS = 1
|
NO_PGXS = 1
|
||||||
|
|
||||||
SHLIB_LINK += $(libpq)
|
SHLIB_LINK = $(libpq)
|
||||||
SHLIB_LINK_INTERNAL += -L../columnar -l:columnar.so
|
SHLIB_LINK_INTERNAL += -L../columnar -l:columnar.so
|
||||||
override enable_rpath = yes
|
override enable_rpath = yes
|
||||||
include $(citus_top_builddir)/Makefile.global
|
include $(citus_top_builddir)/Makefile.global
|
||||||
|
|
||||||
rpathdir = $(shell $(PG_CONFIG) --libdir):$(shell $(PG_CONFIG) --pkglibdir)
|
rpathdir := $(shell $(PG_CONFIG) --libdir):$(shell $(PG_CONFIG) --pkglibdir)
|
||||||
|
|
||||||
# make sure citus_version.o is recompiled whenever any change is made to the binary or any
|
# make sure citus_version.o is recompiled whenever any change is made to the binary or any
|
||||||
# other artifact being installed to reflect the correct gitref for every build
|
# other artifact being installed to reflect the correct gitref for every build
|
||||||
|
|
|
@ -192,8 +192,6 @@ check-operations: all
|
||||||
-- $(MULTI_REGRESS_OPTS) --schedule=$(citus_abs_srcdir)/operations_schedule $(EXTRA_TESTS)
|
-- $(MULTI_REGRESS_OPTS) --schedule=$(citus_abs_srcdir)/operations_schedule $(EXTRA_TESTS)
|
||||||
|
|
||||||
check-columnar:
|
check-columnar:
|
||||||
ldd /usr/lib/postgresql/13/lib/citus.so
|
|
||||||
readelf -d /usr/lib/postgresql/13/lib/citus.so
|
|
||||||
$(pg_regress_multi_check) --load-extension=citus \
|
$(pg_regress_multi_check) --load-extension=citus \
|
||||||
-- $(MULTI_REGRESS_OPTS) --schedule=$(citus_abs_srcdir)/columnar_schedule $(EXTRA_TESTS)
|
-- $(MULTI_REGRESS_OPTS) --schedule=$(citus_abs_srcdir)/columnar_schedule $(EXTRA_TESTS)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue