-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add new flags to output dependencies
Flags following gcc options: -M to output deps only, -MD to output deps while compiling (in .d files), -MP to output phony targets, -MG to keep missing copybooks, -MQ <target> to Makefile-quote target Additional flags specific to GnuCOBOL: -fcopybook-deps outputs only copybook names instead of file paths. -fcopybook-deps also forces -E.
- Loading branch information
Showing
12 changed files
with
588 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,19 @@ | ||
|
||
2024-03-15 Fabrice Le Fessant <[email protected]> | ||
|
||
* cobc.c: add new flags to output dependencies following gcc: -M to | ||
output deps only, -MD to output deps while compiling (in .d files), | ||
-MP to output phony targets, -MG to keep missing copybooks, | ||
-MQ <target> to Makefile-quote target | ||
* flags.def: -fcopybook-deps outputs only copybook names instead | ||
of file paths. -fcopybook-deps also forces -E, -foneline-deps, | ||
-MT=copybooks, disables errors on missing copybooks and removes | ||
output on stdout. | ||
* error.c (print_error_prefix): add cobc_slashify to replace backslashes | ||
by slashes, only if COB_IS_RUNNING_IN_TESTMODE is set. | ||
* typeck.c (check_argument_conformance): check that param is well defined | ||
to prevent a segfault | ||
|
||
2024-02-19 Boris Eng <[email protected]> | ||
|
||
* parser.y (screen_value_clause): replaced basic literals by literals | ||
|
Oops, something went wrong.