Skip to content
Snippets Groups Projects
Commit 96451c9c authored by Moe Jette's avatar Moe Jette
Browse files

Fix a couple of problems with exported symbols that prevented tests

20.2, 20.4 and 7.3 from running with select/bluegene
parent ca5b59e2
No related branches found
No related tags found
No related merge requests found
......@@ -162,6 +162,7 @@ $(VERSION_SCRIPT) :
(echo "{ global:"; \
echo " islurm_*;"; \
echo " slurm_*;"; \
echo " slurmdb_*;"; \
echo " local: *;"; \
echo "};") > $(VERSION_SCRIPT)
......
......@@ -874,6 +874,7 @@ $(VERSION_SCRIPT) :
(echo "{ global:"; \
echo " islurm_*;"; \
echo " slurm_*;"; \
echo " slurmdb_*;"; \
echo " local: *;"; \
echo "};") > $(VERSION_SCRIPT)
......
......@@ -58,6 +58,8 @@
#include "src/slurmctld/slurmctld.h"
#include "src/common/node_select.h"
strong_alias(destroy_select_ba_request, slurm_destroy_select_ba_request);
static int select_context_cnt = -1;
static int select_context_default = -1;
/* If there is a new select plugin, list it here */
......
......@@ -342,6 +342,9 @@
#define jobacct_common_alloc_jobacct slurm_jobacct_common_alloc_jobacct
#define jobacct_common_free_jobacct slurm_jobacct_common_free_jobacct
/* node_select.[ch] functions */
#define destroy_select_ba_request slurm_destroy_select_ba_request
#endif /* USE_ALIAS */
/* Include the function definitions after redefining their names. */
......@@ -352,11 +355,13 @@
#include "src/common/list.h"
#include "src/common/log.h"
#include "src/common/macros.h"
#include "src/common/node_select.h"
#include "src/common/pack.h"
#include "src/common/env.h"
#include "src/common/slurm_auth.h"
#include "src/common/strlcpy.h"
#include "src/common/switch.h"
#include "src/common/working_cluster.h"
#include "src/common/xassert.h"
#include "src/common/xmalloc.h"
#include "src/common/xsignal.h"
......
......@@ -36,6 +36,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
\*****************************************************************************/
#include "src/common/slurm_xlator.h" /* Must be first */
#include "bg_core.h"
#include "bg_read_config.h"
#include "src/common/node_select.h"
......
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