Up to [cvs.NetBSD.org] / src / tools
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.5 / (download) - annotate - [select for diffs], Thu Feb 3 20:32:38 2022 UTC (11 months, 4 weeks ago) by rillig
Branch: MAIN
CVS Tags: netbsd-10-base,
netbsd-10,
HEAD
Changes since 1.4: +9 -14
lines
Diff to previous 1.4 (colored)
tools: allow tools to use C99 The previous requirement was that tools should only use C89 features. Several tools did not follow this rule for years. Since nobody complained about not being able to build NetBSD in a C89 environment, drop that rule, now requiring C99. https://mail-index.netbsd.org/tech-toolchain/2022/01/30/msg004091.html
Revision 1.4 / (download) - annotate - [select for diffs], Sat Jan 3 13:20:11 2015 UTC (8 years, 1 month ago) by apb
Branch: MAIN
CVS Tags: prg-localcount2-base3,
prg-localcount2-base2,
prg-localcount2-base1,
prg-localcount2-base,
prg-localcount2,
phil-wifi-base,
phil-wifi-20200421,
phil-wifi-20200411,
phil-wifi-20200406,
phil-wifi-20191119,
phil-wifi-20190609,
phil-wifi,
pgoyette-localcount-base,
pgoyette-localcount-20170426,
pgoyette-localcount-20170320,
pgoyette-localcount-20170107,
pgoyette-localcount-20161104,
pgoyette-localcount-20160806,
pgoyette-localcount-20160726,
pgoyette-localcount,
pgoyette-compat-merge-20190127,
pgoyette-compat-base,
pgoyette-compat-20190127,
pgoyette-compat-20190118,
pgoyette-compat-1226,
pgoyette-compat-1126,
pgoyette-compat-1020,
pgoyette-compat-0930,
pgoyette-compat-0906,
pgoyette-compat-0728,
pgoyette-compat-0625,
pgoyette-compat-0521,
pgoyette-compat-0502,
pgoyette-compat-0422,
pgoyette-compat-0415,
pgoyette-compat-0407,
pgoyette-compat-0330,
pgoyette-compat-0322,
pgoyette-compat-0315,
pgoyette-compat,
perseant-stdc-iso10646-base,
perseant-stdc-iso10646,
netbsd-9-base,
netbsd-9-3-RELEASE,
netbsd-9-2-RELEASE,
netbsd-9-1-RELEASE,
netbsd-9-0-RELEASE,
netbsd-9-0-RC2,
netbsd-9-0-RC1,
netbsd-9,
netbsd-8-base,
netbsd-8-2-RELEASE,
netbsd-8-1-RELEASE,
netbsd-8-1-RC1,
netbsd-8-0-RELEASE,
netbsd-8-0-RC2,
netbsd-8-0-RC1,
netbsd-8,
matt-nb8-mediatek-base,
matt-nb8-mediatek,
localcount-20160914,
is-mlppp-base,
is-mlppp,
cjep_sun2x-base1,
cjep_sun2x-base,
cjep_sun2x,
cjep_staticlib_x-base1,
cjep_staticlib_x-base,
cjep_staticlib_x,
bouyer-socketcan-base1,
bouyer-socketcan-base,
bouyer-socketcan
Changes since 1.3: +15 -8
lines
Diff to previous 1.3 (colored)
Update documentation about tools being restricted to C89 (or not). It's not practical for the C89 restriction to be maintained for compilers, but it is still desirable for most tools. The "long long" data type is in wide use despite not being in C89. C99 library features (as opposed to language features) can often be added to the compat framework when the need becomes apparent.
Revision 1.3 / (download) - annotate - [select for diffs], Tue Sep 30 07:34:50 2014 UTC (8 years, 4 months ago) by apb
Branch: MAIN
Changes since 1.2: +62 -35
lines
Diff to previous 1.2 (colored)
Say that tools should use C89, not C99; Say that tools may use HAVE_NBTOOL_CONFIG_H to conditionally exclude features. Many other small changes.
Revision 1.2 / (download) - annotate - [select for diffs], Wed Sep 24 16:17:39 2014 UTC (8 years, 4 months ago) by apb
Branch: MAIN
Changes since 1.1: +5 -1
lines
Diff to previous 1.1 (colored)
It is usually easy to add new definitions to src/tools/compat, and that is usually better than adding compatibility definitions to individual tools.
Revision 1.1 / (download) - annotate - [select for diffs], Mon Sep 1 13:50:15 2014 UTC (8 years, 5 months ago) by apb
Branch: MAIN
Add tools/README, to collect hints like how to use .if defined(HOSTPROG) and #if HAVE_NBTOOL_CONFIG_H #include "nbtool_config.h" #endif /* HAVE_NBTOOL_CONFIG_H */