/usr/bin/winegcc-development is in wine64-development-tools 3.6-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | #!/bin/sh -e
name=$(basename $0 | cut -d- -f1)
# wineg++ fails to find winebuild in Wine's bindir
# See https://bugs.winehq.org/show_bug.cgi?id=40245
if test -z "$WINEBUILD"; then
export WINEBUILD="/usr/lib/wine-development/winebuild"
fi
exec /usr/lib/wine-development/$name $@
|