don't pass -C to nm

the nm in our macOS bots don't support that flag and it's not really required
This commit is contained in:
Jorge Aparicio 2017-04-06 23:53:32 -05:00
parent f4f79c3304
commit 98037ca43d
1 changed files with 1 additions and 1 deletions

View File

@ -7,5 +7,5 @@ all:
else
all:
$(RUSTC) -C opt-level=3 --emit=obj used.rs
nm -C $(TMPDIR)/used.o | grep FOO
nm $(TMPDIR)/used.o | grep FOO
endif