util  Diff

Differences From Artifact [e7dd2b0bcc]:

To Artifact [2596de13fb]:


     7      7   
     8      8   SC = chicken-csc
     9      9   sc-opt = 5
    10     10   sc-flags = $(if $(debug),-d3,-O$(sc-opt))
    11     11   sc = $(SC) $(sc-flags)
    12     12   
    13     13   cc-opt = fast
    14         -cc-flags = $(if $(debug),-g,-O$(cc-opt))
           14  +cc-std = c2x
           15  +cc-flags = $(if $(debug),-g,-O$(cc-opt)) -std=$(cc-std)
    15     16   cc = $(CC) $(cc-flags)
    16     17   
    17     18   post = $(if $(debug),, && strip $@)
    18     19   cc-post = $(post)
    19     20   sc-post = $(post)
    20     21   mc-post = $(post)
    21     22