This file contains hidden or 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
| #0 (anonymous namespace)::ELFWriter::writeRelocations (this=0x7fffce9e32f0, Sec=...) at /home/martin/src/rust/src/llvm-project/llvm/lib/MC/ELFObjectWriter.cpp:814 | |
| #1 0x00007ffff3132282 in (anonymous namespace)::ELFWriter::writeObject (this=0x7fffce9e32f0) at /home/martin/src/rust/src/llvm-project/llvm/lib/MC/ELFObjectWriter.cpp:1103 | |
| #2 0x00007ffff3133ce7 in llvm::ELFObjectWriter::writeObject (this=0x7fffd4ae7aa0) at /home/martin/src/rust/src/llvm-project/llvm/lib/MC/ELFObjectWriter.cpp:1411 | |
| #3 0x00007ffff31507c7 in llvm::MCAssembler::Finish (this=0x7fffc40c0b60) at /home/martin/src/rust/src/llvm-project/llvm/lib/MC/MCAssembler.cpp:844 | |
| #4 0x00007ffff31af6f8 in llvm::MCObjectStreamer::finishImpl (this=0x7fffc4135850) at /home/martin/src/rust/src/llvm-project/llvm/lib/MC/MCObjectStreamer.cpp:816 | |
| #5 0x00007ffff3191f1a in llvm::MCELFStreamer::finishImpl (this=0x7fffc4135850) at /home/martin/src/rust/src/llvm-project/llvm/lib/MC/MCELFStreamer.cpp:520 | |
| #6 0x00007ffff31db31b in llvm::MCStreamer::finish (this=0x |
This file contains hidden or 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
| Breakpoint 1, 0x00007ffff7fa6858 in _Unwind_Backtrace () from /lib/x86_64-linux-gnu/libgcc_s.so.1 | |
| (gdb) bt | |
| #0 0x00007ffff7fa6858 in _Unwind_Backtrace () from /lib/x86_64-linux-gnu/libgcc_s.so.1 | |
| #1 0x000055555557baf2 in std::backtrace_rs::backtrace::libunwind::trace () at library/std/src/../../backtrace/src/backtrace/libunwind.rs:117 | |
| #2 std::backtrace_rs::backtrace::trace_unsynchronized<std::sys::backtrace::_print_fmt::{closure_env#1}> () at library/std/src/../../backtrace/src/backtrace/mod.rs:66 | |
| #3 std::sys::backtrace::_print_fmt () at library/std/src/sys/backtrace.rs:66 | |
| #4 std::sys::backtrace::{impl#0}::print::{impl#0}::fmt () at library/std/src/sys/backtrace.rs:39 | |
| #5 0x0000555555596653 in core::fmt::rt::Argument::fmt () at library/core/src/fmt/rt.rs:173 | |
| #6 core::fmt::write () at library/core/src/fmt/mod.rs:1465 | |
| #7 0x0000555555579b63 in std::io::default_write_fmt<std::sys::stdio::unix::Stderr> () at library/std/src/io/mod.rs:639 |
This file contains hidden or 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
| echo bat ci && cargo fmt -- --check && cargo doc --locked --no-deps --document-private-items --all-features && cargo clippy --all-targets --all-features && cargo check --no-default-features --features minimal-application && cargo test --doc && cargo test && PATH="./target/debug:$PATH" tests/syntax-tests/test_custom_assets.sh && echo ci pass | |
| echo syntax bat ci && cargo build --no-default-features --features minimal-application,build-assets && PATH="./target/debug:$PATH" assets/create.sh && cargo build --release --no-default-features --features minimal-application && PATH="./target/release:$PATH" tests/syntax-tests/regression_test.sh | |
| echo syntect ci && cargo clippy --all-targets --all-features && RUSTDOCFLAGS='--deny warnings' cargo doc --no-deps --document-private-items --all-features && cargo run --example synhtml --no-default-features --features html,assets,dump-load,dump-create,regex-onig -- examples/synhtml.rs && cargo test --all-targets --all-features && cargo test --doc && echo yes |
This file contains hidden or 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
| setContentView(R.layout.content_main) | |
| findViewById<View>(R.id.shouldBeExcludedFromWrapContent) | |
| .animate() | |
| .setStartDelay(1_000L) | |
| .rotationBy(5 * 360f) | |
| .translationXBy(1800f) | |
| .translationYBy(1800f) | |
| .setDuration(5_000L) | |
| .start() |