Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

All power corrupts, but we need electricity.


devel / comp.lang.xharbour / Re: ChangeLog: 2024-01-03 16:45 UTC-0500 Ron Pinkas <ronpinkas/AT/gmail/com>

SubjectAuthor
* ChangeLog: 2024-01-03 16:45 UTC-0500 Ron Pinkas <ronpinkas/AT/gmail/com>Ron Pinkas
`- Re: ChangeLog: 2024-01-03 16:45 UTC-0500 Ron Pinkas <ronpinkas/AT/gmail/com>Ron Pinkas

1
ChangeLog: 2024-01-03 16:45 UTC-0500 Ron Pinkas <ronpinkas/AT/gmail/com>

<un4kq0$3bh28$2@dont-email.me>

  copy mid

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

  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: ron@ronpinkas.com (Ron Pinkas)
Newsgroups: comp.lang.xharbour
Subject: ChangeLog: 2024-01-03 16:45 UTC-0500 Ron Pinkas <ronpinkas/AT/gmail/com>
Date: Wed, 3 Jan 2024 16:49:51 -0500
Organization: A noiseless patient Spider
Lines: 41
Message-ID: <un4kq0$3bh28$2@dont-email.me>
MIME-Version: 1.0
Injection-Date: Wed, 3 Jan 2024 21:49:52 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="1008cd194afb8017dc669791b2a176d6";
logging-data="3523656"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18NLYVhUYV/5n5KItszrKNLDvqRdAV76GE="
User-Agent: flnews/1.2.0 (for Darwin)
Cancel-Lock: sha1:h+hlC+oMfwaJQQOJ5M1nMik6Gl8=
 by: Ron Pinkas - Wed, 3 Jan 2024 21:49 UTC

2024-01-03 16:45 UTC-0500 Ron Pinkas <ronpinkas/AT/gmail/com>
- bin/find_bc.bat
- bin/find_vc.bat
+ winmake/find_bc.bat
+ winmake/find_vc.bat
* Moved to winmake to avoid cluttering bin
* make_bc.bat
* make_dc.bat
* make_pc.bat
* make_vc.bat
* bin/bld.bat
* bin/bld_bc.bat
* bin/bld_vc.bat
* winmake/makefile.pc
* Modified to use new shared scripts

+ winmake/find_bison.bat
+ winmake/find_pc.bat
+ winmake/found_cc.bat
+ winmake/functions.bat
+ New shared scripts to simplify updates and avoid redundancy

+ winmake/known.bc
+ winmake/known.pc
+ winmake/known.vc
+ New simple files to support auto detection of compilers and their respective paths

/*
Make andd build batch files on Windows have been written from scratch to support
simplified auto detection of compilers and their respective paths. The system
is also shared nott jusst between different compilers but also between make and build
batch files. This allows us to avoid redundancy and simplify updates. New compilers
can be added by simply adding a new known file and a new ssimple find script. Also
new known locations can be added to existing known files to support new versions of
existing compilers, without having to modify the make and build batch files.

Please note that Windows batch files are not very flexible and are somewhat
finicky. The new scripts are not perfect and may need some tweaking. Please
report any issues you may encounter.
*

Re: ChangeLog: 2024-01-03 16:45 UTC-0500 Ron Pinkas <ronpinkas/AT/gmail/com>

<un4l24$3bh28$3@dont-email.me>

  copy mid

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

  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: ron@ronpinkas.com (Ron Pinkas)
Newsgroups: comp.lang.xharbour
Subject: Re: ChangeLog: 2024-01-03 16:45 UTC-0500 Ron Pinkas <ronpinkas/AT/gmail/com>
Date: Wed, 3 Jan 2024 16:54:11 -0500
Organization: A noiseless patient Spider
Lines: 48
Message-ID: <un4l24$3bh28$3@dont-email.me>
References: <un4kq0$3bh28$2@dont-email.me>
MIME-Version: 1.0
Injection-Date: Wed, 3 Jan 2024 21:54:12 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="1008cd194afb8017dc669791b2a176d6";
logging-data="3523656"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/Z+KrEsKcJrmqF3HgRZ9xy34v5C+7yrPU="
User-Agent: flnews/1.2.0 (for Darwin)
Cancel-Lock: sha1:kFwO3NgxMLcG9sW5HBpbSCU7c6A=
 by: Ron Pinkas - Wed, 3 Jan 2024 21:54 UTC

Ron Pinkas wrote:
>
> 2024-01-03 16:45 UTC-0500 Ron Pinkas <ronpinkas/AT/gmail/com>
> - bin/find_bc.bat
> - bin/find_vc.bat
> + winmake/find_bc.bat
> + winmake/find_vc.bat
> * Moved to winmake to avoid cluttering bin
>
> * make_bc.bat
> * make_dc.bat
> * make_pc.bat
> * make_vc.bat
> * bin/bld.bat
> * bin/bld_bc.bat
> * bin/bld_vc.bat
> * winmake/makefile.pc
> * Modified to use new shared scripts
>
> + winmake/find_bison.bat
> + winmake/find_pc.bat
> + winmake/found_cc.bat
> + winmake/functions.bat
> + New shared scripts to simplify updates and avoid redundancy
>
> + winmake/known.bc
> + winmake/known.pc
> + winmake/known.vc
> + New simple files to support auto detection of compilers and their respective paths
>
> /*
> Make andd build batch files on Windows have been written from scratch to support
> simplified auto detection of compilers and their respective paths. The system
> is also shared nott jusst between different compilers but also between make and build
> batch files. This allows us to avoid redundancy and simplify updates. New compilers
> can be added by simply adding a new known file and a new ssimple find script. Also
> new known locations can be added to existing known files to support new versions of
> existing compilers, without having to modify the make and build batch files.
>
> Please note that Windows batch files are not very flexible and are somewhat
> finicky. The new scripts are not perfect and may need some tweaking. Please
> report any issues you may encounter.
> *

This also allows transparent support of multiple Compilers in the
same shell. Both make and build scripts can chang compilers at any
point.

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor