shithub: pokered

Download patch

ref: c7e3aed0b86b1a06151a38db914135255b760118
parent: 9571c550b6a0dcb3a4f54513c881661a87271024
author: Rangi <remy.oukaour+rangi42@gmail.com>
date: Tue Jul 7 17:10:13 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("pokered_obj := "):
             objects = line[15:].strip().split()