Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
spbro
OpenXG-RAN
Commits
489824fd
Commit
489824fd
authored
May 23, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enforce gcc/g++-11 when building 7.2 FHI through xran
parent
98e9129d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
doc/ORAN_FHI7.2_Tutorial.md
doc/ORAN_FHI7.2_Tutorial.md
+2
-0
radio/fhi_72/CMakeLists.txt
radio/fhi_72/CMakeLists.txt
+7
-0
No files found.
doc/ORAN_FHI7.2_Tutorial.md
View file @
489824fd
...
...
@@ -391,6 +391,8 @@ Compile the fronthaul interface library by calling `make` and the option
environment variables
`RTE_SDK`
for the path to the source tree of DPDK, and
`XRAN_DIR`
to set the path to the fronthaul library.
**Note**
: you need at least gcc-11 and g++-11.
```
bash
cd
~/phy/fhi_lib/lib
make clean
...
...
radio/fhi_72/CMakeLists.txt
View file @
489824fd
# we need at least gcc-11 to build xran, so let's enforce it here
# (because xran might not check it, and we have control here)
if
(
CMAKE_CXX_COMPILER_VERSION VERSION_LESS 11.0
OR CMAKE_C_COMPILER_VERSION VERSION_LESS 11.0
)
message
(
FATAL_ERROR
"you need to have at least gcc/g++-11 to use 7.2 FHI through xran"
)
endif
()
# use env var PKG_CONFIG_PATH to override paths to libdpdk.pc
pkg_check_modules
(
dpdk REQUIRED libdpdk
)
pkg_check_modules
(
numa REQUIRED numa
)
...
...
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