-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
108 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
build* | ||
build/ | ||
|
||
.vscode/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
|
||
rm -rf sysroot && mkdir sysroot | ||
cmake -DCMAKE_INSTALL_PREFIX="sysroot/" ../ | ||
make install | ||
this="$(date +%Y-%m-%d_%H_%M_%S)" | ||
trialdir="srsran_trial_${this}" | ||
tar="srsran.build-${this}.tgz" | ||
mkdir ${trialdir} | ||
tar czf "${trialdir}/$tar" -C "sysroot" . | ||
md5sum "${trialdir}/$tar" >>${trialdir}/checksums.md5 | ||
|
||
echo "Built ${trialdir}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/** | ||
* Copyright 2013-2023 Software Radio Systems Limited | ||
* | ||
* This file is part of srsRAN. | ||
* | ||
* srsRAN is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of | ||
* the License, or (at your option) any later version. | ||
* | ||
* srsRAN is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* A copy of the GNU Affero General Public License can be found in | ||
* the LICENSE file in the top-level directory of this distribution | ||
* and at http://www.gnu.org/licenses/. | ||
* | ||
*/ | ||
|
||
#ifndef SRSRAN_BUILD_INFO_H_IN | ||
#define SRSRAN_BUILD_INFO_H_IN | ||
|
||
#include "srsran/config.h" | ||
|
||
# ifdef __cplusplus | ||
extern "C" { | ||
# endif | ||
|
||
#ifdef BUILD_TYPE_RELEASE | ||
static char build_mode[] = "Release"; | ||
#else | ||
#ifdef BUILD_TYPE_DEBUG | ||
static char build_mode[] = "Debug"; | ||
#else | ||
#ifdef BUILD_TYPE_RELWITHDEBINFO | ||
static char build_mode[] = "RelWithDebInfo"; | ||
#else | ||
static char build_mode[] = "unknown"; | ||
#endif | ||
#endif | ||
#endif | ||
|
||
// the configured build options for srsRAN | ||
static char build_info[] = "commit @GIT_COMMIT_HASH@ on branch @GIT_BRANCH@"; | ||
|
||
SRSRAN_API char* srsran_get_build_info() { | ||
return build_info; | ||
}; | ||
|
||
SRSRAN_API char* srsran_get_build_mode() { | ||
return build_mode; | ||
} | ||
|
||
# ifdef __cplusplus | ||
} | ||
# endif | ||
|
||
#endif // BUILD_INFO_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters