Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
2d59594a
Commit
2d59594a
authored
Feb 07, 2015
by
Florian Ebeling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: perf tools build cannot be switched off
parent
e05c8056
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
Makefile.am
Makefile.am
+2
-0
configure.ac
configure.ac
+8
-0
No files found.
Makefile.am
View file @
2d59594a
...
...
@@ -254,6 +254,7 @@ src_libzmq_la_CPPFLAGS += ${pgm_CFLAGS}
src_libzmq_la_LIBADD
+=
${
pgm_LIBS
}
endif
if
ENABLE_PERF
noinst_PROGRAMS
=
\
perf/local_lat
\
perf/remote_lat
\
...
...
@@ -279,6 +280,7 @@ perf_inproc_lat_SOURCES = perf/inproc_lat.cpp
perf_inproc_thr_LDADD
=
src/libzmq.la
perf_inproc_thr_SOURCES
=
perf/inproc_thr.cpp
endif
bin_PROGRAMS
=
tools/curve_keygen
...
...
configure.ac
View file @
2d59594a
...
...
@@ -346,6 +346,14 @@ if test "x$zmq_enable_eventfd" = "xyes"; then
[AC_DEFINE(ZMQ_HAVE_EVENTFD, 1, [Have eventfd extension.])])
fi
# Conditionally build performance measurement tools
AC_ARG_ENABLE([perf],
[AS_HELP_STRING([--enable-perf], [Build performance measurement tools [default=yes].])],
[zmq_enable_perf=$enableval],
[zmq_enable_perf=yes])
AM_CONDITIONAL(ENABLE_PERF, test "x$zmq_enable_perf" = "xyes")
# Use c++ in subsequent tests
AC_LANG_PUSH(C++)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment