forked from gcc/gcc-mirror
libstdc++: [_GLIBCXX_INLINE_VERSION] Use cxx11 abi [PR83077] #17
No reviewers
Labels
No labels
Compat/Breaking
Frontend/ada
Frontend/c
Frontend/c++
General/forge
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Library/libgcc
Library/libstdc++
Midend/gimple
Midend/rtl
Midend/tree
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
Target/aarch64
Target/arm
Target/i386
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
3 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
gcc/gcc-TEST!17
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fdumont/gcc-TEST:version_ns_cxx11_abi"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Use cxx11 abi when activating versioned namespace mode. To do so support a new
configuration mode where !_GLIBCXX_USE_DUAL_ABI and _GLIBCXX_USE_CXX11_ABI.
The main change is that std::__cow_string is now defined whenever _GLIBCXX_USE_DUAL_ABI
or _GLIBCXX_USE_CXX11_ABI is true. Implementation is using available COW std::string in
case of dual abi and a subset of it when it's not.
This patch adds optimization of the following patterns: (zero_extend:M (subreg:N (not:O==M (X:Q==M)))) -> (xor:M (zero_extend:M (subreg:N (X:M)), mask)) ... where the mask is GET_MODE_MASK (N). For the cases when X:M doesn't have any non-zero bits outside of mode N, (zero_extend:M (subreg:N (X:M)) could be simplified to just (X:M) and whole optimization will be: (zero_extend:M (subreg:N (not:M (X:M)))) -> (xor:M (X:M, mask)) Patch targets to handle code patterns like: not a0,a0 andi a0,a0,0xff to be optimized to: xori a0,a0,255 Change was locally tested for x86_64 and AArch64 (as most common) and for RV-64 and MIPS-32 targets (as having an effect from this optimization): no regressions for all cases. PR rtl-optimization/112398 gcc/ChangeLog: * simplify-rtx.cc (simplify_context::simplify_unary_operation_1): Simplify ZERO_EXTEND (SUBREG (NOT X)) to XOR (X, GET_MODE_MASK(SUBREG)) when X doesn't have any non-zero bits outside of SUBREG mode. gcc/testsuite/ChangeLog: * gcc.target/riscv/pr112398.c: New test. Signed-off-by: Alexey Merzlyakov <alexey.merzlyakov@samsung.com>This patch would like to support .SAT_ADD when one of the op is singed IMM. Form1: T __attribute__((noinline)) \ sat_s_add_imm_##T##_fmt_1##_##INDEX (T x) \ { \ T sum = (UT)x + (UT)IMM; \ return (x ^ IMM) < 0 \ ? sum \ : (sum ^ x) >= 0 \ ? sum \ : x < 0 ? MIN : MAX; \ } Take below form1 as example: DEF_SAT_S_ADD_IMM_FMT_1(0, int8_t, uint8_t, -10, INT8_MIN, INT8_MAX) Before this patch: __attribute__((noinline)) int8_t sat_s_add_imm_int8_t_fmt_1_0 (int8_t x) { int8_t sum; unsigned char x.0_1; unsigned char _2; signed char _4; int8_t _5; _Bool _9; signed char _10; signed char _11; signed char _12; signed char _14; signed char _16; <bb 2> [local count: 1073741824]: x.0_1 = (unsigned char) x_6(D); _2 = x.0_1 + 246; sum_7 = (int8_t) _2; _4 = x_6(D) ^ sum_7; _16 = x_6(D) ^ 9; _14 = _4 & _16; if (_14 < 0) goto <bb 3>; [41.00%] else goto <bb 4>; [59.00%] <bb 3> [local count: 259738147]: _9 = x_6(D) < 0; _10 = (signed char) _9; _11 = -_10; _12 = _11 ^ 127; <bb 4> [local count: 1073741824]: # _5 = PHI <sum_7(2), _12(3)> return _5; } After this patch: __attribute__((noinline)) int8_t sat_s_add_imm_int8_t_fmt_1_0 (int8_t x) { int8_t _5; <bb 2> [local count: 1073741824]: _5 = .SAT_ADD (x_6(D), -10); [tail call] return _5; } The below test suites are passed for this patch: 1. The rv64gcv fully regression tests. 2. The x86 bootstrap tests. 3. The x86 fully regression tests. Signed-off-by: Li Xu <xuli1@eswincomputing.com> gcc/ChangeLog: * match.pd: Add the form1 of signed imm .SAT_ADD matching. * tree-ssa-math-opts.cc (match_saturation_add): Add fold convert for const_int to the type of operand 0.This patch adds testcase for form1, as shown below: T __attribute__((noinline)) \ sat_s_add_imm_##T##_fmt_1##_##INDEX (T x) \ { \ T sum = (UT)x + (UT)IMM; \ return (x ^ IMM) < 0 \ ? sum \ : (sum ^ x) >= 0 \ ? sum \ : x < 0 ? MIN : MAX; \ } Passed the rv64gcv regression test. Signed-off-by: Li Xu <xuli1@eswincomputing.com> gcc/testsuite/ChangeLog: * gcc.target/riscv/sat_arith.h: Support signed imm SAT_ADD form1. * gcc.target/riscv/sat_s_add_imm-1-1.c: New test. * gcc.target/riscv/sat_s_add_imm-1.c: New test. * gcc.target/riscv/sat_s_add_imm-2-1.c: New test. * gcc.target/riscv/sat_s_add_imm-2.c: New test. * gcc.target/riscv/sat_s_add_imm-3-1.c: New test. * gcc.target/riscv/sat_s_add_imm-3.c: New test. * gcc.target/riscv/sat_s_add_imm-4.c: New test. * gcc.target/riscv/sat_s_add_imm-run-1.c: New test. * gcc.target/riscv/sat_s_add_imm-run-2.c: New test. * gcc.target/riscv/sat_s_add_imm-run-3.c: New test. * gcc.target/riscv/sat_s_add_imm-run-4.c: New test.a158d4a62etoa4a309a65ba4a309a65btoe3f0b908bde3f0b908bdto3c5a6648713c5a664871tod94a6e679ad94a6e679ato96fc69ad4996fc69ad49to94349e753894349e7538to21d83aae8221d83aae82tof478f87b34f478f87b34tocdf6a70098cdf6a70098to2ce17db7912ce17db791to0686b5c6630686b5c663to15dcaf2e0a15dcaf2e0ato20fb15446a20fb15446atob87e2885c3b87e2885c3to9ac4b3c30f9ac4b3c30fto5eb7654c875eb7654c87tof4b0983d0cf4b0983d0cto222eed535a222eed535ato464010e40c464010e40ctod8a77206c6d8a77206c6to1442c67dcd1442c67dcdtof53f680fecf53f680fecto000de1a040000de1a040to5be7aff9a65be7aff9a6tocfdbab0e61cfdbab0e61tob645e9dfdbb645e9dfdbto25a5b20a9225a5b20a92to24bc134873CI state: pending
Test started
See: BUILD_URLconsole
CI state: fail
Patch failed to apply
See: BUILD_URLartifact/artifacts/jenkins/pw-apply.log
CI state: pending
Build started
See: https://ci.linaro.org/job/tcwg_gcc_build--master-aarch64-precommit/20440/console
CI state: pending
Patch applied
See: https://ci.linaro.org/job/tcwg_gcc_build--master-aarch64-precommit/20440/console
CI state: success
Build passed
See: https://ci.linaro.org/job/tcwg_gcc_build--master-aarch64-precommit/20440/
CI state: success
Build results
See: https://ci.linaro.org/job/tcwg_gcc_build--master-aarch64-precommit/20440/
Dear contributor,
Our automatic CI successfully passed with your patch(es). Please find some details below.
In gcc_build master-aarch64, after:
| 4 patches in gcc
| Patchwork URL: #17
| c588f7d5b536 [PATCH 4/4] libstdc++: Review configuration options to control abi [PR65762]
| b2b922a519a8 [PATCH 3/4] libstdc++: [_GLIBCXX_INLINE_VERSION] Use cxx11 abi [PR83077]
| 083a05b719ba [PATCH 2/4] testsuite: Add optional libstdc++ version namespace in expected diagnostic
| 228782692841 [PATCH 1/4] libstdc++: Bump gnu versioned namespace to __9
| ... applied on top of baseline commit:
|
9467435253LoongArch: macro instead enum for base abi typeProduces Success:
| Results changed to
| # reset_artifacts:
| -10
| # true:
| 0
| # build_abe gcc:
| 1
|
| From
| # reset_artifacts:
| -10
| # true:
| 0
| # build_abe gcc:
| 1
Used configuration :
CI config tcwg_gcc_build master-aarch64
configure and test flags: none, autodetected on aarch64-unknown-linux-gnu
If you have any questions regarding this report, please ask on linaro-toolchain@lists.linaro.org mailing list.
-----------------8<--------------------------8<--------------------------8<--------------------------
The information below contains the details of the failures, and the ways to reproduce a debug environment:
You can find the failure logs in
The full lists of regressions and improvements as well as configure and make commands are in
Current build : https://ci.linaro.org/job/tcwg_gcc_build--master-aarch64-precommit/20440/artifact/artifacts
Reference build : https://ci.linaro.org/job/tcwg_gcc_build--master-aarch64-build/3808/artifact/artifacts
Warning: we do not enable maintainer-mode nor automatically update
generated files, which may lead to failures if the patch modifies the
master files.
CI state: pending
Build started
See: https://ci.linaro.org/job/tcwg_gcc_build--master-arm-precommit/20680/console
CI state: pending
Patch applied
See: https://ci.linaro.org/job/tcwg_gcc_build--master-arm-precommit/20680/console
CI state: success
Build passed
See: https://ci.linaro.org/job/tcwg_gcc_build--master-arm-precommit/20680/
CI state: success
Build results
See: https://ci.linaro.org/job/tcwg_gcc_build--master-arm-precommit/20680/
Dear contributor,
Our automatic CI successfully passed with your patch(es). Please find some details below.
In gcc_build master-arm, after:
| 4 patches in gcc
| Patchwork URL: #17
| 117daf519ba1 [PATCH 4/4] libstdc++: Review configuration options to control abi [PR65762]
| 24f17f3e1092 [PATCH 3/4] libstdc++: [_GLIBCXX_INLINE_VERSION] Use cxx11 abi [PR83077]
| 990dc9965776 [PATCH 2/4] testsuite: Add optional libstdc++ version namespace in expected diagnostic
| 931ed66f31cf [PATCH 1/4] libstdc++: Bump gnu versioned namespace to __9
| ... applied on top of baseline commit:
|
4453610469RISC-V: RISC-V: Add test for vec_duplicate + vmerge.vvm combine with GR2VR cost 0, 1 and 15Produces Success:
| Results changed to
| # reset_artifacts:
| -10
| # true:
| 0
| # build_abe gcc:
| 1
|
| From
| # reset_artifacts:
| -10
| # true:
| 0
| # build_abe gcc:
| 1
Used configuration :
CI config tcwg_gcc_build master-arm
configure and test flags: none, autodetected on armv8l-unknown-linux-gnueabihf
If you have any questions regarding this report, please ask on linaro-toolchain@lists.linaro.org mailing list.
-----------------8<--------------------------8<--------------------------8<--------------------------
The information below contains the details of the failures, and the ways to reproduce a debug environment:
You can find the failure logs in
The full lists of regressions and improvements as well as configure and make commands are in
Current build : https://ci.linaro.org/job/tcwg_gcc_build--master-arm-precommit/20680/artifact/artifacts
Reference build : https://ci.linaro.org/job/tcwg_gcc_build--master-arm-build/3860/artifact/artifacts
Warning: we do not enable maintainer-mode nor automatically update
generated files, which may lead to failures if the patch modifies the
master files.
CI state: pending
Test started
See: https://ci.linaro.org/job/tcwg_gnu_cross_check_binutils--master-aarch64-precommit/1/console
CI state: pending
Patch applied
See: https://ci.linaro.org/job/tcwg_gnu_cross_check_binutils--master-aarch64-precommit/1/console
CI state: success
Test passed
See: https://ci.linaro.org/job/tcwg_gnu_cross_check_binutils--master-aarch64-precommit/1/
CI state: success
Test results
See: https://ci.linaro.org/job/tcwg_gnu_cross_check_binutils--master-aarch64-precommit/1/
Dear contributor,
Our automatic CI successfully passed with your patch(es). Please find some details below.
In master-aarch64, after:
| 4 patches in gcc
| Patchwork URL: #17
| a7bada995b9 [PATCH 4/4] libstdc++: Review configuration options to control abi [PR65762]
| f3f8860b8d6 [PATCH 3/4] libstdc++: [_GLIBCXX_INLINE_VERSION] Use cxx11 abi [PR83077]
| dd869561169 [PATCH 2/4] testsuite: Add optional libstdc++ version namespace in expected diagnostic
| 5169a3e7ca9 [PATCH 1/4] libstdc++: Bump gnu versioned namespace to __9
| ... applied on top of baseline commit:
|
534276f1e5LoongArch: Implement 16-byte atomic add, sub, and, or, xor, and nand with sc.qUsed configuration :
CI config tcwg_gnu_cross_check_binutils master-aarch64
configure and test flags: --target aarch64-linux-gnu
If you have any questions regarding this report, please ask on linaro-toolchain@lists.linaro.org mailing list.
-----------------8<--------------------------8<--------------------------8<--------------------------
The information below contains the details of the failures, and the ways to reproduce a debug environment:
You can find the failure logs in *.log.1.xz files in
The full lists of regressions and improvements as well as configure and make commands are in
The list of [ignored] baseline and flaky failures are in
Current build : https://ci.linaro.org/job/tcwg_gnu_cross_check_binutils--master-aarch64-precommit/1/artifact/artifacts
Reference build : https://ci.linaro.org/job/tcwg_gnu_cross_check_binutils--master-aarch64-build/1098/artifact/artifacts
Warning: we do not enable maintainer-mode nor automatically update
generated files, which may lead to failures if the patch modifies the
master files.
CI state: pending
Test started
See: https://ci.linaro.org/job/tcwg_gnu_cross_check_gcc--master-arm-precommit/57/console
CI state: pending
Patch applied
See: https://ci.linaro.org/job/tcwg_gnu_cross_check_gcc--master-arm-precommit/57/console
CI state: success
Test passed
See: https://ci.linaro.org/job/tcwg_gnu_cross_check_gcc--master-arm-precommit/57/
CI state: success
Test results
See: https://ci.linaro.org/job/tcwg_gnu_cross_check_gcc--master-arm-precommit/57/
Dear contributor,
Our automatic CI successfully passed with your patch(es). Please find some details below.
In master-arm, after:
| 4 patches in gcc
| Patchwork URL: #17
| 1ae880e3ab9 [PATCH 4/4] libstdc++: Review configuration options to control abi [PR65762]
| 550a4830586 [PATCH 3/4] libstdc++: [_GLIBCXX_INLINE_VERSION] Use cxx11 abi [PR83077]
| 2b86f07e1fe [PATCH 2/4] testsuite: Add optional libstdc++ version namespace in expected diagnostic
| f07d7ef33ff [PATCH 1/4] libstdc++: Bump gnu versioned namespace to __9
| ... applied on top of baseline commit:
|
0e09be99c0opts: use sanitize_code_type for sanitizer flagsUsed configuration :
CI config tcwg_gnu_cross_check_gcc master-arm
configure and test flags: --target arm-linux-gnueabihf
If you have any questions regarding this report, please ask on linaro-toolchain@lists.linaro.org mailing list.
-----------------8<--------------------------8<--------------------------8<--------------------------
The information below contains the details of the failures, and the ways to reproduce a debug environment:
You can find the failure logs in *.log.1.xz files in
The full lists of regressions and improvements as well as configure and make commands are in
The list of [ignored] baseline and flaky failures are in
Current build : https://ci.linaro.org/job/tcwg_gnu_cross_check_gcc--master-arm-precommit/57/artifact/artifacts
Reference build : https://ci.linaro.org/job/tcwg_gnu_cross_check_gcc--master-arm-build/2267/artifact/artifacts
Warning: we do not enable maintainer-mode nor automatically update
generated files, which may lead to failures if the patch modifies the
master files.
CI state: pending
Test started
See: https://ci.linaro.org/job/tcwg_gnu_cross_check_binutils--master-arm-precommit/1/console
CI state: pending
Patch applied
See: https://ci.linaro.org/job/tcwg_gnu_cross_check_binutils--master-arm-precommit/1/console
CI state: success
Test passed
See: https://ci.linaro.org/job/tcwg_gnu_cross_check_binutils--master-arm-precommit/1/
CI state: success
Test results
See: https://ci.linaro.org/job/tcwg_gnu_cross_check_binutils--master-arm-precommit/1/
Dear contributor,
Our automatic CI successfully passed with your patch(es). Please find some details below.
In master-arm, after:
| 4 patches in gcc
| Patchwork URL: #17
| 086f1e32f92c [PATCH 4/4] libstdc++: Review configuration options to control abi [PR65762]
| 3f3ebb1fb9b9 [PATCH 3/4] libstdc++: [_GLIBCXX_INLINE_VERSION] Use cxx11 abi [PR83077]
| fe22afc84ec7 [PATCH 2/4] testsuite: Add optional libstdc++ version namespace in expected diagnostic
| 43b7064720f1 [PATCH 1/4] libstdc++: Bump gnu versioned namespace to __9
| ... applied on top of baseline commit:
|
2be801a805docs: Fix __builtin_object_size example [PR121581]Used configuration :
CI config tcwg_gnu_cross_check_binutils master-arm
configure and test flags: --target arm-linux-gnueabihf
If you have any questions regarding this report, please ask on linaro-toolchain@lists.linaro.org mailing list.
-----------------8<--------------------------8<--------------------------8<--------------------------
The information below contains the details of the failures, and the ways to reproduce a debug environment:
You can find the failure logs in *.log.1.xz files in
The full lists of regressions and improvements as well as configure and make commands are in
The list of [ignored] baseline and flaky failures are in
Current build : https://ci.linaro.org/job/tcwg_gnu_cross_check_binutils--master-arm-precommit/1/artifact/artifacts
Reference build : https://ci.linaro.org/job/tcwg_gnu_cross_check_binutils--master-arm-build/1123/artifact/artifacts
Warning: we do not enable maintainer-mode nor automatically update
generated files, which may lead to failures if the patch modifies the
master files.
CI state: pending
Build started
See: https://ci.linaro.org/job/tcwg_gnu_cross_build--master-arm-precommit/5/console
CI state: pending
Patch applied
See: https://ci.linaro.org/job/tcwg_gnu_cross_build--master-arm-precommit/5/console
CI state: success
Build passed
See: https://ci.linaro.org/job/tcwg_gnu_cross_build--master-arm-precommit/5/
CI state: success
Build results
See: https://ci.linaro.org/job/tcwg_gnu_cross_build--master-arm-precommit/5/
Dear contributor,
Our automatic CI successfully passed with your patch(es). Please find some details below.
In master-arm, after:
| 4 patches in gcc
| Patchwork URL: #17
| 0ddb73845014 [PATCH 4/4] libstdc++: Review configuration options to control abi [PR65762]
| 8f61a3ea7dc9 [PATCH 3/4] libstdc++: [_GLIBCXX_INLINE_VERSION] Use cxx11 abi [PR83077]
| 430fcef0e926 [PATCH 2/4] testsuite: Add optional libstdc++ version namespace in expected diagnostic
| b4b0ae23f498 [PATCH 1/4] libstdc++: Bump gnu versioned namespace to __9
| ... applied on top of baseline commit:
|
3b58b78f1aDaily bump.Produces Success:
| Results changed to
| # reset_artifacts:
| -10
| # true:
| 0
| # build_abe binutils:
| 1
| # build_abe stage1 --:
| 2
| # build_abe linux:
| 3
| # build_abe glibc:
| 4
| # build_abe stage2 --:
| 5
| # build_abe gdb:
| 6
| # build_abe qemu:
| 7
|
| From
| # reset_artifacts:
| -10
| # true:
| 0
| # build_abe binutils:
| 1
| # build_abe stage1 --:
| 2
| # build_abe linux:
| 3
| # build_abe glibc:
| 4
| # build_abe stage2 --:
| 5
| # build_abe gdb:
| 6
| # build_abe qemu:
| 7
Used configuration :
CI config tcwg_gnu_cross_build master-arm
configure and test flags: --target arm-linux-gnueabihf
If you have any questions regarding this report, please ask on linaro-toolchain@lists.linaro.org mailing list.
-----------------8<--------------------------8<--------------------------8<--------------------------
The information below contains the details of the failures, and the ways to reproduce a debug environment:
You can find the failure logs in
The full lists of regressions and improvements as well as configure and make commands are in
Current build : https://ci.linaro.org/job/tcwg_gnu_cross_build--master-arm-precommit/5/artifact/artifacts
Reference build : https://ci.linaro.org/job/tcwg_gnu_cross_build--master-arm-build/1175/artifact/artifacts
Warning: we do not enable maintainer-mode nor automatically update
generated files, which may lead to failures if the patch modifies the
master files.
CI state: pending
Test started
See: https://ci.linaro.org/job/tcwg_gnu_cross_check_gcc--master-aarch64-precommit/2/console
CI state: pending
Patch applied
See: https://ci.linaro.org/job/tcwg_gnu_cross_check_gcc--master-aarch64-precommit/2/console
CI state: pending
Test started
See: https://ci.linaro.org/job/tcwg_gnu_cross_check_gcc--master-aarch64-precommit/19/console
CI state: pending
Patch applied
See: https://ci.linaro.org/job/tcwg_gnu_cross_check_gcc--master-aarch64-precommit/19/console
CI state: success
Test passed
See: https://ci.linaro.org/job/tcwg_gnu_cross_check_gcc--master-aarch64-precommit/19/
CI state: success
Test results
See: https://ci.linaro.org/job/tcwg_gnu_cross_check_gcc--master-aarch64-precommit/19/
Dear contributor,
Our automatic CI successfully passed with your patch(es). Please find some details below.
In master-aarch64, after:
| 4 patches in gcc
| Patchwork URL: #17
| 90f69bf6025 [PATCH 4/4] libstdc++: Review configuration options to control abi [PR65762]
| b48a8338add [PATCH 3/4] libstdc++: [_GLIBCXX_INLINE_VERSION] Use cxx11 abi [PR83077]
| bf0bf7ea1f2 [PATCH 2/4] testsuite: Add optional libstdc++ version namespace in expected diagnostic
| 7279025ccfe [PATCH 1/4] libstdc++: Bump gnu versioned namespace to __9
| ... applied on top of baseline commit:
|
273a4d3775c++: testcase tweak for -fimplicit-constexprUsed configuration :
CI config tcwg_gnu_cross_check_gcc master-aarch64
configure and test flags: --target aarch64-linux-gnu
If you have any questions regarding this report, please ask on linaro-toolchain@lists.linaro.org mailing list.
-----------------8<--------------------------8<--------------------------8<--------------------------
The information below contains the details of the failures, and the ways to reproduce a debug environment:
You can find the failure logs in *.log.1.xz files in
The full lists of regressions and improvements as well as configure and make commands are in
The list of [ignored] baseline and flaky failures are in
Current build : https://ci.linaro.org/job/tcwg_gnu_cross_check_gcc--master-aarch64-precommit/19/artifact/artifacts
Reference build : https://ci.linaro.org/job/tcwg_gnu_cross_check_gcc--master-aarch64-build/2283/artifact/artifacts
Warning: we do not enable maintainer-mode nor automatically update
generated files, which may lead to failures if the patch modifies the
master files.
CI state: success ✅
CI bot tcwg_gnu_cross_build--master-aarch64 : CI bot tcwg_gnu_cross_build--master-aarch64: Build results
See: https://ci.linaro.org/job/tcwg_gnu_cross_build--master-aarch64-precommit/25/artifacts/artifacts.precommit/notify/mail-body.txt
CI state: success ✅
CI bot tcwg_gnu_cross_build--master-arm : CI bot tcwg_gnu_cross_build--master-arm: Build results
See: https://ci.linaro.org/job/tcwg_gnu_cross_build--master-arm-precommit/57/artifacts/artifacts.precommit/notify/mail-body.txt
CI state: success ✅
CI bot tcwg_gnu_cross_check_gcc--master-aarch64 : CI bot tcwg_gnu_cross_check_gcc--master-aarch64: Test results
See: https://ci.linaro.org/job/tcwg_gnu_cross_check_gcc--master-aarch64-precommit/54/artifacts/artifacts.precommit/notify/mail-body.txt
24bc134873to1170bd27a8View command line instructions
Checkout
From your project repository, check out a new branch and test the changes.Merge
Merge the changes and update on Forgejo.Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.