Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
b3124fac
Commit
b3124fac
authored
Mar 16, 2002
by
Neil Booth
Committed by
Neil Booth
Mar 16, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cppinit.c: Revert -MD removal.
From-SVN: r50884
parent
121449b6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
+21
-0
gcc/ChangeLog
+4
-0
gcc/cppinit.c
+17
-0
No files found.
gcc/ChangeLog
View file @
b3124fac
2002-03-16 Neil Booth <neil@daikokuya.demon.co.uk>
* cppinit.c: Revert -MD removal.
2002-03-16 Stephane Carrez <Stephane.Carrez@worldnet.fr>
2002-03-16 Stephane Carrez <Stephane.Carrez@worldnet.fr>
* config/m68hc11/m68hc11.c (m68hc11_override_options): Don't use
* config/m68hc11/m68hc11.c (m68hc11_override_options): Don't use
...
...
gcc/cppinit.c
View file @
b3124fac
...
@@ -1175,9 +1175,11 @@ new_pending_directive (pend, text, handler)
...
@@ -1175,9 +1175,11 @@ new_pending_directive (pend, text, handler)
DEF_OPT("H", 0, OPT_H) \
DEF_OPT("H", 0, OPT_H) \
DEF_OPT("I", no_dir, OPT_I) \
DEF_OPT("I", no_dir, OPT_I) \
DEF_OPT("M", 0, OPT_M) \
DEF_OPT("M", 0, OPT_M) \
DEF_OPT("MD", no_fil, OPT_MD) \
DEF_OPT("MF", no_fil, OPT_MF) \
DEF_OPT("MF", no_fil, OPT_MF) \
DEF_OPT("MG", 0, OPT_MG) \
DEF_OPT("MG", 0, OPT_MG) \
DEF_OPT("MM", 0, OPT_MM) \
DEF_OPT("MM", 0, OPT_MM) \
DEF_OPT("MMD", no_fil, OPT_MMD) \
DEF_OPT("MP", 0, OPT_MP) \
DEF_OPT("MP", 0, OPT_MP) \
DEF_OPT("MQ", no_tgt, OPT_MQ) \
DEF_OPT("MQ", no_tgt, OPT_MQ) \
DEF_OPT("MT", no_tgt, OPT_MT) \
DEF_OPT("MT", no_tgt, OPT_MT) \
...
@@ -1587,6 +1589,21 @@ cpp_handle_option (pfile, argc, argv, ignore)
...
@@ -1587,6 +1589,21 @@ cpp_handle_option (pfile, argc, argv, ignore)
deps_add_target
(
pfile
->
deps
,
arg
,
opt_code
==
OPT_MQ
);
deps_add_target
(
pfile
->
deps
,
arg
,
opt_code
==
OPT_MQ
);
break
;
break
;
/* -MD and -MMD for cpp0 are deprecated and undocumented
(use -M or -MM with -MF instead), and probably should be
removed with the next major GCC version. For the moment
we allow these for the benefit of Automake 1.4, which
uses these when dependency tracking is enabled. Automake
1.5 will fix this. */
case
OPT_MD
:
CPP_OPTION
(
pfile
,
print_deps
)
=
2
;
CPP_OPTION
(
pfile
,
deps_file
)
=
arg
;
break
;
case
OPT_MMD
:
CPP_OPTION
(
pfile
,
print_deps
)
=
1
;
CPP_OPTION
(
pfile
,
deps_file
)
=
arg
;
break
;
case
OPT_A
:
case
OPT_A
:
if
(
arg
[
0
]
==
'-'
)
if
(
arg
[
0
]
==
'-'
)
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment