delorie.com/archives/browse.cgi   search  
Mail Archives: djgpp/2021/06/30/11:14:35

X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f
X-Recipient: djgpp AT delorie DOT com
ARC-Seal: i=1; a=rsa-sha256; t=1625066063; cv=none;
d=zohomail.com; s=zohoarc;
b=UO7eGcOHqNvm87pWISmXunT+1hhDlyBt2nf9Qx4TxDqlyJInWayqPxM6bc5/viG1ynjy8EuV/zuT2RmLV7X/aemUTkWzAZqojx8hlt67lw1eGQJ68vBjfBlh1BfJ3z4Rl3u0kNkndY4p1vyvmbqipAyiiQXt/MNLBLrM2eXS/t4=
ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc;
t=1625066063; h=Content-Type:Cc:Date:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:To;
bh=D4yj9upHDNLkKJEnGu0hraUhd72F9ErnZtwoYvHSyWk=;
b=CDMONqcVVxOr4mgUCTc7MWWR8mB4nerVaNlZxRImE89NNUvtTaSrD6vnzxnB1Orc7FqIB2x41wYIn8ov3qVAzNxoaRQKO3k8dnJxd2sVaQ1EDZTn6E3XekoZTSn+Jd2S8MUjCNx6DwHRoQbGCPlgmjwYNX773vIjPB2p3vpyVB8=
ARC-Authentication-Results: i=1; mx.zohomail.com;
dkim=pass header.i=zoho.com;
spf=pass smtp.mailfrom=dufresnep AT zoho DOT com;
dmarc=pass header.from=<dufresnep AT zoho DOT com>
DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws;
s=zapps768; d=zoho.com;
h=date:from:to:cc:message-id:in-reply-to:references:subject:mime-version:content-type:user-agent;
b=ocGy22KCRtYdOAo3VE1clUPZiaHkyWajXgpNo9I/nkC3NNCMPLzJ11CqSF99XwFmFVuwuJVoWv//
Vc4CEyPDQSQcDfPOGwtrPSBrLwdO0cidDFJtqFMDGwmuCfY0tjFY
X-Original-DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1625066063;
s=zm2020; d=zoho.com; i=dufresnep AT zoho DOT com;
h=Date:From:To:Cc:Message-Id:In-Reply-To:References:Subject:MIME-Version:Content-Type;
bh=D4yj9upHDNLkKJEnGu0hraUhd72F9ErnZtwoYvHSyWk=;
b=o2go9ZtQxzs9VBwlTtqkRa/1HlxDOyAh99yHK1K+/xpOhljyDb5Vg/qPtqlngiKn
J6uSp0UIYV9vD8pvv5Ckg0u8uaK1BuRVVHo5XjUZzh6c0lKeNrDKC/h98bqsk1T7ReT
dr4ycewyA0S5cRfn0XLACxmYyGp6UiiawtegIfDc=
Date: Wed, 30 Jun 2021 11:14:17 -0400
From: "Paul Dufresne (dufresnep AT zoho DOT com) [via djgpp AT delorie DOT com]" <djgpp AT delorie DOT com>
To: "freedos-devel" <freedos-devel AT lists DOT sourceforge DOT net>
Cc: "djgpp" <djgpp AT delorie DOT com>
Message-Id: <17a5d7c2ef2.f3854e1e6482.8362274056158173047@zoho.com>
In-Reply-To: <17a4f739486.10f49065955874.8303595826833934174@zoho.com>
References: <17a309c6725 DOT ee2b33335838 DOT 5210672258564129766 AT zoho DOT com> <CAN1+P_3bouS5PbTdc6jJBKW=zdabEE2-zy5c1F=jR+F+3Tz0eA AT mail DOT gmail DOT com> <17a30b8508b DOT eceb84066270 DOT 6146636058200994488 AT zoho DOT com> <17a49890ca6 DOT 123f188ed46443 DOT 7177863653080197011 AT zoho DOT com> <17a4a690e82 DOT ad5bda6d47674 DOT 7543348174997411766 AT zoho DOT com> <17a4f739486 DOT 10f49065955874 DOT 8303595826833934174 AT zoho DOT com>
Subject: cpp -remap Enable special code to work around file systems which
only permit very short file names, such as MS-DOS.
MIME-Version: 1.0
Importance: Medium
User-Agent: Zoho Mail
X-Mailer: Zoho Mail
Reply-To: djgpp AT delorie DOT com
Errors-To: nobody AT delorie DOT com
X-Mailing-List: djgpp AT delorie DOT com
X-Unsubscribes-To: listserv AT delorie DOT com

------=_Part_17767_524367577.1625066057458
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

While reading by mistake https://gcc.gnu.org/onlinedocs/cpp/Invocation.html

(I had searched for gcc invocation)

So this is the preprocessor (to gcc).



I noted these parameters that can seems usefull for FreeDOS and less for DJ=
GPP:



-remap

Enable special code to work around file systems which only permit very
short file names, such as MS-DOS.


-fexec-charset=3Dcharset

Set the execution character set, used for string and character
constants.  The default is UTF-8. charset can be any encoding
supported by the system=E2=80=99s iconv library routine.


-finput-charset=3Dcharset

Set the input character set, used for translation from the character
set of the input file to the source character set used by GCC.  If the
locale does not specify, or GCC cannot get this information from the
locale, the default is UTF-8.  This can be overridden by either the locale
or this command-line option.  Currently the command-line option takes
precedence if there=E2=80=99s a conflict. charset can be any encoding
supported by the system=E2=80=99s iconv library routine.
------=_Part_17767_524367577.1625066057458
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head>=
<meta content=3D"text/html;charset=3DUTF-8" http-equiv=3D"Content-Type"></h=
ead><body ><div style=3D"font-family: Verdana, Arial, Helvetica, sans-serif=
; font-size: 10pt;"><div>While reading by mistake <a target=3D"_blank" href=
=3D"https://gcc.gnu.org/onlinedocs/cpp/Invocation.html">https://gcc.gnu.org=
/onlinedocs/cpp/Invocation.html</a><br></div><div>(I had searched for gcc i=
nvocation)<br></div><div>So this is the preprocessor (to gcc).<br></div><di=
v><br></div><div>I noted these parameters that can seems usefull for FreeDO=
S and less for DJGPP:<br></div><div><br></div><dt><code>-remap</code><br></=
dt><dd><p>Enable special code to work around file systems which only permit=
 very
short file names, such as MS-DOS.<br></p></dd><dt><code>-fexec-charset=3D<v=
ar>charset</var></code><br></dt><dd><p>Set the execution character set, use=
d for string and character
constants.  The default is UTF-8. <var>charset</var> can be any encoding
supported by the system=E2=80=99s <code>iconv</code> library routine.<br></=
p></dd><dt><code>-finput-charset=3D<var>charset</var></code><br></dt><dd><p=
>Set the input character set, used for translation from the character
set of the input file to the source character set used by GCC.  If the
locale does not specify, or GCC cannot get this information from the
locale, the default is UTF-8.  This can be overridden by either the locale
or this command-line option.  Currently the command-line option takes
precedence if there=E2=80=99s a conflict. <var>charset</var> can be any enc=
oding
supported by the system=E2=80=99s <code>iconv</code> library routine.<br></=
p></dd><div><br></div></div><br></body></html>
------=_Part_17767_524367577.1625066057458--

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019