summaryrefslogtreecommitdiffstats
path: root/vespaclient
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-01-28 06:10:24 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2022-01-28 06:21:27 +0000
commit73512b819fd8b9703157ed9d086e5d2b677642ea (patch)
tree5bdefc8784705fb039a7d515db2eed774414ff07 /vespaclient
parentfe2ea2e136cdba8f1351a4935b7c973e6f7c81a6 (diff)
Avoid using vespamalloc for small utility programs as it has a too high initial cost and memory footprint.
Diffstat (limited to 'vespaclient')
-rw-r--r--vespaclient/src/vespa/vespaclient/vesparoute/.gitignore1
-rw-r--r--vespaclient/src/vespa/vespaclient/vesparoute/CMakeLists.txt2
2 files changed, 1 insertions, 2 deletions
diff --git a/vespaclient/src/vespa/vespaclient/vesparoute/.gitignore b/vespaclient/src/vespa/vespaclient/vesparoute/.gitignore
index 573df74b762..7c1657e5caa 100644
--- a/vespaclient/src/vespa/vespaclient/vesparoute/.gitignore
+++ b/vespaclient/src/vespa/vespaclient/vesparoute/.gitignore
@@ -1,4 +1,3 @@
.depend
Makefile
vespa-route
-vespa-route-bin
diff --git a/vespaclient/src/vespa/vespaclient/vesparoute/CMakeLists.txt b/vespaclient/src/vespa/vespaclient/vesparoute/CMakeLists.txt
index 3b342387d01..ddf500560c7 100644
--- a/vespaclient/src/vespa/vespaclient/vesparoute/CMakeLists.txt
+++ b/vespaclient/src/vespa/vespaclient/vesparoute/CMakeLists.txt
@@ -5,7 +5,7 @@ vespa_add_executable(vespaclient_vesparoute_app
main.cpp
mynetwork.cpp
params.cpp
- OUTPUT_NAME vespa-route-bin
+ OUTPUT_NAME vespa-route
INSTALL bin
DEPENDS
)