The /etc/msystem script sources /etc/msystem.d/${MSYSTEM,,} (but using
only POSIX shell features rather than a bash-ism to lower-case since
/etc/msystem is included in /etc/profile, so may be used by a non-bash
shell). /usr/bin/shell validates an MSYSTEM by checking for the
existence of that file.
8 lines
290 B
Plaintext
8 lines
290 B
Plaintext
MSYSTEM_PREFIX='/mingw32'
|
|
MSYSTEM_CARCH='i686'
|
|
MSYSTEM_CHOST='i686-w64-mingw32'
|
|
MINGW_CHOST="${MSYSTEM_CHOST}"
|
|
MINGW_PREFIX="${MSYSTEM_PREFIX}"
|
|
MINGW_PACKAGE_PREFIX="mingw-w64-${MSYSTEM_CARCH}"
|
|
export MSYSTEM_PREFIX MSYSTEM_CARCH MSYSTEM_CHOST MINGW_CHOST MINGW_PREFIX MINGW_PACKAGE_PREFIX
|