Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Did the E3033 problem get resolved?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 1 - 25 of 50 - Collapse all  -  Translate all to Translated (View all originals)   Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
W. eWatson  
View profile  
 More options Nov 4 2011, 1:08 am
Newsgroups: openwatcom.users.fortran
From: "W. eWatson" <wolftra...@invalid.com>
Date: Thu, 03 Nov 2011 22:08:23 -0700
Local: Fri, Nov 4 2011 1:08 am
Subject: Did the E3033 problem get resolved?
usr1 posted some time ago that he experienced a problem with creating a
library, and combining it with a main program.  The relevant part from
the long thread here I think is this:
==================
You could put the subroutines in a library thus
wfl386 /c sub1.for
wfl386 /c sub2.for
wlib mylib.lib +sub1.obj +sub2.obj

Then compile and link mainp.for to the library
wfl386 mainp.for mylib.lib
==================
(BTW, what's the /c for?

I wrote a small fortran program that contained about 10 lines of code
and another for a subroutine. Using the IDE, I successfully executed the
program. There was no obvious way there to create a lib for the
subroutine, so I tried the method above. All went well until I executed
the wlf386 command. I got the E3033 error message and a complaint about
"Error: ... line 4:directive error near librarymylib.lib". That was
followed by "Error: linker returned a bad status"

I found a description for 3033, MSG 2033,3033 directive error near ’%s.
  Whatever %s means?

Later others thought it might be a bug. Someone suggested using
wfc386/wlink as a workaround, and that ended the thread.

So what is the right answer? wfc386/link mainp.for mylib.lib


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "BTW, what's the /c for -- Re: Did the E3033 problem get resolved?" by Kevin G. Rhoads
Kevin G. Rhoads  
View profile  
 More options Nov 4 2011, 11:40 am
Newsgroups: openwatcom.users.fortran
From: "Kevin G. Rhoads" <kgrho...@alum.mit.edu>
Date: Fri, 04 Nov 2011 11:40:35 -0400
Local: Fri, Nov 4 2011 11:40 am
Subject: BTW, what's the /c for -- Re: Did the E3033 problem get resolved?
...

>wfl386 /c sub1.for
...
>(BTW, what's the /c for?

CL is C-compile and Link, FL is Fortran-compile and Link
WCL is Watcom C-compile and Link, WFL is Watcom Fortran-compile and Link
WCL386 is Watcom C-compile and Link (32 bit for 386 and above)
and, finally,
WFL386 is Watcom Fortran-compile and Link (32 bit for 386 and above)

If you just want to compile you either use the /c (compile only) option OR
use a different tool (such as WFC386 (Watcom Fortran-Compile (32 bit)))


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Did the E3033 problem get resolved?" by dpb
dpb  
View profile  
 More options Nov 4 2011, 2:00 pm
Newsgroups: openwatcom.users.fortran
From: dpb <n...@non.net>
Date: Fri, 04 Nov 2011 13:00:29 -0500
Local: Fri, Nov 4 2011 2:00 pm
Subject: Re: Did the E3033 problem get resolved?
On 11/4/2011 12:08 AM, W. eWatson wrote:
...

> You could put the subroutines in a library thus
> wfl386 /c sub1.for
> wfl386 /c sub2.for
> wlib mylib.lib +sub1.obj +sub2.obj

> Then compile and link mainp.for to the library
> wfl386 mainp.for mylib.lib
> ==================
> (BTW, what's the /c for?

Do you _never_ read the help files?  Or, execute

wfl386 |more

...

> and another for a subroutine. Using the IDE, I successfully executed the
> program. There was no obvious way there to create a lib for the
> subroutine,...

I've told you how to do this several times before, as well, and it's
also in the tutorial you didn't like.

Create a new project for the library you want to make.  The IDE will
prompt for the image type to build; select "Lib".  Then you reference
that library in whatever project(s) need it just like the libraries are
referenced in the "kitchen" tutorial.

It's the same principle as used in Visual Studio w/ only a very slightly
different interface.

> ... so I tried the method above. All went well until I executed
> the wlf386 command. I got the E3033 error message and a complaint about
> "Error: ... line 4:directive error near librarymylib.lib". That was
> followed by "Error: linker returned a bad status"
...
> Later others thought it might be a bug. Someone suggested using
> wfc386/wlink as a workaround, and that ended the thread.

> So what is the right answer? wfc386/link mainp.for mylib.lib

...

It is a bug.  Did a test here.  Built a test app and library
testfor.for, testlib.lib

The directive file generated was

system nt
name testfor
file testfor.obj
librarytestlib.lib

Note there's a missing space on the library directive--it should be

library testlib.lib

The same under Watcom V11 works correctly so this somehow got introduced
into the current (or an earlier and is still here) OW build.  :(

wfc386 and wlink will work.

For the above

wfc386 testfor.for
wfc385 testlib.lib
wlib testlib +testlib.obj
wlink system nt name testfor file testfor[.obj] library testfor[.lib]

Normally one makes a make file or uses a batch file rather than all
manually, of course.

I didn't do the IDE version...

--


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "BTW, what's the /c for -- Re: Did the E3033 problem get resolved?" by dpb
dpb  
View profile  
 More options Nov 4 2011, 2:10 pm
Newsgroups: openwatcom.users.fortran
From: dpb <n...@non.net>
Date: Fri, 04 Nov 2011 13:10:22 -0500
Local: Fri, Nov 4 2011 2:10 pm
Subject: Re: BTW, what's the /c for -- Re: Did the E3033 problem get resolved?
On 11/4/2011 10:40 AM, Kevin G. Rhoads wrote:
> ....
>> wfl386 /c sub1.for
> ....

...

> WFL386 is Watcom Fortran-compile and Link (32 bit for 386 and above)

...

Kevin, note that the E3033 is a real problem in wfl386 in OW 1.9, though.

The .lnk file generated by wfl386 now is missing a space on the library
directive line between the directive and the file name.  This causes the
link step to fail.

It is a bug introduced somewhere along the way in OW builds--I had
continued to use Watcom V11.6 until trying to see if could lead our
friend here out of the wilderness I did download V1.9 of OW.  I have
just confirmed (see other longer post) that it does the same thing here.

Can't see how that got past any regression testing into a release build...

--


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Did the E3033 problem get resolved?" by dpb
dpb  
View profile  
 More options Nov 4 2011, 4:03 pm
Newsgroups: openwatcom.users.fortran
From: dpb <n...@non.net>
Date: Fri, 04 Nov 2011 15:03:24 -0500
Local: Fri, Nov 4 2011 4:03 pm
Subject: Re: Did the E3033 problem get resolved?
On 11/4/2011 12:08 AM, W. eWatson wrote:
...

> Then compile and link mainp.for to the library
> wfl386 mainp.for mylib.lib
...
> the wlf386 command. I got the E3033 error message and a complaint about
> "Error: ... line 4:directive error near librarymylib.lib"....

BTW, the clue as to what went wrong is pretty easy to spot--the
"directive error near librarymylib.lib" has the library directive and
your requested library run together as noted before.

You can see this if you use the -FD switch to save the created .lnk
directive file (that otherwise is automagically deleted) and then look
at it as I did in the other posting.

If there isn't anything about a patch at the OW site or somebody around
to make a corrected rebuild in the short term, if you'll provide a valid
addy I'll be glad to forward the wfl386 executable from the V11 build
that works.  I don't know for certain it will work w/ the OW
distribution -- well, let's see...ren, copy, wfl386...voila!!

Putting that version of wfl386.exe in the OWATCOM\BINNT directory
allowed to use it to build an executable compiled from a main .for and
linking w/ a .lib file w/o the E3033 error.  Since Watcom is defunct and
passed on to OW, I don't see any problem in allowing the executable to
be used to get around a problem caused by some update build in the OW
distribution.

--


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
dpb  
View profile  
 More options Nov 4 2011, 4:24 pm
Newsgroups: openwatcom.users.fortran
From: dpb <n...@non.net>
Date: Fri, 04 Nov 2011 15:24:43 -0500
Local: Fri, Nov 4 2011 4:24 pm
Subject: Re: Did the E3033 problem get resolved?
On 11/4/2011 1:00 PM, dpb wrote:
...

> wfc386 and wlink will work.

> For the above

> wfc386 testfor.for
> wfc385 testlib.lib

Dang typos... :(  Above should be

wfc386 testlib.for

of course, to compile the library source before putting the object file
into the library.

> wlib testlib +testlib.obj
> wlink system nt name testfor file testfor[.obj] library testfor[.lib]

--

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "BTW, what's the /c for -- Re: Did the E3033 problem get resolved?" by Kevin G. Rhoads
Kevin G. Rhoads  
View profile  
 More options Nov 4 2011, 4:47 pm
Newsgroups: openwatcom.users.fortran
From: "Kevin G. Rhoads" <kgrho...@alum.mit.edu>
Date: Fri, 04 Nov 2011 16:47:57 -0400
Local: Fri, Nov 4 2011 4:47 pm
Subject: Re: BTW, what's the /c for -- Re: Did the E3033 problem get resolved?

>Kevin, note that the E3033 is a real problem in wfl386 in OW 1.9, though.

OK - I wasn't commenting on that as I had no experience to offer on that matter.

It is good that someone can confirm the real issue there.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Did the E3033 problem get resolved?" by Hans-Bernhard Bröker
Hans-Bernhard Bröker  
View profile  
 More options Nov 4 2011, 5:12 pm
Newsgroups: openwatcom.users.fortran
From: Hans-Bernhard Bröker <broe...@physik.rwth-aachen.de>
Date: Fri, 04 Nov 2011 22:12:48 +0100
Local: Fri, Nov 4 2011 5:12 pm
Subject: Re: Did the E3033 problem get resolved?
On 04.11.2011 06:08, W. eWatson wrote:

> Later others thought it might be a bug. Someone suggested using
> wfc386/wlink as a workaround, and that ended the thread.

Looks like documentation isn't the only material you hate reading with
any attention to detail.

The bug was fixed in the development version, and the fix announced
right there in the thread days before it petered out.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
dpb  
View profile  
 More options Nov 4 2011, 5:44 pm
Newsgroups: openwatcom.users.fortran
From: dpb <n...@non.net>
Date: Fri, 04 Nov 2011 16:44:57 -0500
Local: Fri, Nov 4 2011 5:44 pm
Subject: Re: Did the E3033 problem get resolved?
On 11/4/2011 4:12 PM, Hans-Bernhard Bröker wrote:
...

> The bug was fixed in the development version, and the fix announced
> right there in the thread days before it petered out.

Interesting...I had totally forgotten that from a year+ ago even though
I read and responded in the thread... :(

But, the Winders build server is down so is there anywhere if the
corrected build wasn't inserted into the 1.9 distribution to actually
get a correct build at the moment?  Don't know the OW site intimately,
but a moderately quick perusal didn't help...

--


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
user1  
View profile  
 More options Nov 4 2011, 6:24 pm
Newsgroups: openwatcom.users.fortran
From: user1 <us...@example.net>
Date: Fri, 04 Nov 2011 18:24:37 -0400
Local: Fri, Nov 4 2011 6:24 pm
Subject: Re: Did the E3033 problem get resolved?
On 11/4/2011 5:44 PM, dpb wrote:

Grab it from the linux build server, as long as it is still up.

Actually, you can hexedit the appropriate string in the version 1.9
wfl386.exe file, if you are brave enough. Shorten library to lib
followed by 4 trailing spaces. Don't wish to talk OP through that
process, however.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Hex-editting stuff -- Re: Did the E3033 problem get resolved?" by Kevin G. Rhoads
Kevin G. Rhoads  
View profile  
 More options Nov 4 2011, 8:35 pm
Newsgroups: openwatcom.users.fortran
From: "Kevin G. Rhoads" <kgrho...@alum.mit.edu>
Date: Fri, 04 Nov 2011 20:35:54 -0400
Local: Fri, Nov 4 2011 8:35 pm
Subject: Hex-editting stuff -- Re: Did the E3033 problem get resolved?

>Actually, you can hexedit the appropriate string in the version 1.9
>wfl386.exe file, if you are brave enough.

Just make a backup copy first.  

I did too much of that for the Ph.D. thesis, WP 4.2 for DOS, getting the font changes for Greek
into the auto-generated index and TOC.  Fortunately, there were not too many Greek letters
in index entries.  But I was too F***ing stubborn to change my wordings to avoid the issue.

Still, it was less fuss than TECO and a homebrew runoff for RT-11 on 8" floppies that I used
to write the Master's.  (Run through the daisy-wheel, change to the Greek wheel and run it
through again.  Joy.)  I still have those floppies around,  somewhere ...


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "BTW, what's the /c for -- Re: Did the E3033 problem get resolved?" by W. eWatson
W. eWatson  
View profile  
 More options Nov 4 2011, 10:52 pm
Newsgroups: openwatcom.users.fortran
From: "W. eWatson" <wolftra...@invalid.com>
Date: Fri, 04 Nov 2011 19:52:35 -0700
Local: Fri, Nov 4 2011 10:52 pm
Subject: Re: BTW, what's the /c for -- Re: Did the E3033 problem get resolved?
On 11/4/2011 8:40 AM, Kevin G. Rhoads wrote:

> ...
>> wfl386 /c sub1.for
> ...
>> (BTW, what's the /c for?

> CL is C-compile and Link, FL is Fortran-compile and Link
> WCL is Watcom C-compile and Link, WFL is Watcom Fortran-compile and Link
> WCL386 is Watcom C-compile and Link (32 bit for 386 and above)
> and, finally,
> WFL386 is Watcom Fortran-compile and Link (32 bit for 386 and above)

> If you just want to compile you either use the /c (compile only) option OR
> use a different tool (such as WFC386 (Watcom Fortran-Compile (32 bit)))

Oh, I only want to use Fortran, but was attracted to the sequence, since
I was trying to build a library to use with a main program.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Hex-editting stuff -- Re: Did the E3033 problem get resolved?" by W. eWatson
W. eWatson  
View profile  
 More options Nov 4 2011, 10:58 pm
Newsgroups: openwatcom.users.fortran
From: "W. eWatson" <wolftra...@invalid.com>
Date: Fri, 04 Nov 2011 19:58:06 -0700
Local: Fri, Nov 4 2011 10:58 pm
Subject: Re: Hex-editting stuff -- Re: Did the E3033 problem get resolved?
On 11/4/2011 5:35 PM, Kevin G. Rhoads wrote:

>> Actually, you can hexedit the appropriate string in the version 1.9
>> wfl386.exe file, if you are brave enough.

> Just make a backup copy first.

> I did too much of that for the Ph.D. thesis, WP 4.2 for DOS, getting the font changes for Greek
> into the auto-generated index and TOC.  Fortunately, there were not too many Greek letters
> in index entries.  But I was too F***ing stubborn to change my wordings to avoid the issue.

> Still, it was less fuss than TECO and a homebrew runoff for RT-11 on 8" floppies that I used
> to write the Master's.  (Run through the daisy-wheel, change to the Greek wheel and run it
> through again.  Joy.)  I still have those floppies around,  somewhere ...

As a newcomer to this, it looks like if anyone wants to build a library
per the above commands they can't. Is there another way?

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
W. eWatson  
View profile  
 More options Nov 4 2011, 10:58 pm
Newsgroups: openwatcom.users.fortran
From: "W. eWatson" <wolftra...@invalid.com>
Date: Fri, 04 Nov 2011 19:58:22 -0700
Local: Fri, Nov 4 2011 10:58 pm
Subject: Re: Hex-editting stuff -- Re: Did the E3033 problem get resolved?
On 11/4/2011 5:35 PM, Kevin G. Rhoads wrote:

>> Actually, you can hexedit the appropriate string in the version 1.9
>> wfl386.exe file, if you are brave enough.

> Just make a backup copy first.

> I did too much of that for the Ph.D. thesis, WP 4.2 for DOS, getting the font changes for Greek
> into the auto-generated index and TOC.  Fortunately, there were not too many Greek letters
> in index entries.  But I was too F***ing stubborn to change my wordings to avoid the issue.

> Still, it was less fuss than TECO and a homebrew runoff for RT-11 on 8" floppies that I used
> to write the Master's.  (Run through the daisy-wheel, change to the Greek wheel and run it
> through again.  Joy.)  I still have those floppies around,  somewhere ...

As a newcomer to this, it looks like if anyone wants to build a library
per the above commands they can't. Is there another way?

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Did the E3033 problem get resolved?" by dpb
dpb  
View profile  
 More options Nov 5 2011, 12:16 am
Newsgroups: openwatcom.users.fortran
From: dpb <n...@non.net>
Date: Fri, 04 Nov 2011 23:16:31 -0500
Local: Sat, Nov 5 2011 12:16 am
Subject: Re: Did the E3033 problem get resolved?
On 11/4/2011 5:24 PM, user1 wrote:
...

> Grab it from the linux build server, as long as it is still up.

OH...DOH!

I was presuming those were running Linux builds under Linux; but I
realize that's not the way builds are built when you say so... :(

> Actually, you can hexedit the appropriate string in the version 1.9
> wfl386.exe file, if you are brave enough. Shorten library to lib
> followed by 4 trailing spaces. Don't wish to talk OP through that
> process, however.

Yeah, that would work but would seem far above OP's skill set, indeed.

I've got V11.6 so doesn't matter here, of course.

--


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Hex-editting stuff -- Re: Did the E3033 problem get resolved?" by dpb
dpb  
View profile  
 More options Nov 5 2011, 12:22 am
Newsgroups: openwatcom.users.fortran
From: dpb <n...@non.net>
Date: Fri, 04 Nov 2011 23:22:17 -0500
Local: Sat, Nov 5 2011 12:22 am
Subject: Re: Hex-editting stuff -- Re: Did the E3033 problem get resolved?
On 11/4/2011 9:58 PM, W. eWatson wrote:
...

> As a newcomer to this, it looks like if anyone wants to build a library
> per the above commands they can't. Is there another way?

Well, yes, I already posted an example using wfc386 and wlink to do the
same thing as wfl386 does.  All wfl386 is is a front end for them; it's
nothing magic, just a convenience.

Or, as noted, go to

<http://owbuilder.malakovi.cz/snapshot/binnt/wfl386.exe>

and download the last make of wfl386 from the build server.

--


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "BTW, what's the /c for -- Re: Did the E3033 problem get resolved?" by Lynn McGuire
Lynn McGuire  
View profile  
 More options Nov 5 2011, 2:05 pm
Newsgroups: openwatcom.users.fortran
From: Lynn McGuire <l...@winsim.com>
Date: Sat, 05 Nov 2011 13:05:53 -0500
Local: Sat, Nov 5 2011 2:05 pm
Subject: Re: BTW, what's the /c for -- Re: Did the E3033 problem get resolved?
On 11/4/2011 9:52 PM, W. eWatson wrote:

We build several libraries in our software using 1.9
of Open Watcom and do not have this problem.  However,
we use all command line tools.  Works a lot better
with 700,000 lines of F77 code, 10,000 lines of C code
and 10,000 lines of C++ code.  And over 6,000
subroutines and functions.

And we use the free crimson editor for source code
editing.

Lynn


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
dpb  
View profile  
 More options Nov 5 2011, 2:35 pm
Newsgroups: openwatcom.users.fortran
From: dpb <n...@non.net>
Date: Sat, 05 Nov 2011 13:35:20 -0500
Local: Sat, Nov 5 2011 2:35 pm
Subject: Re: BTW, what's the /c for -- Re: Did the E3033 problem get resolved?
On 11/5/2011 1:05 PM, Lynn McGuire wrote:
...

> We build several libraries in our software using 1.9
> of Open Watcom and do not have this problem. However,
> we use all command line tools....

It only exists in wfl386 (which is also command-line tool) just the
integrated compile/link front end that calls wfc386 and wlink in turn
(I'm not sure whether can also cram in wlib calls or not; don't really
think so, but never investigated fully), Lynn.  You'll never see it
otherwise using the individual compile/librarian/link utilities.

The IDE builds a make file and submits it to wmake so it doesn't see the
problem, either.

And, of course, the OP has been pointed to the workaround or I offered
the V11 version and also provided the _direct_ link to the build server
from which he can download the last build in which the problem has been
fixed.

Is that sufficient?  Would seem to most to be so, but apparently not to
this OP; he seems to prefer to complain and not bother with taking any
advice or direction nor bother to actually _read_ documentation it would
appear.

--


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
dpb  
View profile  
 More options Nov 5 2011, 2:54 pm
Newsgroups: openwatcom.users.fortran
From: dpb <n...@non.net>
Date: Sat, 05 Nov 2011 13:54:58 -0500
Local: Sat, Nov 5 2011 2:54 pm
Subject: Re: BTW, what's the /c for -- Re: Did the E3033 problem get resolved?
On 11/5/2011 1:05 PM, Lynn McGuire wrote:
...

> And we use the free crimson editor for source code
> editing.

I wasn't aware of Crimson...just went and found it.  Interesting.

I've used Brief since first PC compiler and have so many customized
macros I have never yet been able to find a satisfactory replacement.
Fortunately, having retired from active consulting, I no longer code "in
anger" so it really isn't terribly important any longer.

For any who also miss Brief key layouts, I've recently discovered a
Windows pseudo-replacement at <www.briefeditor.com>  It has key mappings
and the in-editor compilation/error, etc., the one lack in my case is it
doesn't implement Brief macros so all my customization is lost.  In
private conversation w/ the author, he says it's on the horizon, but it
appears to me very unlikely it will ever happen both because it's a
sizable effort and the present command syntax isn't drop-in Brief
compatible as if it were intended from the beginning to do such.  But,
it limited testing it seems stable and functional.

--


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lynn McGuire  
View profile  
 More options Nov 5 2011, 4:17 pm
Newsgroups: openwatcom.users.fortran
From: Lynn McGuire <l...@winsim.com>
Date: Sat, 05 Nov 2011 15:17:07 -0500
Local: Sat, Nov 5 2011 4:17 pm
Subject: Re: BTW, what's the /c for -- Re: Did the E3033 problem get resolved?
On 11/5/2011 1:35 PM, dpb wrote:

Dont know.  I'm an old mainframe hacker who moved to
PrimeOS to Vax to Unix to PC.  Except for the PC, I
always used command lines tools instead of IDEs.
Nowadays I prefer IDEs but they must work and work
well.  Watcom's IDE does not meet this requirement,
it is just too simplistic.  So we just use the command
line tools provided by Watcom as they are robust and
simple.

We use Visual Studio exclusively for our user interface
(600,000 lines of C++ code) and some days I want to
throw it out the nearest window.  BTW, when I first
tried to port our F77 code to Intel Fortran, we
overloaded it's linker internal tables and had to wait
a couple of months for a patch.  Then I ran into their
zero init bug and gave up in disgust.

Lynn


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
dpb  
View profile  
 More options Nov 6 2011, 9:28 am
Newsgroups: openwatcom.users.fortran
From: dpb <n...@non.net>
Date: Sun, 06 Nov 2011 09:28:47 -0500
Local: Sun, Nov 6 2011 9:28 am
Subject: Re: BTW, what's the /c for -- Re: Did the E3033 problem get resolved?
On 11/5/2011 3:17 PM, Lynn McGuire wrote:
...

...

Pretty similar path from Philco-->CDC Cyber/Star-->DEC 10 -->VAX and
PDP's of various ilks --> period of embedded systems far removed from
any Fortran at all -->back to VAX -->PC OS/2 to --> NT4 (first MS OS
used "in anger")

The code base that got me to the Watcom compiler was moved from VAX to
OS/2 (Watcom) then to the DVF to move it to NT4.  It doesn't have a user
interface other than terminal; I wrote a small demo and a proposal to
build one w/ Tcl/Tk but the client never funded the development.

I didn't do the OS/2 conversion from VAX but picked up a modification
and support and the move to NT4 (when also moved it from OW as the
client wanted a commercially supported compiler.  (Of course, that DVF
morphed to CVF then shortly died is an ironic sidebar.)  It's not as
large as yours (and I've never counted lines nor routines) but is a
suite of half-dozen multiple independent executables using shared memory
and semaphores to monitor plant performance on real time basis using
interface to plant control system and thermodynamics plant models for
heat rate, etc., as well as interactive analysis tools and a historian,
etc., etc., etc.  No IDE here, either, I built onto the existing make
files and use the JPSoft command interpreters on MS (or used REXX on
OS/2) to build more sophisticated batch files for the compilation
process and the configuration management package for source control and
edit check-in/-out.

I've used the Visual Studio distributed with the DVF/CVF distribution
some for small projects or playing around but don't believe I would ever
willingly go that route on anything large; I can't stand the editor
limitations/idiosyncracies (vis a vis the different idiosynracies that I
_am_ used to :) ).

We've had at the Intel zero-init thing re: your code and the other
extensions used that aren't supported by other potential choices
otherwise ad nauseum in the past; I retired from active consulting not
too long after the time Intel bought the compiler group from Compaq and
the aforementioned project wasn't funded to provide any revenue so I've
never updated either Fortran/C compilers nor Matlab license since ...and
at this point don't expect to.

--


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Hex-editting stuff -- Re: Did the E3033 problem get resolved?" by user1
user1  
View profile  
 More options Nov 7 2011, 10:28 am
Newsgroups: openwatcom.users.fortran
From: user1 <us...@example.net>
Date: Mon, 07 Nov 2011 10:28:55 -0500
Local: Mon, Nov 7 2011 10:28 am
Subject: Re: Hex-editting stuff -- Re: Did the E3033 problem get resolved?

Kevin G. Rhoads wrote:
>> Actually, you can hexedit the appropriate string in the version 1.9
>> wfl386.exe file, if you are brave enough.

> Just make a backup copy first.

> I did too much of that for the Ph.D. thesis, WP 4.2 for DOS, getting the font changes for Greek
> into the auto-generated index and TOC.  Fortunately, there were not too many Greek letters
> in index entries.  But I was too F***ing stubborn to change my wordings to avoid the issue.

> Still, it was less fuss than TECO and a homebrew runoff for RT-11 on 8" floppies that I used
> to write the Master's.  (Run through the daisy-wheel, change to the Greek wheel and run it
> through again.  Joy.)  I still have those floppies around,  somewhere ...

Funny you mention TECO and RT-11. When I was in grad school, we had a
MINC-11 lab computer, with 8" floppies and all sorts of a/d and d/a
converters, digital i/o lines etc. I programmed it with RT-11 Fortran,
and a bunch of "call ipoke" and "call ipeek" to control and read data
from the instrumental contraption that I was hitched up to. TECO
probably, but I think there was also a keypad editor called KED.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "BTW, what's the /c for -- Re: Did the E3033 problem get resolved?" by Fritz Wuehler
Fritz Wuehler  
View profile  
 More options Nov 7 2011, 10:45 am
Newsgroups: openwatcom.users.fortran
From: Fritz Wuehler <fr...@spamexpire-201111.rodent.frell.theremailer.net>
Date: Mon, 07 Nov 2011 16:45:46 +0100
Local: Mon, Nov 7 2011 10:45 am
Subject: Re: BTW, what's the /c for -- Re: Did the E3033 problem get resolved?

Lynn McGuire <l...@winsim.com> wrote:
> Dont know.  I'm an old mainframe hacker

* Bullshit Alert!!! *

Nobody who works on mainframes calls himself a hacker

> who moved to PrimeOS to Vax to Unix to PC.

That puts it in context. Not only didn't you belong in the mainframe world
but you exhibited bad judgement! ;-) Even MVS 3.8J is better than the best
UNIX or PC OS.

> We use Visual Studio exclusively for our user interface
> (600,000 lines of C++ code)

Is that 600K lines of GUI? Things are worse than I imagined.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lynn McGuire  
View profile  
 More options Nov 7 2011, 11:39 am
Newsgroups: openwatcom.users.fortran
From: Lynn McGuire <l...@winsim.com>
Date: Mon, 07 Nov 2011 10:39:33 -0600
Local: Mon, Nov 7 2011 11:39 am
Subject: Re: BTW, what's the /c for -- Re: Did the E3033 problem get resolved?

> We've had at the Intel zero-init thing re: your code and the other extensions used that aren't supported by other potential choices
> otherwise ad nauseum in the past; I retired from active consulting not too long after the time Intel bought the compiler group from
> Compaq and the aforementioned project wasn't funded to provide any revenue so I've never updated either Fortran/C compilers nor
> Matlab license since ...and at this point don't expect to.

The zero init port to non zero init has been just about
completed.  The developer reported success right before
I threw some nasty bug reports at him.  We may actually
get that project completed in the first quarter of 2012.
Then on to C++ !

Lynn


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Hex-editting stuff -- Re: Did the E3033 problem get resolved?" by E. S. Fabian
E. S. Fabian  
View profile  
 More options Nov 7 2011, 12:49 pm
Newsgroups: openwatcom.users.fortran
From: "E. S. Fabian" <ESFab...@zenge.org>
Date: Mon, 7 Nov 2011 12:49:26 -0500
Local: Mon, Nov 7 2011 12:49 pm
Subject: Re: Hex-editting stuff -- Re: Did the E3033 problem get resolved?
I used to love TECO... and missed it on PC-s. I still use Brief, but I
cannot get its macro compiler to run under WinXP.
--
Steve

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Messages 1 - 25 of 50   Newer >
« Back to Discussions « Newer topic     Older topic »