diff --git a/ghc/docs/users_guide/3-02-notes.vsgml b/ghc/docs/users_guide/3-02-notes.vsgml index aa56678ea90bed7aa73385250eb039c9f61c7870..0f75d3986ed4ea45197bfd35f40698cba1a22f19 100644 --- a/ghc/docs/users_guide/3-02-notes.vsgml +++ b/ghc/docs/users_guide/3-02-notes.vsgml @@ -1,8 +1,8 @@ -<sect1>Release notes for version~3-01---2/97 -<label id="release-3-01"> +<sect1>Release notes for version~3-02---4/97 +<label id="release-3-02"> <p> -Changes made since 3.00: +Changes made since 3.01: <itemize> @@ -14,4 +14,10 @@ tuples in some cases. <item> Fixed parsing problem: declaring a record with an infix constructor. +<item> When computing the Makefile dependencies, using either +<tt/ghc -M/ (preferred) or by invoking the <tt/mkdependHS/ script +directly, <tt/CPP/ will now by default not be run over the input +files. To have CPP wash your input files, use the command-line option +<tt/-cpp/. + </itemize> diff --git a/ghc/docs/users_guide/utils.vsgml b/ghc/docs/users_guide/utils.vsgml index 0bc3fe772e9f9865ea823692901f340cf5ea9430..2730f56152e21d40277310a396a7abcf9f7bcd24 100644 --- a/ghc/docs/users_guide/utils.vsgml +++ b/ghc/docs/users_guide/utils.vsgml @@ -66,6 +66,8 @@ that it doesn't understand are simply ignored; this way you can feed your Makefile's standard GHC options to @mkdependHS@ un-filtered. <descrip> +<tag>@-cpp@</tag> Run the C pre-processor over the input files. The + default is not to. <tag>@-D<blah>@</tag> A cpp @#define@; usual meaning. <tag>@-i<dirs>@</tag> Add @<dirs>@ (colon-separated) to list of directories diff --git a/ghc/utils/mkdependHS/mkdependHS.prl b/ghc/utils/mkdependHS/mkdependHS.prl index 2a51a460caa3f60f1b3a9017713548b601e57d61..4d90e200b7b4beed167201ad77b7030a80f4151f 100644 --- a/ghc/utils/mkdependHS/mkdependHS.prl +++ b/ghc/utils/mkdependHS/mkdependHS.prl @@ -35,6 +35,7 @@ mkdependHS-specific options (not between --'s): -w No warnings -f blah Use "blah" as the makefile, rather than "makefile" or "Makefile". + -cpp Wash the input files through cpp(1). -o <osuf> Use <osuf> as the "object file" suffix ( default: o) -s <suf> Make extra dependencies for files with suffix <suf><osuf>; thus, "-o hc -s _a" will @@ -66,6 +67,7 @@ $Warnings = 1; # 1 => warn about duplicate interface files $Dashdashes_seen = 0; $Cpp = ${RAWCPP}; +$Cpp_flag_set = 0; # 1 => run cpp over input files. if ( $ENV{'TMPDIR'} ) { # where to make tmp file names $Tmp_prefix = $ENV{'TMPDIR'} . "/mkdependHS$$"; @@ -235,6 +237,8 @@ sub mangle_command_line_args { } elsif ( /^-D(.*)/ ) { # recognized wherever they occur push(@Defines, $_); + } elsif ( /^-cpp$/ ) { # recognized wherever they occur + $Cpp_flag_set =1; } elsif ( /^-i$/ ) { $Import_dirs = ''; # import path cleared! } elsif ( /^-i(.*)/ ) { @@ -367,10 +371,15 @@ sub slurp_file_for_imports { # we mangle #include's so they will also leave something # behind to indicate the dependency on _them_ - print STDERR "${SED} -e '/^# *include/{p;s/^# *include/!include/;};s/'\\''//g;s/\"//g' $file_to_read | $Cpp $Include_dirs -I$last_seen_dir @Defines |\n" if $Verbose; + local ($open_cmd); + if ($Cpp_flag_set) { + $open_cmd = "${SED} -e '/^# *include/{p;s/^# *include/!include/;};s/'\\''//g;s/\"//g' $file_to_read | $Cpp $Include_dirs -I$last_seen_dir @Defines |"; + } else { + $open_cmd = $file_to_read; + } + print STDERR "$open_cmd\n" if $Verbose; - open(SRCFILE, "${SED} -e '/^# *include/{p;s/^# *include/!include/;};s/'\\''//g;s/\"//g' $file_to_read | $Cpp $Include_dirs -I$last_seen_dir @Defines |") - || die "$Pgm: Can't open $file_to_read: $!\n"; + open(SRCFILE, $open_cmd) || die "$Pgm: Can't open $file_to_read: $!\n"; while (<SRCFILE>) { #