Search found 2 matches
- Mon Jul 04, 2011 7:38 am
- Forum: Compiling Audacity
- Topic: After compiling on a LFS audacity failed
- Replies: 4
- Views: 2801
Re: After compiling on a LFS audacity failed
when I go back to AddItem call, I get a segmentation fault on startup: backtrace: Core was generated by `audacity'. Program terminated with signal 11, Segmentation fault. #0 0x00007f179fad1ef0 in wcslen () from /lib64/libc.so.6 (gdb) bt #0 0x00007f179fad1ef0 in wcslen () from /lib64/libc.so.6 #1 0x0...
- Sun Jul 03, 2011 1:59 pm
- Forum: Compiling Audacity
- Topic: After compiling on a LFS audacity failed
- Replies: 4
- Views: 2801
Re: After compiling on a LFS audacity failed
there is a copy and paste bug in ./src/Menus.cpp" line 598 wrong code was: c->AddItem(wxT("ResetToolbars"), _("&Reset Toolbars"), FN(OnResetToolBars), 0, AlwaysEnabledFlag, AlwaysEnabledFlag); working is: c->AddCheck(wxT("ResetToolbars"), _("&Reset Toolbars"), FN(OnResetToolBars), 0, AlwaysEnabledFl...