aboutsummaryrefslogtreecommitdiff
path: root/dist/config
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-10-14 16:43:14 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-10-14 16:43:14 +0200
commit7d741ce67266e50648e2060ff40f5c098c6bdba3 (patch)
treeb8bd65b9f94fb94fb29b032ad8eb518699da9b2e /dist/config
parent36ba4a4f1af667682416f48c1698b1167e66e2b1 (diff)
Add support for post-link step (e.g., VxWorks munch)
Diffstat (limited to 'dist/config')
-rw-r--r--dist/config/config.make6
-rw-r--r--dist/config/config.nmake6
2 files changed, 12 insertions, 0 deletions
diff --git a/dist/config/config.make b/dist/config/config.make
index 426384e..69d365e 100644
--- a/dist/config/config.make
+++ b/dist/config/config.make
@@ -11,6 +11,12 @@ LD := $(CXX)
LDFLAGS := $(CXXFLAGS)
LIBS :=
+# Optional post-link command. The first argument to this command is
+# the executable name and the rest of the arguments are the object
+# files and libraries that were used to link this executable.
+#
+POSTLD :=
+
# Set RANLIB to empty if your system does not need ranlib.
#
AR := ar
diff --git a/dist/config/config.nmake b/dist/config/config.nmake
index 24a267f..32bf258 100644
--- a/dist/config/config.nmake
+++ b/dist/config/config.nmake
@@ -11,6 +11,12 @@ LD = link.exe
LDFLAGS = /nologo
LIBS =
+# Optional post-link command. The first argument to this command is
+# the executable name and the rest of the arguments are the object
+# files and libraries that were used to link this executable.
+#
+POSTLD =
+
# Set RANLIB to empty if your system does not need ranlib.
#
AR = lib.exe