Skip to content
Snippets Groups Projects
Commit da618742 authored by Will Partain's avatar Will Partain
Browse files

[project @ 1996-01-22 18:59:42 by partain]

Add -no-hi-diffs flag (from dnt)
parent 9e5c5b07
No related merge requests found
......@@ -601,8 +601,9 @@ arg: while($_ = $ARGV[0]) {
/^-nohi$/ && do { $ProduceHi = 0; next arg; };
# don't generate an interface (even if generating C)
/^-hi-diffs$/ && do { $HiDiff_flag = 1; next arg; };
# show diffs if the interface file changes
/^-hi-diffs$/ && do { $HiDiff_flag = 1; next arg; };
/^-no-hi-diffs$/ && do { $HiDiff_flag = 0; next arg; };
# show/disable diffs if the interface file changes
/^-E$/ && do { push(@CcBoth_flags, '-E');
$Only_preprocess_C = 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment