<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Techy Things &#187; programming</title>
	<atom:link href="https://tech.yipp.ca/category/programming/feed/" rel="self" type="application/rss+xml" />
	<link>https://tech.yipp.ca</link>
	<description>Just another Yipp.ca Blogs site</description>
	<lastBuildDate>Thu, 01 May 2025 18:06:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.38</generator>
	<item>
		<title></title>
		<link>https://tech.yipp.ca/programming/2956/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=2956</link>
		<comments>https://tech.yipp.ca/programming/2956/#comments</comments>
		<pubDate>Thu, 15 Feb 2018 20:04:11 +0000</pubDate>
		<dc:creator><![CDATA[frank]]></dc:creator>
				<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://tech.yipp.ca/?p=2956</guid>
		<description><![CDATA[<p>gyp info it worked if it ends with ok gyp info using node-gyp@1.0.1 gyp info using node@0.10.38 &#124; linux &#124; ia32 gyp info chdir ldapjs/node_modules/buffertools gyp ERR! clean error gyp ERR! stack Error: EACCES,&#46;&#46;&#46;</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/programming/2956/"></a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></description>
				<content:encoded><![CDATA[<pre>gyp info it worked if it ends with ok
gyp info using node-gyp@1.0.1
gyp info using node@0.10.38 | linux | ia32
gyp info chdir ldapjs/node_modules/buffertools
gyp ERR! clean error
gyp ERR! stack Error: EACCES, unlink 'build/Makefile'
gyp ERR! System Linux 4.9.75-30.el6.x86_64
gyp ERR! command "/home/dev/cal/vfcore/cerberus/cerb-node/node_modules/../../bin/node" "/home/dev/cal/vfcore/cerberus/vendor/node/deps/npm/node_modules/node-gyp/bin/node-gyp" "rebuild" "--directory=ldapjs/node_modules/buffertools" "--nodedir=/home/dev/cal/vfcore/cerberus/cerb-node/node_modules/../../vendor/node" "--arch" "ia32"
gyp ERR! cwd /home/dev/cal/vfcore/cerberus/cerb-node/node_modules/ldapjs/node_modules/buffertools
gyp ERR! node -v v0.10.38
gyp ERR! node-gyp -v v1.0.1
gyp ERR! not ok
make[3]: *** [ldapjs] Error 1

</pre>
<h2>Solution</h2>
<p>You probably - like me - built with root user before and now are not. Just make a backup of unsaved changes if any, then clean the repo (rm -fr of affected directory, then fresh checkout and/or submodule updates), and retry.</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/programming/2956/"></a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://tech.yipp.ca/programming/2956/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MSVCRTD.lib(MSVCR90D.dll) : error LNK2005: __write already defined in LIBCMTD.lib(write.obj)</title>
		<link>https://tech.yipp.ca/programming/msvcrtd-libmsvcr90d-dll-error-lnk2005-__write-already-defined-libcmtd-libwrite-obj/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=msvcrtd-libmsvcr90d-dll-error-lnk2005-__write-already-defined-libcmtd-libwrite-obj</link>
		<comments>https://tech.yipp.ca/programming/msvcrtd-libmsvcr90d-dll-error-lnk2005-__write-already-defined-libcmtd-libwrite-obj/#comments</comments>
		<pubDate>Fri, 05 Dec 2014 21:16:36 +0000</pubDate>
		<dc:creator><![CDATA[frank]]></dc:creator>
				<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://tech.yipp.ca/?p=1321</guid>
		<description><![CDATA[<p> Basic knowledge that will help you debug Library types and related compiler switches Basic C Runtime library / Standard C++ library Multithreaded (/MT) LIBCMT.LIB / LIBCPMT.LIB Debug Multithreaded (/MTd) LIBCMTD.LIB / LIBCPMTD.LIB Multithreaded DLL&#46;&#46;&#46;</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/programming/msvcrtd-libmsvcr90d-dll-error-lnk2005-__write-already-defined-libcmtd-libwrite-obj/">MSVCRTD.lib(MSVCR90D.dll) : error LNK2005: __write already defined in LIBCMTD.lib(write.obj)</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h2> Basic knowledge that will help you debug</h2>
<table id="MT3" cellspacing="0">
<tbody>
<tr>
<th>Library types and related compiler switches</th>
<th>Basic C Runtime library / Standard C++ library</th>
</tr>
<tr>
<td>Multithreaded (/MT)</td>
<td>LIBCMT.LIB / LIBCPMT.LIB</td>
</tr>
<tr>
<td>Debug Multithreaded (/MTd)</td>
<td>LIBCMTD.LIB / LIBCPMTD.LIB</td>
</tr>
<tr>
<td>Multithreaded DLL (/MD)</td>
<td>MSVCRT.LIB / MSVCPRT.LIB</td>
</tr>
<tr>
<td>Debug Multithreaded DLL (/MDd)</td>
<td>MSVCRTD.LIB / MSVCPRTD.LIB</td>
</tr>
</tbody>
</table>
<p><b>Note</b> The /ML and /MLd library compiler options for static single-threaded libraries have been removed in Visual C++ 2005 and in later versions of Visual C++.</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/programming/msvcrtd-libmsvcr90d-dll-error-lnk2005-__write-already-defined-libcmtd-libwrite-obj/">MSVCRTD.lib(MSVCR90D.dll) : error LNK2005: __write already defined in LIBCMTD.lib(write.obj)</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://tech.yipp.ca/programming/msvcrtd-libmsvcr90d-dll-error-lnk2005-__write-already-defined-libcmtd-libwrite-obj/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Regular expression for matching a line that does not have string in middle</title>
		<link>https://tech.yipp.ca/programming/regular-expression-matching-line-string-middle/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=regular-expression-matching-line-string-middle</link>
		<comments>https://tech.yipp.ca/programming/regular-expression-matching-line-string-middle/#comments</comments>
		<pubDate>Fri, 05 Dec 2014 21:07:59 +0000</pubDate>
		<dc:creator><![CDATA[frank]]></dc:creator>
				<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://tech.yipp.ca/?p=1319</guid>
		<description><![CDATA[<p>Wanted : a line that begins with "cl " but does not have -MTd in it ^cl ((?!-MTd).)*$ &#160; &#160;</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/programming/regular-expression-matching-line-string-middle/">Regular expression for matching a line that does not have string in middle</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>Wanted : a line that begins with "cl " but does not have -MTd in it</p>
<p>^cl ((?!-MTd).)*$</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://tech.yipp.ca/programming/regular-expression-matching-line-string-middle/">Regular expression for matching a line that does not have string in middle</a> appeared first on <a rel="nofollow" href="https://tech.yipp.ca">Techy Things</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://tech.yipp.ca/programming/regular-expression-matching-line-string-middle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
