Skip to content

Commit

Permalink
Remove a warning message from cobc
Browse files Browse the repository at this point in the history
When compiled with _FORTIFY_SOURCE (default for Arch Linux), but not with optimization enabled, cobc outputs a warning message. Adding -O2 removes this message and should be fine for other cases as well.
  • Loading branch information
xyproto committed Nov 4, 2013
1 parent 9d3c2c6 commit e93b339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ QR.coffee: QR.cob
@echo "## Cobol -> CoffeeScript ##"
@echo "#############################"
@echo
cobc -x QR.cob
cobc -O2 -x QR.cob
./QR > QR.coffee

QR.lisp: QR.coffee
Expand Down

0 comments on commit e93b339

Please sign in to comment.