Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add dependencies options and -fcopybook-deps #109

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ NEWS - user visible changes -*- outline -*-
** New option -fdefault-file-colseq to specify the default
file collating sequence

** New options -M, -MP, -MG, -MD and -MQ to output COPY dependencies
to a file (see "Dependencies options" in the GnuCOBOL manual)

* More notable changes

** execution times were significantly reduced for the following:
Expand Down
14 changes: 14 additions & 0 deletions cobc/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
* typeck.c (cb_emit_move, cb_emit_set_to): do not check for incompatible
data if no receiver field is of category numeric or numeric edited

2024-09-23 David Declerck <[email protected]>

* pplex.l (cb_text_list): prevent duplicates

2024-08-28 David Declerck <[email protected]>

* tree.c (char_to_precedence_idx, get_char_type_description, valid_char_order):
Expand Down Expand Up @@ -123,6 +127,16 @@
* codegen.c: handle profiling code generation under the
cb_flag_prof guard

2024-03-15 Fabrice Le Fessant <[email protected]>

* cobc.c, help.c, pplex.l: 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 ; add -fcopybook-deps to
output 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

lefessan marked this conversation as resolved.
Show resolved Hide resolved
2024-02-19 Boris Eng <[email protected]>

* parser.y (screen_value_clause): replaced basic literals by literals
Expand Down
Loading
Loading