Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

And on the seventh day, He exited from append mode.


devel / comp.lang.xharbour / Re: A problem with MSC32 2022

SubjectAuthor
* A problem with MSC32 2022Enrico Maria Giordano
`* Re: A problem with MSC32 2022Ron Pinkas
 `- Re: A problem with MSC32 2022Enrico Maria Giordano

1
A problem with MSC32 2022

<umjepr$b1np$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=18222&group=comp.lang.xharbour#18222

  copy link   Newsgroups: comp.lang.xharbour
Path: i2pn2.org!i2pn.org!news.swapon.de!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: e.m.giordano@emagsoftware.it (Enrico Maria Giordano)
Newsgroups: comp.lang.xharbour
Subject: A problem with MSC32 2022
Date: Thu, 28 Dec 2023 10:23:09 +0100
Organization: A noiseless patient Spider
Lines: 40
Message-ID: <umjepr$b1np$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Thu, 28 Dec 2023 09:23:07 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="9822b95df9fb2b60826f33095ddd4934";
logging-data="362233"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19DErzXsPfrn4Z2LYz0WmPr"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:Ds5Fme3KOwfr0HfXYVbvLfskyao=
Content-Language: it
 by: Enrico Maria Giordan - Thu, 28 Dec 2023 09:23 UTC

I wish to use -MD compiler switch, so I define

SET USE_MSVCRT=1

The result error message is:

WARNING: __MSC__ is not defined
Compiling with -MD required __MSC__ defined
__MSC__ must be set as follows:
__MSC__=6 -> MSVC 6 Visual Studio 2000 (_MSC_VER=1200)
__MSC__=7 -> MSVC 7 Visual Studio 2003 (_MSC_VER=1300)
__MSC__=71 -> MSVC 71 MS Driver Tool Kit (_MSC_VER=1310)
__MSC__=8 -> MSVC 8 Visual Studio 2005 (_MSC_VER=1400)
__MSC__=9 -> MSVC 9 Visual Studio 2008 (_MSC_VER=1500)
__MSC__=10 -> MSVC 10 Visual Studio 2010 (_MSC_VER=1600)
__MSC__=11 -> MSVC 11 Visual Studio 2012 (_MSC_VER=1700)
__MSC__=12 -> MSVC 12 Visual Studio 2013 (_MSC_VER=1800)
__MSC__=14 -> MSVC 14 Visual Studio 2015 (_MSC_VER=1900)
__MSC__=15 -> MSVC 15 Visual Studio 2017 (_MSC_VER=1911-1920)
__MSC__=16 -> MSVC 16 Visual Studio 2019 (_MSC_VER=1921-1929)
__MSC__=17 -> MSVC 17 Visual Studio 2022 (_MSC_VER=1930-1935)

My version is 1932 so I add

SET __MSC__=71

And the result is tons of

cl : Command line warning D9002 : ignoring unknown option '-Op'
cl : Command line warning D9002 : ignoring unknown option '-G7'

Something to be fixed or my fault?

--
Enrico Maria Giordano

http://www.emagsoftware.it
http://www.emagsoftware.it/emgmusic
http://www.emagsoftware.it/spectrum
http://www.emagsoftware.it/tbosg

Re: A problem with MSC32 2022

<umk6k8$e5j1$2@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=18227&group=comp.lang.xharbour#18227

  copy link   Newsgroups: comp.lang.xharbour
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: ron@ronpinkas.com (Ron Pinkas)
Newsgroups: comp.lang.xharbour
Subject: Re: A problem with MSC32 2022
Date: Thu, 28 Dec 2023 11:09:44 -0500
Organization: A noiseless patient Spider
Lines: 42
Message-ID: <umk6k8$e5j1$2@dont-email.me>
References: <umjepr$b1np$1@dont-email.me>
MIME-Version: 1.0
Injection-Date: Thu, 28 Dec 2023 16:09:44 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="1d62723cf800a7bdee7455f69e937646";
logging-data="464481"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18J0YJ7a6YyyOJYBYwfHAUw2CBV2t0M8NM="
User-Agent: flnews/1.2.0 (for Darwin)
Cancel-Lock: sha1:JdRjpL71VjlCLX5OpEmTIzmviT0=
 by: Ron Pinkas - Thu, 28 Dec 2023 16:09 UTC

