File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 38
38
DUCKDB_MAKE_TARGET = release
39
39
endif
40
40
41
- PG_DUCKDB_LINK_FLAGS = -Wl,-rpath,$(PG_LIB ) / -Lthird_party/duckdb/build/$(DUCKDB_BUILD_TYPE ) /src -L$(PG_LIB ) -lstdc++ -llz4
42
41
DUCKDB_BUILD_DIR = third_party/duckdb/build/$(DUCKDB_BUILD_TYPE )
43
42
44
43
ifeq ($(DUCKDB_BUILD ) , ReleaseStatic)
45
- PG_DUCKDB_LINK_FLAGS + = third_party/duckdb/build/release/libduckdb_bundle.a
44
+ PG_DUCKDB_LINK_FLAGS = third_party/duckdb/build/release/libduckdb_bundle.a
46
45
FULL_DUCKDB_LIB = $(DUCKDB_BUILD_DIR)/$(DUCKDB_LIB)
47
46
else
48
- PG_DUCKDB_LINK_FLAGS + = -lduckdb
47
+ PG_DUCKDB_LINK_FLAGS = -lduckdb
49
48
FULL_DUCKDB_LIB = $(DUCKDB_BUILD_DIR)/src/$(DUCKDB_LIB)/libduckdb$(DLSUFFIX)
50
49
endif
51
50
51
+
52
+ PG_DUCKDB_LINK_FLAGS += -Wl,-rpath,$(PG_LIB ) / -L$(DUCKDB_BUILD_DIR ) /src -L$(PG_LIB ) -lstdc++ -llz4
53
+
52
54
ERROR_ON_WARNING ?=
53
55
ifeq ($(ERROR_ON_WARNING ) , 1)
54
56
ERROR_ON_WARNING = -Werror
You can’t perform that action at this time.
0 commit comments