Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GHC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gesh
GHC
Commits
b982e78c
Commit
b982e78c
authored
24 years ago
by
sven.panne@aedion.de
Browse files
Options
Downloads
Patches
Plain Diff
[project @ 2000-04-13 19:12:17 by panne]
Ooops, forgot one -syslib => -package
parent
c7255390
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ghc/utils/mkdependHS/mkdependHS.prl
+5
-3
5 additions, 3 deletions
ghc/utils/mkdependHS/mkdependHS.prl
with
5 additions
and
3 deletions
ghc/utils/mkdependHS/mkdependHS.prl
+
5
−
3
View file @
b982e78c
...
...
@@ -24,7 +24,7 @@ Options recognised wherever they occur (mkdependHS or GHC):
to search for "import"ed modules
-I<dir> Add <dir> to list of directories to search for
.h files (i.e., usual meaning)
-
syslib
<blah> This program uses this GHC system library; take
-
package
<blah> This program uses this GHC system library; take
appropriate action (e.g., recognise when they are
"import"ing a module from that library).
...
...
@@ -52,7 +52,7 @@ mkdependHS-specific options (not between --'s):
--include-prelude
Regard prelude libraries as unstable, i.e., generate dependencies
on prelude modules. This option is normally only used by the
various system libraries. If a -
syslib
option is used, dependencies
various system libraries. If a -
package
option is used, dependencies
will also be generated on the library's interfaces.
--include-module=<file>
Regard <file> as not "stable"; i.e., generate dependencies
...
...
@@ -230,7 +230,9 @@ sub mangle_command_line_args {
$Import_dirs = "$1:$Import_dirs";
} elsif ( /^-I/ ) {
$Include_dirs .= " $_";
} elsif ( /^-syslib$/ ) {
} elsif ( /^-syslib$/ ) { # deprecated, use -syslib
push(@Syslibs, &grab_arg_arg(*Args,$_,''));
} elsif ( /^-package$/ ) {
push(@Syslibs, &grab_arg_arg(*Args,$_,''));
} elsif ( /^-fglasgow-exts$/ ) {
push(@Syslibs, 'lang');
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment