From: Kevin C. <ke...@co...> - 2008-12-01 16:13:38
|
On 27 November 2008 at 12:53, "Pete Stieber" <pst...@gm...> wrote: > We build tex2rtf against a release version of the wxWidgets library. > Did you build and install a release version of wx? I *thought* I built tex2rtf against the wxWidgets that I just downloaded. -- Kevin |
From: Kevin C. <ke...@co...> - 2008-12-01 16:16:49
|
On 27 November 2008 at 20:28, "D.B. Moore" <db...@ho...> wrote: > Well, I suppose if Kevin didn't install debug + release versions of wx. that > -may- explain it...but then, going by his log, the jazz build -did- find the > release version???....so I presumed he did build both...otherwise things > wouldn't have complained? I built only the "release", not the "debug". What's the debug for anyway? It seemed unused to me. Thanks.... -- Kevin |
From: Pete S. <pst...@gm...> - 2008-12-02 15:01:01
|
DM>> Well, I suppose if Kevin didn't install debug + release DM>> versions of wx. that -may- explain it... tex2rtf is built against a release version of wxWidgets. Jazz++ is built against a debug version. From the log, when tex2rtf is run it is finding the debug build of wxWidgets as indicated by... The library used 2.8 (debug,ANSI,compiler with C++ ABI 1002,STL containers) but tex2rtf want a release version as indicated by... and your program used 2.8 (no debug,ANSI,compiler with C++ ABI 1002,STL containers) where "your program" is tex2rtf. Note the "no debug" in the second entry. DM>> but then, going by his log, the jazz build -did- DM>> find the release version??? No it did not. The jazz build didn't compile any single file. The first step is building help, and that failed. No Jazz++ files were even compiled in the build log. If Kevin followed the build instructions, Jazz++ doesn't build against the release version of wxWidgets, but the debug version. DM>> ....so I presumed he did build both...otherwise things DM>> wouldn't have complained? KC> I built only the "release", not the "debug". Then you are not following the wxWidgets build instructions on the web site. The web site has you build both a release (for tex2rtf) and a debug version (for jazz) of wxWidgets. The old instructions only had you build a debug version. The Jazz++ build instructions have always used the debug build of wxWidgets. This is specified in the configure line... ../jazz/configure \ --prefix=/usr/local/Jazz++ \ --enable-debug \ --enable-alsa \ --enable-sequencer2 with --enable-debug. This triggers the use of the debug version of the wxWidgets build. KC> What's the debug for anyway? It seemed unused to me. This allows you to use gdb to get a back trace if Jazz++ crashes while you are using it. Pete |
From: Kevin C. <ke...@co...> - 2008-12-05 18:54:43
|
OK, I misunderstood about the need for both debug and release versions of wxWidgets. I started over again. My Mandriva 2008.0 laptop built everything once more, and I'm happy to report that jazz runs. When it started up I had to confirm two MIDI devices and help jazz to locate the helpfile. Once I did that, then I loaded the jazz.mid file and poked some buttons in the harmony browser. I can't say what it sounds like because I have no MIDI devices (soft or hard) connected to the laptop. But, the program runs, and I'm quite happy about that! Thank you, thank you! Maybe I'll try to use some time over Christmas break to update my music machine's Mandriva version to the latest, 2009.0. Thanks again... -- Kevin |
From: Pete S. <pst...@gm...> - 2008-12-05 19:26:40
|
KC = Kevin Cosgrove KC> OK, I misunderstood about the need for both debug KC> and release versions of wxWidgets. Sorry about that. Was there something in the web instructions that misled you? KC> I started over again. My Mandriva 2008.0 laptop KC> built everything once more, Thanks for taking the time to do this. KC> and I'm happy to report that jazz runs. When it KC> started up I had to confirm two MIDI devices and KC> help jazz to locate the helpfile. The confirmation of the MIDI devices I understand. I thought I changes the code to automatically find the help file on Linux. Did you run "make install" and run the code from the installed location? KC> Once I did that, then I loaded the jazz.mid file KC> and poked some buttons in the harmony browser. I KC> can't say what it sounds like because I have no KC> MIDI devices (soft or hard) connected to the laptop. KC> But, the program runs, and I'm quite happy about KC> that! So am I ;-) KC> Thank you, thank you! Thank you for sticking with it! KC> Maybe I'll try to use some time over Christmas KC> break to update my music machine's Mandriva KC> version to the latest, 2009.0. If you do that, let me know and I'll load it on a disk here so I can help you out. KC> Thanks again... Back at ya, Pete |
From: D.B. M. <db...@ho...> - 2008-12-06 00:10:55
|
> Date: Fri, 5 Dec 2008 11:26:30 -0800 > From: pstieber > To: jazzplusplus-devel > Subject: Re: [jazzplusplus-devel] Revisiting web-docs after recent changes > <snip> > > KC> and I'm happy to report that jazz runs. When it > KC> started up I had to confirm two MIDI devices and > KC> help jazz to locate the helpfile. > PS> The confirmation of the MIDI devices I understand. I thought I changes PS> the code to automatically find the help file on Linux. Did you run PS> "make install" and run the code from the installed location? > FWIW, it did find the help file here automatically after the changes - it should have worked for Kevin too in an equal world... Regards, Don _________________________________________________________________ It's simple! Sell your car for just $40 at CarPoint.com.au http://a.ninemsn.com.au/b.aspx?URL=http%3A%2F%2Fsecure%2Dau%2Eimrworldwide%2Ecom%2Fcgi%2Dbin%2Fa%2Fci%5F450304%2Fet%5F2%2Fcg%5F801459%2Fpi%5F1004813%2Fai%5F859641&_t=762955845&_r=tig_OCT07&_m=EXT |
From: Kevin C. <ke...@co...> - 2008-12-08 16:33:34
|
On 5 December 2008 at 11:26, Pete Stieber <pst...@gm...> wrote: > KC = Kevin Cosgrove > KC> OK, I misunderstood about the need for both debug > KC> and release versions of wxWidgets. > > Sorry about that. Was there something in the web instructions that > misled you? No. I just took what I thought was a shortcut. I couldn't understand why I would need to have two versions of wxWidgets. We've already been over that. > KC> I started over again. My Mandriva 2008.0 laptop > KC> built everything once more, > > Thanks for taking the time to do this. No problem. > KC> and I'm happy to report that jazz runs. When it > KC> started up I had to confirm two MIDI devices and > KC> help jazz to locate the helpfile. > > The confirmation of the MIDI devices I understand. I thought I changes > the code to automatically find the help file on Linux. Did you run > "make install" and run the code from the installed location? Yes, "make install" and ran $PREFIX/bin/jazz. > Thank you for sticking with it! No problem. I might be slow. But, I lurk here. > If you do that, let me know and I'll load it on a disk here so I can > help you out. Ok. -- Kevin |