summaryrefslogtreecommitdiff
path: root/config_host
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@collabora.com>2014-02-20 23:04:00 +0100
committerMatúš Kukan <matus.kukan@collabora.com>2014-02-21 07:52:24 +0100
commitdbfc495a9ace0865d764dad7404633a12cda2873 (patch)
treeeb695c097fcc97335ead668b927ad756e28b0553 /config_host
parentd5951c04195e050d65d44c9578bd339dd41eee2f (diff)
Add config option used when we try to link one huge object file.
In theory, it should not be used, we use it now to mark duplicated symbols from sdi slots as weak. See idl/source/objects/types.cxx. Change-Id: I3c6fccfb96884df6b9e6eb35b8615ba4d66ca208
Diffstat (limited to 'config_host')
-rw-r--r--config_host/config_options.h.in15
1 files changed, 15 insertions, 0 deletions
diff --git a/config_host/config_options.h.in b/config_host/config_options.h.in
new file mode 100644
index 000000000000..6c882d7fedcf
--- /dev/null
+++ b/config_host/config_options.h.in
@@ -0,0 +1,15 @@
+/*
+ * General configuration settings for various options.
+ */
+
+#ifndef CONFIG_OPTIONS_H
+#define CONFIG_OPTIONS_H
+
+/*
+ * Whether we want to link as many object files as possible into one big object.
+ * True in case of --enable-lto or --enable-mergelibs.
+ */
+
+#define STATIC_LINKING 0
+
+#endif