Hi,<br><br>I understand the valid notions and concerns raised by you, but I as I was
trying to say in my last mail, that I were already doing these (suggested) changes,
but they were not reflected in my git diff file.<br>Reason being, I was
'unaware' of the fact that I am 'not' supposed to do any changes in the
solver folder, <b>while I did some there</b>, and those were the changes one
was unable to see in my git diff file. Knowing which I corrected myself and got appropriate results.<br><br>Nevertheless, I am always happy to know and learn from my mistakes
and have been finally able to remove this error successfully :)<br><br>The most recent issue I am having is that, I 'make', the cpu reaches this state and then does nothing (I left cpu for around 7 hours):<br><br>
<div class="de1">[build CHK] tail_build</div><div class="de2">[build ALL] top level modules: tail_build</div><div class="de1">[build ALL] loaded modules: MathMLDTD Mesa UnoControls
accessibility afms animations apache_commons apple_remote autodoc
avmedia basctl basebmp basegfx basic bean beanshell binaryurp
bluez_bluetooth boost bridges cairo canvas chart2 cli_ure clucene
codemaker comphelper configmgr connectivity cosv cppcanvas cppu
cppuhelper cppunit cpputools cui curl dbaccess desktop drawinglayer
dtrans editeng embeddedobj embedserv eventattacher expat extensions
external extras fileaccess filter forms formula fpicker framework
graphite helpcompiler hsqldb hunspell hwpfilter hyphen i18npool i18nutil
icu idl idlc io javaunohelper jfreereport jurt jvmaccess jvmfwk
l10ntools lcms2 libcdr libcmis libexttextcat liblangtag libmspub
liborcus librelogo libvisio libwpd libwpg libwps libxmlsec
lingucomponent linguistic lotuswordpro lpsolve mdds more_fonts mythes
neon np_sdk nss o3tl offapi officecfg oovbaapi oox openldap openssl
package padmin postgresql postprocess psprint_config python3 pyuno
readlicense_oo redland registry remotebridges reportbuilder reportdesign
rhino ridljar rsc sal salhelper sane sax sc scaddins sccomp scp2
scripting sd sdext setup_native sfx2 shell slideshow smoketest solenv
soltools sot starmath stoc store svgio svl svtools svx sw swext sysui
tail_build test testtools tomcat toolkit tools touch tubes twain ucb
ucbhelper ucpp udkapi udm unixODBC unodevtools unoidl unoil unotest
unotools unoxml ure uui vbahelper vcl vigra wizards writerfilter
writerperfect xmerge xmlhelp xmloff xmlreader xmlscript xmlsecurity xpdf</div><div class="de2">[build CHK] loaded modules: MathMLDTD Mesa UnoControls
accessibility afms animations apache_commons apple_remote autodoc
avmedia basctl basebmp basegfx basic bean beanshell binaryurp
bluez_bluetooth boost bridges cairo canvas chart2 cli_ure clucene
codemaker comphelper configmgr connectivity cosv cppcanvas cppu
cppuhelper cppunit cpputools cui curl dbaccess desktop drawinglayer
dtrans editeng embeddedobj embedserv eventattacher expat extensions
external extras fileaccess filter forms formula fpicker framework
graphite helpcompiler hsqldb hunspell hwpfilter hyphen i18npool i18nutil
icu idl idlc io javaunohelper jfreereport jurt jvmaccess jvmfwk
l10ntools lcms2 libcdr libcmis libexttextcat liblangtag libmspub
liborcus librelogo libvisio libwpd libwpg libwps libxmlsec
lingucomponent linguistic lotuswordpro lpsolve mdds more_fonts mythes
neon np_sdk nss o3tl offapi officecfg oovbaapi oox openldap openssl
package padmin postgresql postprocess psprint_config python3 pyuno
readlicense_oo redland registry remotebridges reportbuilder reportdesign
rhino ridljar rsc sal salhelper sane sax sc scaddins sccomp scp2
scripting sd sdext setup_native sfx2 shell slideshow smoketest solenv
soltools sot starmath stoc store svgio svl svtools svx sw swext sysui
tail_build test testtools tomcat toolkit tools touch tubes twain ucb
ucbhelper ucpp udkapi udm unixODBC unodevtools unoidl unoil unotest
unotools unoxml ure uui vbahelper vcl vigra wizards writerfilter
writerperfect xmerge xmlhelp xmloff xmlreader xmlscript xmlsecurity xpdf</div><br>Any help regarding this shall be highly appreciable.<br>Thanking you in anticipation<br><br>Regards<br>Prashant <br><br><div class="gmail_quote">
On Thu, Feb 28, 2013 at 4:37 PM, Caolán McNamara <span dir="ltr"><<a href="mailto:caolanm@redhat.com" target="_blank">caolanm@redhat.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">On Thu, 2013-02-28 at 01:06 +0530, Prashant Pandey wrote:<br>
> Hello everyone,<br>
><br>
> I am having a hard time debugging the undefined reference to<br>
> <some_function> error. I made following changes:<br>
> <a href="http://pastebin.com/DqqTsP7A" target="_blank">http://pastebin.com/DqqTsP7A</a>. Errors are:<br>
> <a href="http://pastebin.com/PW0yzzgA" target="_blank">http://pastebin.com/PW0yzzgA</a>.<br>
<br>
</div>Try and send your patches, even ones that are works in progress, as<br>
attachments, rather than pastebin<br>
<br>
Anyway... I can't see how you got as far as the linker failure, you<br>
should have gotten a compiler error of "no matching function for call to<br>
String::GetToken(... sal_Int32&)"<br>
which is the problem. You've changed various stuff like..<br>
<br>
- xub_StrLen nIndex = 0;<br>
+ sal_Int32 nIndex = 0;<br>
aFont.SetName( aSearch.GetToken( 0, ';', nIndex ) );<br>
<br>
but String::GetToken takes a reference to a 16bit xub_StrLen not a 32bit<br>
sal_Int32. You have to either leaves those inputs to String::GetToken<br>
alone or chage the String to a OUString and use OUString::getToken which<br>
does take a sal_Int32.<br>
<br>
I suggest just trying to convert a small piece first rather than making<br>
a mega-patch.<br>
<span class="HOEnZb"><font color="#888888"><br>
C.<br>
<br>
</font></span></blockquote></div><br>