summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Freund2018-03-31 00:24:07 +0000
committerAndres Freund2018-03-31 00:33:04 +0000
commita4ebbd27527087fcf3ade36f4e0072033e5b2f78 (patch)
tree63cd2353bd4d74820189d40eba82e018e6bb8265
parent1b26bd4089a388929c644ffea2832f3841c25969 (diff)
Remove PARTIAL_LINKING build mode.
In 9956ddc19164b02dc1925fb389a1af77472eba5e, ten years ago, the current objfile.txt based linking model was introduced. It's time to retire the old SUBSYS.o based model. This primarily is pertinent because the bitcode files for LLVM based inlining are not produced when using PARTIAL_LINKING. It does not seem worth to fix PARTIAL_LINKING to support that. Author: Andres Freund Discussion: https://postgr.es/m/[email protected]
-rw-r--r--src/backend/common.mk6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/backend/common.mk b/src/backend/common.mk
index 08e7eff6c87..663e9f886ce 100644
--- a/src/backend/common.mk
+++ b/src/backend/common.mk
@@ -8,13 +8,7 @@
# this directory and SUBDIRS to subdirectories containing more things
# to build.
-ifdef PARTIAL_LINKING
-# old style: linking using SUBSYS.o
-subsysfilename = SUBSYS.o
-else
-# new style: linking all object files at once
subsysfilename = objfiles.txt
-endif
SUBDIROBJS = $(SUBDIRS:%=%/$(subsysfilename))