shithub: pokecrystal

Download patch

ref: 9e4a00af4523cdfacbb6b245679e2e60fbc6b375
parent: 43a92957899b0f14c1c60cb533f298d08c16a72b
author: Rangi <remy.oukaour+rangi42@gmail.com>
date: Tue Jul 7 17:09:05 EDT 2020

Get all unnamed symbols with make DEBUG=1

--- a/.travis.yml
+++ b/.travis.yml
@@ -19,7 +19,7 @@
       fi;
     }
 script:
-  - make -j2 compare
+  - make DEBUG=1 -j2 compare
   - check_status
 after_success:
   - |-
--- a/tools/unnamed.py
+++ b/tools/unnamed.py
@@ -37,7 +37,7 @@
 # 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("crystal_obj := "):
             objects = line[15:].strip().split()