-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #467 from biojppm/fix/464_ub_ppc64le
Workaround for failures with ppc64le g++14 -O2
- Loading branch information
Showing
3 changed files
with
54 additions
and
30 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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
set(CMAKE_SYSTEM_NAME Linux) | ||
set(CROSS_COMPILER_PREFIX /usr) | ||
set(CROSS_COMPILER_TARGET powerpc64le-linux-gnu) | ||
set(CMAKE_SYSTEM_PROCESSOR powerpc64le) | ||
set(CMAKE_CROSSCOMPILING_EMULATOR qemu-ppc64le-static) | ||
set(CMAKE_C_COMPILER ${CROSS_COMPILER_PREFIX}/bin/${CROSS_COMPILER_TARGET}-gcc) | ||
set(CMAKE_CXX_COMPILER ${CROSS_COMPILER_PREFIX}/bin/${CROSS_COMPILER_TARGET}-g++) | ||
set(CMAKE_AR ${CROSS_COMPILER_PREFIX}/bin/${CROSS_COMPILER_TARGET}-ar CACHE FILEPATH "Archiver") | ||
set(CMAKE_MAKE_PROGRAM ${CROSS_COMPILER_PREFIX}/bin/make CACHE FILEPATH "make") | ||
|
||
# use -static to avoid having to install the dynamic loader | ||
# see https://mfo.dev.br/2018/03/17/ppc64le-on-x86_64-cross-compilers.html | ||
set(CMAKE_CXX_FLAGS -static) | ||
set(CMAKE_C_FLAGS -static) | ||
|
||
set(CMAKE_FIND_ROOT_PATH ${CROSS_COMPILER_PREFIX}/${CROSS_COMPILER_TARGET}) | ||
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM ONLY) | ||
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) | ||
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) | ||
|
||
# needed ubuntu packages: | ||
# | ||
# sudo apt-get install -y \ | ||
# gcc-powerpc64le-linux-gnu \ | ||
# g++-powerpc64le-linux-gnu \ | ||
# qemu-user-system |
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,8 @@ | ||
## Fixes | ||
|
||
- Fix [#464](https://github.com/biojppm/rapidyaml/issues/464): test failures with g++14 -O2 in ppc64le ([PR#467](https://github.com/biojppm/rapidyaml/pull/467)) | ||
|
||
|
||
## Thanks | ||
|
||
- @musicinmybrain |
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