forked from sstsimulator/sst-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootshared.h
More file actions
23 lines (20 loc) · 779 Bytes
/
Copy pathbootshared.h
File metadata and controls
23 lines (20 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2009-2025 NTESS. Under the terms
// of Contract DE-NA0003525 with NTESS, the U.S.
// Government retains certain rights in this software.
//
// Copyright (c) 2009-2025, NTESS
// All rights reserved.
//
// This file is part of the SST software package. For license
// information, see the LICENSE file in the top level directory of the
// distribution.
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <unistd.h>
extern char** environ;
void update_env_var(const char* name, const int verbose, char* argv[], const int argc);
// void boot_sst_configure_env(const SST::Config& cfg);
void boot_sst_configure_env(const std::string& path);
void boot_sst_executable(const char* binary, const int verbose, char* argv[], const int argc);