diff options
author | pommicket <pommicket@gmail.com> | 2022-11-08 13:14:22 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-11-08 13:14:22 -0500 |
commit | d2b519d5cd43236e8f23a5ca05b8e6e31346d241 (patch) | |
tree | 40b5c4c8d2d71a581fdb3a53c596fdbaccc8ec42 /src/main.rs | |
parent | 445bd0f3f4acb5c70c4debdf69c92751a17e0c69 (diff) |
tests
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs index 775138a..926b1e4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,6 +1,5 @@ /* @TODO: -- automated tests - what happens when a symbol has two definitions? can this happen with multiple c++ files which use the same template? - disable "warning: relocation XXX not in a data/text section" for .rel.eh_frame + maybe others - these warnings are being generated in two places. do they need to be? @@ -16,8 +15,7 @@ use clap::Parser; #[cfg(target_endian = "big")] compile_error! {"WHY do you have a big endian machine???? it's the 21st century, buddy. this program won't work fuck you"} -mod elf; -pub mod linker; +use tinyld::linker; #[derive(Parser, Debug)] struct Args { |