Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Elsa Gonsiorowski
codes
Commits
a2220e8f
Commit
a2220e8f
authored
Nov 10, 2016
by
Matthieu Dorier
Browse files
added --enable-g
parent
625bea0a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Makefile.am
View file @
a2220e8f
...
@@ -39,6 +39,12 @@ include $(top_srcdir)/src/Makefile.subdir
...
@@ -39,6 +39,12 @@ include $(top_srcdir)/src/Makefile.subdir
include
$(top_srcdir)/tests/Makefile.subdir
include
$(top_srcdir)/tests/Makefile.subdir
include
$(top_srcdir)/doc/Makefile.subdir
include
$(top_srcdir)/doc/Makefile.subdir
if
USE_DEBUG
AM_CPPFLAGS
+=
-g
AM_CFLAGS
+=
-g
AM_CXXFLAGS
+=
-g
endif
if
USE_DARSHAN
if
USE_DARSHAN
AM_CPPFLAGS
+=
${DARSHAN_CFLAGS}
-DUSE_DARSHAN
=
1
AM_CPPFLAGS
+=
${DARSHAN_CFLAGS}
-DUSE_DARSHAN
=
1
src_libcodes_la_SOURCES
+=
src/workload/methods/codes-darshan-io-wrkld.c
src_libcodes_la_SOURCES
+=
src/workload/methods/codes-darshan-io-wrkld.c
...
...
configure.ac
View file @
a2220e8f
...
@@ -84,6 +84,12 @@ AC_TRY_COMPILE([#include <mpi.h>], [int ret = MPI_Init(0, (void*)0)],
...
@@ -84,6 +84,12 @@ AC_TRY_COMPILE([#include <mpi.h>], [int ret = MPI_Init(0, (void*)0)],
PKG_CHECK_MODULES_STATIC([ROSS], [ross], [],
PKG_CHECK_MODULES_STATIC([ROSS], [ross], [],
[AC_MSG_ERROR([Could not find working ross installation via pkg-config])])
[AC_MSG_ERROR([Could not find working ross installation via pkg-config])])
# check for enable-g
AC_ARG_ENABLE([g],[AS_HELP_STRING([--enable-g],
[Build with GDB symbols])],
[use_debug=yes],[use_debug=no])
AM_CONDITIONAL(USE_DEBUG, ["x${use_debug}" = xyes])
# check for Darshan
# check for Darshan
AC_ARG_WITH([darshan],[AS_HELP_STRING([--with-darshan],
AC_ARG_WITH([darshan],[AS_HELP_STRING([--with-darshan],
[Build with the darshan workload support])],
[Build with the darshan workload support])],
...
...
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