diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-07 21:08:49 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-07 21:08:49 -0400 |
commit | 368815e21c750da462640b238ee2523cda5c1278 (patch) | |
tree | ab615e708a4f53ff3364644979926d671dbfd6d5 | |
parent | e3a815bf4a9b548e5a8d987d27b996cb94bcc7d4 (diff) |
Get all unnamed symbols with make DEBUG=1
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | layout.link | 2 | ||||
-rwxr-xr-x | tools/unnamed.py | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index f7908861..a98b03f0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ before_script: fi; } script: - - make -j2 compare + - make DEBUG=1 -j2 compare - check_status after_success: - |- diff --git a/layout.link b/layout.link index 1991fa46..9a8133c1 100644 --- a/layout.link +++ b/layout.link @@ -289,3 +289,5 @@ SRAM $02 SRAM $03 "Boxes 8-14" "Backup Save 3" +HRAM + "HRAM" diff --git a/tools/unnamed.py b/tools/unnamed.py index 1a8a7ce7..e9e9155c 100755 --- a/tools/unnamed.py +++ b/tools/unnamed.py @@ -37,7 +37,7 @@ args = parser.parse_args() # Get list of object files objects = None if args.rootdir: - for line in Popen(["make", "-C", args.rootdir, "-s", "-p"], + for line in Popen(["make", "-C", args.rootdir, "-s", "-p", "DEBUG=1"], stdout=PIPE).stdout.read().decode().split("\n"): if line.startswith("pokegold_obj := "): objects = line[16:].strip().split() |