Re: using ./Configure to generate listing files

2013-11-06 Thread Lloyd Fuller
$argshift1|sed 's/\.o/.lc/g'`   Lloyd   From: Janet Graff janet.gr...@yahoo.com To: IBM-MAIN@LISTSERV.UA.EDU Sent: Tuesday, November 5, 2013 2:15 PM Subject: Re: using ./Configure to generate listing files The -Wc,LIST(filename) option would work fine to indicate

Re: using ./Configure to generate listing files

2013-11-05 Thread Mike Wawiorko
To: IBM-MAIN@LISTSERV.UA.EDU Subject: using ./Configure to generate listing files I am attempting to build openssl on the mainframe.  Can I set up my ./Configure OS390 line to generate a listing file for every module compiled? I need something like this OS/390,c99:-O -Wc,ascii -Wc,LIST(fname.LIST

Re: using ./Configure to generate listing files

2013-11-05 Thread Kirk Wolf
Janet, Take a look at the archives for this list, specifically the thread: openssl make - z/OS UNIX question - Help from April 2012. Kirk Wolf Dovetailed Technologies http://dovetail.com On Mon, Nov 4, 2013 at 11:24 AM, Janet Graff janet.gr...@yahoo.com wrote: I am attempting to build

Re: using ./Configure to generate listing files

2013-11-05 Thread Janet Graff
Kirk, Yes! That excellent thread is what enabled me to get as far as I did and produce my needed libcrypto.a library. I've been through that thread multiple times in the last three weeks but I don't recall a discussion of changing the ./Configure settings to produce listing files for every

Re: using ./Configure to generate listing files

2013-11-05 Thread Janet Graff
Mike, This particular usage of openssl is specifically for the bignum support. AT-TLS is for the SSL support which we aren't using. Do you know of a bignum replacement for openssl for z/OS? Janet -- For IBM-MAIN subscribe /

Re: using ./Configure to generate listing files

2013-11-05 Thread Lloyd Fuller
To: IBM-MAIN@LISTSERV.UA.EDU Sent: Tuesday, November 5, 2013 11:46 AM Subject: Re: using ./Configure to generate listing files Kirk, Yes!  That excellent thread is what enabled me to get as far as I did and produce my needed libcrypto.a library. I've been through that thread multiple times

Re: using ./Configure to generate listing files

2013-11-05 Thread Janet Graff
The -Wc,LIST(filename) option would work fine to indicate that I want a listing file. But without a file name it defaults to STDOUT. The specific filename doesn't adjust for different source code files. Is there a replacement variable for ./Configure that says use the source code file name

Re: using ./Configure to generate listing files

2013-11-05 Thread Kirk Wolf
I don't see anything like that in the Makefile. I'm far from an export on make, and the OpenSSL Makefile is pretty nasty. My best guess is that you need to define your own inference rule something like: %.o : %.c $(CC) -c $(CCFLAGS) -Wc,LIST $ $*.list Kirk Wolf Dovetailed Technologies

Re: using ./Configure to generate listing files

2013-11-05 Thread Paul Gilmartin
On Tue, 5 Nov 2013 13:33:37 -0600, Kirk Wolf wrote: I don't see anything like that in the Makefile. I'm far from an export on make, and the OpenSSL Makefile is pretty nasty. My best guess is that you need to define your own inference rule something like: %.o : %.c $(CC) -c $(CCFLAGS)

using ./Configure to generate listing files

2013-11-04 Thread Janet Graff
I am attempting to build openssl on the mainframe.  Can I set up my ./Configure OS390 line to generate a listing file for every module compiled? I need something like this OS/390,c99:-O -Wc,ascii -Wc,LIST(fname.LIST) -DB_ENDIAN -DNO_SYS_PARAM_H -D_ALL_SOURCE -DASCII