Enrico Maria Giordano wrote:
>
> I wish to use -MD compiler switch, so I define
>
> SET USE_MSVCRT=1
>
> The result error message is:
>
> WARNING: __MSC__ is not defined
> Compiling with -MD required __MSC__ defined
> __MSC__ must be set as follows:
> __MSC__=6 -> MSVC 6 Visual Studio 2000 (_MSC_VER=1200)
> __MSC__=7 -> MSVC 7 Visual Studio 2003 (_MSC_VER=1300)
> __MSC__=71 -> MSVC 71 MS Driver Tool Kit (_MSC_VER=1310)
> __MSC__=8 -> MSVC 8 Visual Studio 2005 (_MSC_VER=1400)
> __MSC__=9 -> MSVC 9 Visual Studio 2008 (_MSC_VER=1500)
> __MSC__=10 -> MSVC 10 Visual Studio 2010 (_MSC_VER=1600)
> __MSC__=11 -> MSVC 11 Visual Studio 2012 (_MSC_VER=1700)
> __MSC__=12 -> MSVC 12 Visual Studio 2013 (_MSC_VER=1800)
> __MSC__=14 -> MSVC 14 Visual Studio 2015 (_MSC_VER=1900)
> __MSC__=15 -> MSVC 15 Visual Studio 2017 (_MSC_VER=1911-1920)
> __MSC__=16 -> MSVC 16 Visual Studio 2019 (_MSC_VER=1921-1929)
> __MSC__=17 -> MSVC 17 Visual Studio 2022 (_MSC_VER=1930-1935)
>
> My version is 1932 so I add
>
> SET __MSC__=71
>
> And the result is tons of
>
> cl : Command line warning D9002 : ignoring unknown option '-Op'
> cl : Command line warning D9002 : ignoring unknown option '-G7'
>
> Something to be fixed or my fault?
>

The __MSC__ message has been troubling me for some time now, and I
recently added SET __MSC__ to auto dettection in find_vc.bat but the
message persisted and had higher priorities to addresss. Maybe it
expects a -D__MSC__=17 - I need to research more.

The -Op and -G7 are for older versions and should be removed.

Re: A problem with MSC32 2022

<umk73l$ebns$2@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=18229&group=comp.lang.xharbour#18229

  copy link   Newsgroups: comp.lang.xharbour
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: e.m.giordano@emagsoftware.it (Enrico Maria Giordano)
Newsgroups: comp.lang.xharbour
Subject: Re: A problem with MSC32 2022
Date: Thu, 28 Dec 2023 17:17:58 +0100
Organization: A noiseless patient Spider
Lines: 21
Message-ID: <umk73l$ebns$2@dont-email.me>
References: <umjepr$b1np$1@dont-email.me> <umk6k8$e5j1$2@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Thu, 28 Dec 2023 16:17:57 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="9822b95df9fb2b60826f33095ddd4934";
logging-data="470780"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/HYRQ6nFbW6UBauLv+19yj"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:27OmY3gu9d1+TbDRcyQNw7VeCLg=
In-Reply-To: <umk6k8$e5j1$2@dont-email.me>
Content-Language: it
 by: Enrico Maria Giordan - Thu, 28 Dec 2023 16:17 UTC

Il 28/12/2023 17:09, Ron Pinkas ha scritto:

>> SET __MSC__=71
>
> The __MSC__ message has been troubling me for some time now, and I
> recently added SET __MSC__ to auto dettection in find_vc.bat but the
> message persisted and had higher priorities to addresss. Maybe it
> expects a -D__MSC__=17

Ops, my fault! Ok, seems to working fine with 17. :-)

--
Enrico Maria Giordano

http://www.emagsoftware.it
http://www.emagsoftware.it/emgmusic
http://www.emagsoftware.it/spectrum
http://www.emagsoftware.it/tbosg

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor