We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efb97f5 commit d4c77bbCopy full SHA for d4c77bb
.github/workflows/ci.yml
@@ -91,6 +91,7 @@ jobs:
91
92
- name: Install Agave
93
run: |
94
+ objdump --version
95
if ! ./agave/bin/agave-validator --version; then
96
git clone https://github.com/anza-xyz/agave
97
cd agave
src/start_address.rs
@@ -19,6 +19,7 @@ pub fn start_address(path: impl AsRef<Path>) -> Result<u64> {
19
OutputError::new(output)
20
);
21
let stdout = std::str::from_utf8(&output.stdout)?;
22
+ dbg!(&stdout);
23
for line in stdout.lines() {
24
if let Some(suffix) = line.strip_prefix("start address: 0x") {
25
if let Ok(address) = u64::from_str_radix(suffix, 16) {
0 commit comments