Skip to content

Commit

Permalink
Suppress warning from the atos Xcode tool
Browse files Browse the repository at this point in the history
Not sure why we get this warning since we do go via xcrun.
  • Loading branch information
sorbits committed Mar 26, 2015
1 parent 3c49b4f commit b0814df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Frameworks/OakDebug/src/OakAssert.mm
Expand Up @@ -22,7 +22,7 @@ @interface OakExceptionHandlerDelegate : NSObject { }
// = Run atos =
// ============

std::string cmd = text::format("/usr/bin/xcrun atos -p %d %s | /usr/bin/tail -n +%d | /usr/bin/c++filt", getpid(), trace, linesToSkip + 1);
std::string cmd = text::format("/usr/bin/xcrun atos -d -p %d %s | /usr/bin/tail -n +%d | /usr/bin/c++filt", getpid(), trace, linesToSkip + 1);
char const* argv[] = { "/bin/sh", "-c", cmd.c_str(), NULL };

int output[2];
Expand Down

0 comments on commit b0814df

Please sign in to comment.