History log of /src/usr.sbin/perfused/Makefile |
Revision | | Date | Author | Comments |
1.8 |
| 03-Jun-2023 |
lukem | bsd.own.mk: rename GCC_NO_* to CC_WNO_*
Rename compiler-warning-disable variables from GCC_NO_warning to CC_WNO_warning where warning is the full warning name as used by the compiler.
GCC_NO_IMPLICIT_FALLTHRU is CC_WNO_IMPLICIT_FALLTHROUGH
Using the convention CC_compilerflag, where compilerflag is based on the full compiler flag name.
|
1.7 |
| 13-Oct-2019 |
mrg | introduce some common variables for use in GCC warning disables:
GCC_NO_FORMAT_TRUNCATION -Wno-format-truncation (GCC 7/8) GCC_NO_STRINGOP_TRUNCATION -Wno-stringop-truncation (GCC 8) GCC_NO_STRINGOP_OVERFLOW -Wno-stringop-overflow (GCC 8) GCC_NO_CAST_FUNCTION_TYPE -Wno-cast-function-type (GCC 8)
use these to turn off warnings for most GCC-8 complaints. many of these are false positives, most of the real bugs are already commited, or are yet to come.
we plan to introduce versions of (some?) of these that use the "-Wno-error=" form, which still displays the warnings but does not make it an error, and all of the above will be re-considered as either being "fix me" (warning still displayed) or "warning is wrong."
|
1.6 |
| 23-Jan-2016 |
christos | branches: 1.6.16; Define _KERNTYPES for things that need it.
|
1.5 |
| 06-Sep-2012 |
riz | Disable default build of debugging info.
|
1.4 |
| 09-Sep-2011 |
manu | branches: 1.4.2; Serialize access to file size. We already have such a thing in the kernel, where it fixes race for PUFFS filesystems, but we need it again in perfused since FUSE filesystems are allowed to reorder requests.
The huge issue is in the asyncrhonous SETATTR sent by fsync. It is followed by a syncrhnous FSYNC, so if the filesystem does not reorder requests, once the FSYNC returns, we are confident the SETATTR is done. But since FUSE can reorder, we need to implement sync in perfused.
|
1.3 |
| 26-May-2011 |
joerg | Default to -Wno-sign-compare -Wno-pointer-sign for clang. Push -Wno-array-bounds down to the cases that depend on it. Selectively disable warnings for 3rd party software or non-trivial issues to be reviewed later to get clang -Werror to build most of the tree.
|
1.2 |
| 09-May-2011 |
manu | Enable the build of perfused and libperfuse
|
1.1 |
| 25-Aug-2010 |
manu | perfused(8) creates a /dev/fuse socket and performs PUFFS to FUSE relaying. This is still a work in progress.
|
1.4.2.1 |
| 30-Oct-2012 |
yamt | sync with head
|
1.6.16.1 |
| 13-Apr-2020 |
martin | Mostly merge changes from HEAD upto 20200411
|