Skip to content
Snippets Groups Projects
Commit c44b9485 authored by Danny Auble's avatar Danny Auble
Browse files

added task affinity to the list of good now ;)

parent cf0aa90c
No related branches found
No related tags found
No related merge requests found
...@@ -15,5 +15,6 @@ accounting_storage_slurmdbd_la_LDFLAGS = $(SO_LDFLAGS) $(PLUGIN_FLAGS) ...@@ -15,5 +15,6 @@ accounting_storage_slurmdbd_la_LDFLAGS = $(SO_LDFLAGS) $(PLUGIN_FLAGS)
# Add libcommon to provide some symbols that are not # Add libcommon to provide some symbols that are not
# available in slurmctld (create_jobacct_job_rec) # available in slurmctld (create_jobacct_job_rec)
accounting_storage_slurmdbd_la_LIBADD = $(top_builddir)/src/common/.libs/libcommon.a accounting_storage_slurmdbd_la_LIBADD = \
$(top_builddir)/src/common/.libs/libcommon.a
...@@ -279,7 +279,9 @@ accounting_storage_slurmdbd_la_LDFLAGS = $(SO_LDFLAGS) $(PLUGIN_FLAGS) ...@@ -279,7 +279,9 @@ accounting_storage_slurmdbd_la_LDFLAGS = $(SO_LDFLAGS) $(PLUGIN_FLAGS)
# Add libcommon to provide some symbols that are not # Add libcommon to provide some symbols that are not
# available in slurmctld (create_jobacct_job_rec) # available in slurmctld (create_jobacct_job_rec)
accounting_storage_slurmdbd_la_LIBADD = $(top_builddir)/src/common/.libs/libcommon.a accounting_storage_slurmdbd_la_LIBADD = \
$(top_builddir)/src/common/.libs/libcommon.a
all: all-am all: all-am
.SUFFIXES: .SUFFIXES:
......
...@@ -16,6 +16,13 @@ task_affinity_la_SOURCES = \ ...@@ -16,6 +16,13 @@ task_affinity_la_SOURCES = \
schedutils.c \ schedutils.c \
task_affinity.c task_affinity.c
task_affinity_la_LDFLAGS = $(SO_LDFLAGS) $(NUMA_LIBS) $(PLPA_LIBS) $(PLUGIN_FLAGS) task_affinity_la_LDFLAGS = $(SO_LDFLAGS) $(NUMA_LIBS) $(PLPA_LIBS) $(PLUGIN_FLAGS)
# Add libcommon to provide some symbols that are not
# available in slurmctld (slurm_sprint_cpu_bind_type)
task_affinity_la_LIBADD = \
$(top_builddir)/src/common/.libs/libcommon.a
else else
pkglib_LTLIBRARIES = pkglib_LTLIBRARIES =
EXTRA_task_affinity_la_SOURCES = \ EXTRA_task_affinity_la_SOURCES = \
......
...@@ -74,7 +74,7 @@ am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; ...@@ -74,7 +74,7 @@ am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
am__installdirs = "$(DESTDIR)$(pkglibdir)" am__installdirs = "$(DESTDIR)$(pkglibdir)"
pkglibLTLIBRARIES_INSTALL = $(INSTALL) pkglibLTLIBRARIES_INSTALL = $(INSTALL)
LTLIBRARIES = $(pkglib_LTLIBRARIES) LTLIBRARIES = $(pkglib_LTLIBRARIES)
task_affinity_la_LIBADD = @HAVE_SCHED_SETAFFINITY_TRUE@task_affinity_la_DEPENDENCIES = $(top_builddir)/src/common/.libs/libcommon.a
am__task_affinity_la_SOURCES_DIST = affinity.c affinity.h cpuset.c \ am__task_affinity_la_SOURCES_DIST = affinity.c affinity.h cpuset.c \
dist_tasks.c dist_tasks.h numa.c schedutils.c task_affinity.c dist_tasks.c dist_tasks.h numa.c schedutils.c task_affinity.c
@HAVE_SCHED_SETAFFINITY_TRUE@am_task_affinity_la_OBJECTS = \ @HAVE_SCHED_SETAFFINITY_TRUE@am_task_affinity_la_OBJECTS = \
...@@ -290,6 +290,11 @@ INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src/common ...@@ -290,6 +290,11 @@ INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src/common
@HAVE_SCHED_SETAFFINITY_TRUE@ task_affinity.c @HAVE_SCHED_SETAFFINITY_TRUE@ task_affinity.c
@HAVE_SCHED_SETAFFINITY_TRUE@task_affinity_la_LDFLAGS = $(SO_LDFLAGS) $(NUMA_LIBS) $(PLPA_LIBS) $(PLUGIN_FLAGS) @HAVE_SCHED_SETAFFINITY_TRUE@task_affinity_la_LDFLAGS = $(SO_LDFLAGS) $(NUMA_LIBS) $(PLPA_LIBS) $(PLUGIN_FLAGS)
# Add libcommon to provide some symbols that are not
# available in slurmctld (slurm_sprint_cpu_bind_type)
@HAVE_SCHED_SETAFFINITY_TRUE@task_affinity_la_LIBADD = \
@HAVE_SCHED_SETAFFINITY_TRUE@ $(top_builddir)/src/common/.libs/libcommon.a
@HAVE_SCHED_SETAFFINITY_FALSE@EXTRA_task_affinity_la_SOURCES = \ @HAVE_SCHED_SETAFFINITY_FALSE@EXTRA_task_affinity_la_SOURCES = \
@HAVE_SCHED_SETAFFINITY_FALSE@ affinity.c affinity.h \ @HAVE_SCHED_SETAFFINITY_FALSE@ affinity.c affinity.h \
@HAVE_SCHED_SETAFFINITY_FALSE@ cpuset.c \ @HAVE_SCHED_SETAFFINITY_FALSE@ cpuset.c \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment