mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
Get all unnamed symbols with make DEBUG=1
This commit is contained in:
parent
43a9295789
commit
9e4a00af45
@ -19,7 +19,7 @@ before_script:
|
||||
fi;
|
||||
}
|
||||
script:
|
||||
- make -j2 compare
|
||||
- make DEBUG=1 -j2 compare
|
||||
- check_status
|
||||
after_success:
|
||||
- |-
|
||||
|
@ -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("crystal_obj := "):
|
||||
objects = line[15:].strip().split()
|
||||
|
Loading…
Reference in New Issue
Block a user