<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Hi Everyone. I want to write in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835406#M6299</link>
    <description>&lt;P&gt;Hi Everyone. I want to write a pintool to record the frame pointer of each function call at runtime. Is there any API function that can be used to retrieve the current frame pointer. &amp;nbsp;I tried to instrument the binary by adding a function call &amp;nbsp;&lt;SPAN class="s1"&gt;_builtin_frame_address() at the end of each function call. It seems that the stack addresses was messed up. I think maybe it is because pin does dynamic instrumentation. Any idea of how to solve the problem?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 01 Mar 2016 16:46:39 GMT</pubDate>
    <dc:creator>Hao_L_1</dc:creator>
    <dc:date>2016-03-01T16:46:39Z</dc:date>
    <item>
      <title>pin tools forum</title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835392#M6285</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;since Pin Tools belongs to Intel I wonder if there is a forum about it (the Yahoo group is no alternative)? &lt;BR /&gt;I encountered some strange behavior in Pin and need to ask someone whether it's a bug or something else.&lt;BR /&gt;&lt;BR /&gt;Best regards&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Aug 2010 12:42:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835392#M6285</guid>
      <dc:creator>Olaf_Krzikalla</dc:creator>
      <dc:date>2010-08-25T12:42:55Z</dc:date>
    </item>
    <item>
      <title>pin tools forum</title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835393#M6286</link>
      <description>Hi Olaf,&lt;BR /&gt;&lt;BR /&gt;Sorry for the delayed response. Please feel free to post your concerns here, and I'll see if we can get some answers for you.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;==&lt;BR /&gt;Aubrey W.&lt;BR /&gt;Intel Software Network Support&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Sep 2010 21:19:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835393#M6286</guid>
      <dc:creator>Aubrey_W_</dc:creator>
      <dc:date>2010-09-14T21:19:49Z</dc:date>
    </item>
    <item>
      <title>pin tools forum</title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835394#M6287</link>
      <description>Hi Aubrey,&lt;BR /&gt;&lt;BR /&gt;nevertheless thank you for the response and the invitation. I'll just use this thread to describe my problem.&lt;BR /&gt;&lt;BR /&gt;I have two versions of a pintool tracing memory refernces of a particular function given by name.&lt;BR /&gt;&lt;BR /&gt;V1:&lt;BR /&gt;// -------------------------------------------- start &lt;BR /&gt;static int InFunctionOfInterest = 0;&lt;BR /&gt;&lt;BR /&gt;VOID EnterFunction()&lt;BR /&gt;{&lt;BR /&gt; ++InFunctionOfInterest;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;VOID LeaveFunction()&lt;BR /&gt;{&lt;BR /&gt; --InFunctionOfInterest;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;VOID Instruction(INS ins, VOID *v)&lt;BR /&gt;{&lt;BR /&gt; if (InFunctionOfInterest == 0)&lt;BR /&gt; {&lt;BR /&gt; return;&lt;BR /&gt; }&lt;BR /&gt; // tracing done as in ManualExamples/pinatrace.cpp&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;VOID Routine(RTN rtn, VOID *v)&lt;BR /&gt;{&lt;BR /&gt; if (RTN_Name(rtn) == function_name)&lt;BR /&gt; {&lt;BR /&gt; RTN_Open(rtn);&lt;BR /&gt; RTN_InsertCall(rtn, IPOINT_BEFORE, (AFUNPTR)EnterFunction, IARG_END);&lt;BR /&gt; RTN_InsertCall(rtn, IPOINT_AFTER, (AFUNPTR)LeaveFunction, IARG_END);&lt;BR /&gt; RTN_Close(rtn);&lt;BR /&gt; }&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;int main(int argc, char *argv[])&lt;BR /&gt;{&lt;BR /&gt; // init&lt;BR /&gt; RTN_AddInstrumentFunction(Routine, 0);&lt;BR /&gt; INS_AddInstrumentFunction(Instruction, 0);&lt;BR /&gt; // aso.&lt;BR /&gt;}&lt;BR /&gt;// -------------------------------------------- stop&lt;BR /&gt;&lt;BR /&gt;and V2:&lt;BR /&gt;&lt;BR /&gt;// -------------------------------------------- start&lt;BR /&gt;VOID Instruction(INS ins, VOID *v)&lt;BR /&gt;
{&lt;BR /&gt;
 // tracing done as in ManualExamples/pinatrace.cpp&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;VOID Routine(RTN rtn, VOID *v)&lt;BR /&gt;{&lt;BR /&gt; if (RTN_Name(rtn) == functionName)&lt;BR /&gt; {&lt;BR /&gt; RTN_Open(rtn);&lt;BR /&gt; for (INS ins = RTN_InsHead(rtn); INS_Valid(ins); ins = INS_Next(ins))&lt;BR /&gt; {&lt;BR /&gt; Instruction(ins, 0);&lt;BR /&gt; }&lt;BR /&gt; RTN_Close(rtn);&lt;BR /&gt; }&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;int main(int argc, char *argv[])&lt;BR /&gt;
{&lt;BR /&gt;
 // init&lt;BR /&gt;
 RTN_AddInstrumentFunction(Routine, 0);&lt;BR /&gt;
 // not needed: INS_AddInstrumentFunction(Instruction, 0);&lt;BR /&gt;
 // aso.&lt;BR /&gt;
}&lt;BR /&gt;// -------------------------------------------- stop&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Now V1 has the clear advantage over V2 that it traces the function recursively. For V2 I haven't found a way to recursively instrument the instructions by hand (something like a function "RTN INS_GetCallee(INS)" could be handy). &lt;BR /&gt;However V1 shows strange behavior when a function is traced. In particular the first traces are somehow left out. That is, either "EnterFunction" gets called too late or the first couple of instructions of a function aren't instrumented properly. &lt;BR /&gt;For the moment I can live with V2 but eventually I'd like to get V1 working properly. And I'm not sure if it's my fault or if it's due to some quirks in Pintools.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;Olaf&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 17 Sep 2010 10:53:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835394#M6287</guid>
      <dc:creator>Olaf_Krzikalla</dc:creator>
      <dc:date>2010-09-17T10:53:48Z</dc:date>
    </item>
    <item>
      <title>pin tools forum</title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835395#M6288</link>
      <description>&lt;DIV&gt;Please join the pinheads Yahoo group and ask this question there.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="white-space: pre;"&gt;	&lt;/SPAN&gt;&lt;A href="http://tech.groups.yahoo.com/group/pinheads" target="_blank"&gt;http://tech.groups.yahoo.com/group/pinheads&lt;/A&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 20 Sep 2010 17:27:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835395#M6288</guid>
      <dc:creator>MarkC_Intel</dc:creator>
      <dc:date>2010-09-20T17:27:46Z</dc:date>
    </item>
    <item>
      <title>pin tools forum</title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835396#M6289</link>
      <description>Sorry to say so, but no way (for reasons just look at their ads).&lt;BR /&gt;</description>
      <pubDate>Fri, 24 Sep 2010 13:19:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835396#M6289</guid>
      <dc:creator>Olaf_Krzikalla</dc:creator>
      <dc:date>2010-09-24T13:19:26Z</dc:date>
    </item>
    <item>
      <title>Hi </title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835397#M6290</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I am facing problem regarding Pin installation in windows 7.&lt;/P&gt;

&lt;P&gt;Do you have any good tutorials?&lt;/P&gt;</description>
      <pubDate>Sun, 04 Jan 2015 17:36:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835397#M6290</guid>
      <dc:creator>Sukriti_B_</dc:creator>
      <dc:date>2015-01-04T17:36:41Z</dc:date>
    </item>
    <item>
      <title>Hello,</title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835398#M6291</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;You might try posting your question here: &lt;A href="https://groups.yahoo.com/neo/groups/pinheads/info" target="_blank"&gt;https://groups.yahoo.com/neo/groups/pinheads/info&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Regards, Hal&lt;/P&gt;

&lt;P style="margin: 0px 0px 1.5em; padding: 0px; font-family: Arial, 宋体, Tahoma, Helvetica, sans-serif; font-size: 12px; font-weight: normal; color: rgb(83, 87, 94); font-style: normal; font-variant: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255);"&gt;Intel(R) Developer Zone Support&lt;/P&gt;

&lt;P style="margin: 0px 0px 1.5em; padding: 0px; font-family: Arial, 宋体, Tahoma, Helvetica, sans-serif; font-size: 12px; font-weight: normal; color: rgb(83, 87, 94); font-style: normal; font-variant: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255);"&gt;&lt;A href="http://software.intel.com/" style="margin: 0px; padding: 0px; color: rgb(8, 109, 182); text-decoration: none; font-family: Arial, 宋体, Tahoma, Helvetica, sans-serif; font-weight: normal;"&gt;http://software.intel.com&lt;/A&gt;&lt;BR /&gt;
	*Other names and brands may be claimed as the property of others.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jan 2015 19:29:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835398#M6291</guid>
      <dc:creator>Harold_G_Intel</dc:creator>
      <dc:date>2015-01-09T19:29:14Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835399#M6292</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I would like to use Pin compatible on ARM architecture. I am not able to find any download link for the same. Kindly can you let me knwo the download path for the same. Will the pintools for linux OS present in path &lt;EM&gt;&lt;A href="https://software.intel.com/en-us/articles/pintool-downloads" target="_blank"&gt;https://software.intel.com/en-us/articles/pintool-downloads&lt;/A&gt;&lt;/EM&gt;&amp;nbsp; be compatible for ARM.&lt;/P&gt;

&lt;P&gt;Thanking in Advance&lt;/P&gt;</description>
      <pubDate>Thu, 27 Aug 2015 12:46:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835399#M6292</guid>
      <dc:creator>srijoni_m_</dc:creator>
      <dc:date>2015-08-27T12:46:38Z</dc:date>
    </item>
    <item>
      <title>Hello,</title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835400#M6293</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="color: rgb(83, 87, 94); font-family: Arial, 宋体, Tahoma, Helvetica, sans-serif; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline !important; float: none; background-color: rgb(255, 255, 255);"&gt;Please join the pinheads Yahoo* group and ask this question there. &lt;/SPAN&gt;&lt;A href="http://tech.groups.yahoo.com/group/pinheads" style="margin: 0px; padding: 0px; color: rgb(8, 109, 182); text-decoration: none; font-family: Arial, 宋体, Tahoma, Helvetica, sans-serif; font-weight: normal; font-size: 12px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 18px; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255);"&gt;http://tech.groups.yahoo.com/group/pinheads&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Regards, Hal&lt;/P&gt;

&lt;P&gt;Intel(R) Developer Zone Support&lt;/P&gt;

&lt;P&gt;&lt;A href="http://software.intel.com/"&gt;http://software.intel.com&lt;/A&gt;&lt;BR /&gt;
	*Other names and brands may be claimed as the property of others.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Aug 2015 19:47:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835400#M6293</guid>
      <dc:creator>Harold_G_Intel</dc:creator>
      <dc:date>2015-08-27T19:47:09Z</dc:date>
    </item>
    <item>
      <title>Please tell me how to</title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835401#M6294</link>
      <description>&lt;P&gt;Please tell me how to generate the PIN PLUG-IN for ECLIPSE, I use windows Xp and MinGW compiler. please help me. Thank You&lt;/P&gt;</description>
      <pubDate>Sat, 19 Dec 2015 15:49:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835401#M6294</guid>
      <dc:creator>KAUSHIK_S_</dc:creator>
      <dc:date>2015-12-19T15:49:33Z</dc:date>
    </item>
    <item>
      <title>I had run the pintool8 manual</title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835402#M6295</link>
      <description>&lt;P&gt;I had run the pintool8 manual program inscount0.cpp in visual studio &amp;amp; mingw and got the errors please help me to solve it&lt;/P&gt;

&lt;P&gt;the errors are attached&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2016 10:08:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835402#M6295</guid>
      <dc:creator>KAUSHIK_S_</dc:creator>
      <dc:date>2016-01-14T10:08:21Z</dc:date>
    </item>
    <item>
      <title>Subject: Error while</title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835403#M6296</link>
      <description>&lt;P&gt;&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;Subject: Error while compiling the manual examples using the PIN tool with the command "make all"&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;Dear all&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;I am new to the pintools. I am using PIN for my M.tech project.&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;Details of software I am using are as follows&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;1. OS- Microsoft Windows XP [Version 5.1.2600]&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;2. Compiler MinGW Version 2, June 1991&amp;amp; Microsoft visual studio 2010 express&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;3.Pin tool package "pin-2.13-62141-msvc8-windows" Rev-62141,Date&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;Nov,22,2013,Compiler Kit- VC8&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;4. Cygwin.&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;I am trying to build the manual examples of PIN and getting following&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;messages while building the tools using "make all" command: in dos&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;command prompt&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;&amp;nbsp;------------------------------&lt;/SPAN&gt;&lt;WBR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;------message-----------------&lt;/SPAN&gt;&lt;WBR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;----------&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;C:\pin-2.12-58423-msvc8-&lt;/SPAN&gt;&lt;WBR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;windows\source\tools\&lt;/SPAN&gt;&lt;WBR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;ManualExamples&amp;gt;make all&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;link /DLL /EXPORT:main /NODEFAULTLIB /NOLOGO /INCREMENTAL:NO /MACHINE:x86 /ENTRY&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;:Ptrace_DllMainCRTStartup@12 /BASE:0x55000000 /OPT:REF&amp;nbsp; /out:obj-ia32/inscount0.&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;dll obj-ia32/inscount0.obj&amp;nbsp; /LIBPATH:../../../ia32/lib /LIBPATH:../../../ia32/li&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;b-ext /LIBPATH:../../../extras/xed2-&lt;/SPAN&gt;&lt;WBR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;ia32/lib pin.lib libxed.lib libcpmt.lib libc&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;mt.lib pinvm.lib kernel32.lib ntdll-32.lib&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;link: extra operand '/NODEFAULTLIB'&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;Try 'link --help' for more information.&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;../../../source/tools/Config/&lt;/SPAN&gt;&lt;WBR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;makefile.default.rules:156: recipe for target 'obj-&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;ia32/inscount0.dll' failed&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;make: *** [obj-ia32/inscount0.dll] Error 1&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;------------------------------&lt;/SPAN&gt;&lt;WBR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;message end---------------------------&lt;/SPAN&gt;&lt;WBR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;---&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;Please help me to solve the problem&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;you can directly email me the solution email add= abirsarkar1987@gmail.com&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;thanks&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;Kaushik Sarkar&lt;/SPAN&gt;&lt;BR style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;" /&gt;
	&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px; line-height: normal;"&gt;M.Tech (cse) cu&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2016 17:26:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835403#M6296</guid>
      <dc:creator>KAUSHIK_S_</dc:creator>
      <dc:date>2016-01-25T17:26:52Z</dc:date>
    </item>
    <item>
      <title>Hello,</title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835404#M6297</link>
      <description>&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;Hello,&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;Please join the pinheads Yahoo* group and ask this question there.&amp;nbsp;&lt;A href="http://tech.groups.yahoo.com/group/pinheads" rel="nofollow"&gt;http://tech.groups.yahoo.com/group/pinheads&lt;/A&gt;&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;Regards, Hal&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;Intel(R) Developer Zone Support&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;&lt;A href="http://software.intel.com/"&gt;http://software.intel.com&lt;/A&gt;&lt;BR /&gt;
	*Other names and brands may be claimed as the property of others.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2016 17:49:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835404#M6297</guid>
      <dc:creator>Harold_G_Intel</dc:creator>
      <dc:date>2016-01-25T17:49:12Z</dc:date>
    </item>
    <item>
      <title>Hi All, I am facing issue</title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835405#M6298</link>
      <description>&lt;P&gt;Hi All, I am facing issue using pin on linux 4.0. Has anyone else face the same issue.&amp;nbsp;&lt;/P&gt;

&lt;P style="margin-bottom: 1em; border: 0px; font-size: 15px; clear: both; color: rgb(34, 36, 38); font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; line-height: 19.5px;"&gt;Terminal Output&lt;/P&gt;

&lt;PRE style="margin-top: 0px; margin-bottom: 1em; padding: 5px; border: 0px; font-size: 13px; overflow: auto; width: auto; max-height: 600px; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif; word-wrap: normal; color: rgb(34, 36, 38); background-color: rgb(238, 238, 238);"&gt;&lt;CODE style="margin: 0px; padding: 0px; border: 0px; font-size: 13px; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif; white-space: inherit;"&gt;pin/source/tools/ManualExamples$ ../../../pin -t obj-intel64/inscount0.so -- /bin/ls
E: 4.0 is not a supported linux release
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P style="margin-bottom: 1em; border: 0px; font-size: 15px; clear: both; color: rgb(34, 36, 38); font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; line-height: 19.5px;"&gt;Does pin not support latest linux kernel?&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&lt;A href="http://stackoverflow.com/questions/35511380/intel-pin-tool-on-linux-4-0" target="_blank"&gt;http://stackoverflow.com/questions/35511380/intel-pin-tool-on-linux-4-0&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Any suggestions would be really helpful. Thanks! Manish&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2016 19:04:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835405#M6298</guid>
      <dc:creator>Manish_G_1</dc:creator>
      <dc:date>2016-02-19T19:04:35Z</dc:date>
    </item>
    <item>
      <title>Hi Everyone. I want to write</title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835406#M6299</link>
      <description>&lt;P&gt;Hi Everyone. I want to write a pintool to record the frame pointer of each function call at runtime. Is there any API function that can be used to retrieve the current frame pointer. &amp;nbsp;I tried to instrument the binary by adding a function call &amp;nbsp;&lt;SPAN class="s1"&gt;_builtin_frame_address() at the end of each function call. It seems that the stack addresses was messed up. I think maybe it is because pin does dynamic instrumentation. Any idea of how to solve the problem?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2016 16:46:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835406#M6299</guid>
      <dc:creator>Hao_L_1</dc:creator>
      <dc:date>2016-03-01T16:46:39Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835407#M6300</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Is it normal that using INS_MemoryOperandCount(ins) from within the trace subroutine of pinatrace and then calling it from RecordMemWrite predicated call&amp;nbsp;routine display different results.&lt;/P&gt;

&lt;P&gt;if (INS_MemoryOperandIsWritten(ins, memOp))&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; INS_InsertPredicatedCall(&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ins, IPOINT_BEFORE, (AFUNPTR)RecordMemWrite,&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; IARG_INST_PTR,&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; IARG_MEMORYOP_EA, memOp,IARG_PTR,ins,&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; IARG_END);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }} }&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;VOID RecordMemWrite(ADDRINT * ip, ADDRINT * addr,INS ins)&lt;BR /&gt;
	{&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 13.008px;"&gt;cout&amp;lt;&amp;lt;INS_MemoryOperandCount(ins);&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 13.008px;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 13.008px;"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2017 14:56:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835407#M6300</guid>
      <dc:creator>Nadeen_G_Intel</dc:creator>
      <dc:date>2017-04-19T14:56:00Z</dc:date>
    </item>
    <item>
      <title>Yes. But I would use a CRT</title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835408#M6301</link>
      <description>Yes. But I would use a CRT &lt;STRONG&gt;printf&lt;/STRONG&gt; function inside of &lt;STRONG&gt;RecordMemWrite&lt;/STRONG&gt; instead of &lt;STRONG&gt;cout&lt;/STRONG&gt; C++ stream.

Also, I hope that you know about &lt;A href="https://software.intel.com/sites/landingpage/pintool/docs/53271/Pin/html/group__INS__BASIC__API__GEN__IA32.html" target="_blank"&gt;https://software.intel.com/sites/landingpage/pintool/docs/53271/Pin/html/group__INS__BASIC__API__GEN__IA32.html&lt;/A&gt;</description>
      <pubDate>Wed, 19 Apr 2017 16:11:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835408#M6301</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2017-04-19T16:11:39Z</dc:date>
    </item>
    <item>
      <title>Hi I am trying to use the</title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835409#M6302</link>
      <description>&lt;P&gt;Hi I am trying to use the Intel Pin tool to emulate some new instructions. I am using the x86_64/ intel64 architecture. I am trying to use opcodes which are undefined in the original architecture, as new instructions. So I am using a c program which calls these instructions using the asm functions.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;For example I am using the opcode 0x17, which is undefined in x86 to emulate a new instruction. However when I run an instruction trace from the Pin tool, I see that 0x17 is used by some other instruction which is "add" and my when I run the Pin tool with my &amp;nbsp;c program executable, I keep getting the Illegal instruction program. I am not able to figure out the actual instruction trace, and I feel that it is probably not the x86 instruction trace I am expecting.&lt;/P&gt;

&lt;P&gt;Can anyone suggest what I am doing wrong?&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2017 06:02:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835409#M6302</guid>
      <dc:creator>Rohit_P_1</dc:creator>
      <dc:date>2017-10-02T06:02:11Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835410#M6303</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I am trying to use PIN tool with a trace driven simulator. I want to feed the traces (generated by the PIN tool) to the simulator by using shared memory.&amp;nbsp; For this, I wrote a tool in which I create a shared memory region by using "ftok() and shmget()" from "ipc.h and shm.h", respectively.&lt;/P&gt;

&lt;P&gt;When I make (and link) the tool, the linker command fails with the following error for ftok and shmget:&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;Undefined symbols for architecture x86_64:
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
&lt;/PRE&gt;

&lt;P&gt;I am using the following libraries &lt;SPAN class="m_-9155101970931740572gmail-s1" style="font-variant-ligatures:no-common-ligatures"&gt;-lpin -lxed -lpin3dwarf -nostdlib -lstlport-dynamic -lm-dynamic -lc-dynamic -lunwind-dynamic while linking. However, if I add the&amp;nbsp; libc library using "-lc", then I am able to successfully compile my code, but when i run it, then pin is unable to load the compiled library. &lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN class="m_-9155101970931740572gmail-s1" style="font-variant-ligatures:no-common-ligatures"&gt;I am using Pin 3.7 (kit:&lt;/SPAN&gt;&lt;A href="https://software.intel.com/sites/landingpage/pintool/downloads/pin-3.7-97619-g0d0c92f4f-clang-mac.tar.gz" rel="nofollow"&gt;97619 &lt;/A&gt;&lt;SPAN class="m_-9155101970931740572gmail-s1" style="font-variant-ligatures:no-common-ligatures"&gt;for OS X) on macOS High Sierra, with LLVM version 9.1.0 &lt;/SPAN&gt;&lt;SPAN class="m_-1595413022977833512gmail-s1" style="font-variant-ligatures:no-common-ligatures"&gt;(clang-902.0.39.2). Any suggestions woud really be helpful.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN class="m_-1595413022977833512gmail-s1" style="font-variant-ligatures:no-common-ligatures"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;

&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Thu, 12 Jul 2018 07:31:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835410#M6303</guid>
      <dc:creator>Singla__Priyanka</dc:creator>
      <dc:date>2018-07-12T07:31:13Z</dc:date>
    </item>
    <item>
      <title>引文：KAUSHIK S. 写道：</title>
      <link>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835411#M6304</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;KAUSHIK S. wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Subject: Error while compiling the manual examples using the PIN tool with the command "make all"&lt;BR /&gt;
	Dear all&lt;BR /&gt;
	I am new to the pintools. I am using PIN for my M.tech project.&lt;BR /&gt;
	Details of software I am using are as follows&lt;/P&gt;

&lt;P&gt;1. OS- Microsoft Windows XP [Version 5.1.2600]&lt;BR /&gt;
	2. Compiler MinGW Version 2, June 1991&amp;amp; Microsoft visual studio 2010 express&lt;BR /&gt;
	3.Pin tool package "pin-2.13-62141-msvc8-windows" Rev-62141,Date&lt;BR /&gt;
	Nov,22,2013,Compiler Kit- VC8&lt;BR /&gt;
	4. Cygwin.&lt;/P&gt;

&lt;P&gt;I am trying to build the manual examples of PIN and getting following&lt;BR /&gt;
	messages while building the tools using "make all" command: in dos&lt;BR /&gt;
	command prompt&lt;BR /&gt;
	&amp;nbsp;------------------------------------message---------------------------&lt;/P&gt;

&lt;P&gt;C:\pin-2.12-58423-msvc8-windows\source\tools\ManualExamples&amp;gt;make all&lt;BR /&gt;
	link /DLL /EXPORT:main /NODEFAULTLIB /NOLOGO /INCREMENTAL:NO /MACHINE:x86 /ENTRY&lt;BR /&gt;
	:Ptrace_DllMainCRTStartup@12 /BASE:0x55000000 /OPT:REF&amp;nbsp; /out:obj-ia32/inscount0.&lt;BR /&gt;
	dll obj-ia32/inscount0.obj&amp;nbsp; /LIBPATH:../../../ia32/lib /LIBPATH:../../../ia32/li&lt;BR /&gt;
	b-ext /LIBPATH:../../../extras/xed2-ia32/lib pin.lib libxed.lib libcpmt.lib libc&lt;BR /&gt;
	mt.lib pinvm.lib kernel32.lib ntdll-32.lib&lt;BR /&gt;
	link: extra operand '/NODEFAULTLIB'&lt;BR /&gt;
	Try 'link --help' for more information.&lt;BR /&gt;
	../../../source/tools/Config/makefile.default.rules:156: recipe for target 'obj-&lt;BR /&gt;
	ia32/inscount0.dll' failed&lt;BR /&gt;
	make: *** [obj-ia32/inscount0.dll] Error 1&lt;BR /&gt;
	------------------------------message end------------------------------&lt;/P&gt;

&lt;P&gt;Please help me to solve the problem&lt;/P&gt;

&lt;P&gt;you can directly email me the solution email add= &lt;A href="mailto:abirsarkar1987@gmail.com"&gt;abirsarkar1987@gmail.com&lt;/A&gt;&lt;BR /&gt;
	thanks&lt;BR /&gt;
	Kaushik Sarkar&lt;BR /&gt;
	M.Tech (cse) cu&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;hi,sarkar&lt;/P&gt;

&lt;P&gt;i have the same problem as you met.May you give me advice? thank you in advance.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;------------msg start--------------&lt;/P&gt;

&lt;P&gt;link /DLL /EXPORT:main /NODEFAULTLIB /NOLOGO /INCREMENTAL:NO /MACHINE:x86 /ENTRY&lt;BR /&gt;
	:Ptrace_DllMainCRTStartup@12 /BASE:0x55000000 /OPT:REF&amp;nbsp; /out:obj-ia32/inscount0.&lt;BR /&gt;
	dll obj-ia32/inscount0.obj&amp;nbsp; /LIBPATH:../../../ia32/lib /LIBPATH:../../../ia32/li&lt;BR /&gt;
	b-ext /LIBPATH:../../../extras/xed-ia32/lib pin.lib libxed.lib libcpmt.lib libcm&lt;BR /&gt;
	t.lib pinvm.lib kernel32.lib ntdll-32.lib&lt;BR /&gt;
	link: extra operand '/NODEFAULTLIB'&lt;BR /&gt;
	Try 'link --help' for more information.&lt;BR /&gt;
	make: *** [../../../source/tools/Config/makefile.default.rules:178: obj-ia32/ins&lt;BR /&gt;
	count0.dll] Error 1&lt;/P&gt;

&lt;P&gt;-----------msg end--------------&lt;/P&gt;</description>
      <pubDate>Tue, 16 Oct 2018 01:49:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/pin-tools-forum/m-p/835411#M6304</guid>
      <dc:creator>luis__leo</dc:creator>
      <dc:date>2018-10-16T01:49:22Z</dc:date>
    </item>
  </channel>
</rss>

