<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-openembedded.git/meta-oe/recipes-devtools/ltrace, branch dunfell</title>
<subtitle>Mirror of git.openembedded.org/meta-openembedded</subtitle>
<id>https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=dunfell</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=dunfell'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/'/>
<updated>2021-11-17T20:26:21+00:00</updated>
<entry>
<title>recipes: Update SRC_URI branch and protocols</title>
<updated>2021-11-17T20:26:21+00:00</updated>
<author>
<name>Armin Kuster</name>
<email>akuster808@gmail.com</email>
</author>
<published>2021-11-07T19:09:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=59bff77ad0b3a66417194670de25f60183a4f6bb'/>
<id>urn:sha1:59bff77ad0b3a66417194670de25f60183a4f6bb</id>
<content type='text'>
This patch updates SRC_URIs using git to include branch=master if no branch is set
and also to use protocol=https for github urls as generated by the conversion script
in OE-Core.

Signed-off-by: Armin Kuster &lt;akuster808@gmail.com&gt;
</content>
</entry>
<entry>
<title>ltrace: Do not build on riscv</title>
<updated>2020-04-25T15:32:41+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2020-04-22T23:13:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=d7b31f2bf4a04639f97da0f33dd9ef575e4303f3'/>
<id>urn:sha1:d7b31f2bf4a04639f97da0f33dd9ef575e4303f3</id>
<content type='text'>
Does not have riscv port yet

Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>ltrace: Fix build with gcc10</title>
<updated>2019-12-25T16:55:26+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2019-12-24T03:39:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=7b9eb2fb1799319a9a0231cbb0b8276b494c2aa7'/>
<id>urn:sha1:7b9eb2fb1799319a9a0231cbb0b8276b494c2aa7</id>
<content type='text'>
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>ltrace: Remove RDEPENDS on elfutils</title>
<updated>2019-11-16T01:59:35+00:00</updated>
<author>
<name>Adrian Bunk</name>
<email>bunk@stusta.de</email>
</author>
<published>2019-11-15T08:06:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=267ac62cd336c63219a1047d99d59b8afcb979f1'/>
<id>urn:sha1:267ac62cd336c63219a1047d99d59b8afcb979f1</id>
<content type='text'>
It was added without a rationale and seems unnecessary.
A runtime dependency on libelf is already automatically generated.

Signed-off-by: Adrian Bunk &lt;bunk@stusta.de&gt;
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>ltrace:Bug fix for data type length judgment</title>
<updated>2019-10-21T11:44:10+00:00</updated>
<author>
<name>Zang Ruochen</name>
<email>zangrc.fnst@cn.fujitsu.com</email>
</author>
<published>2019-10-21T03:13:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=81f0a3c12f44e72ee91b0b0654956bbd05df7b0e'/>
<id>urn:sha1:81f0a3c12f44e72ee91b0b0654956bbd05df7b0e</id>
<content type='text'>
...
if (byte_size == sizeof(long)) {

        *type = is_signed ? ARGTYPE_LONG : ARGTYPE_ULONG;

        return true;

}
...

If ltrace's target command has a dbg package, ltrace will look for the debug file and analyze its contents.
Ltrace determines the type of analysis result variable. The type of the variable is longlong.
On 32-bit systems, longlong is 8 and long is 4 (same as in).
An error occurred because the ltrace code did not process a variable of length 8.

Signed-off-by: Zang Ruochen &lt;zangrc.fnst@cn.fujitsu.com&gt;
Signed-off-by: Wang Mingyu &lt;wangmy.fnst@cn.fujitsu.com&gt;
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>ltrace: Fix build on mips</title>
<updated>2019-09-07T17:08:45+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2019-09-06T21:23:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=720a2ffe85cff1d24012b14e9ab47a6a239cd9eb'/>
<id>urn:sha1:720a2ffe85cff1d24012b14e9ab47a6a239cd9eb</id>
<content type='text'>
Newer kernel UAPI headers for mips have moved these needed defines
around

Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>ltrace: Fix build with clang</title>
<updated>2019-02-06T00:43:12+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2019-02-04T08:43:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=1a502b3086d0490afb527fb919f1d5e051dd8e43'/>
<id>urn:sha1:1a502b3086d0490afb527fb919f1d5e051dd8e43</id>
<content type='text'>
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>ltrace: Fix a NULL string use</title>
<updated>2018-12-23T21:29:20+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2018-12-20T19:33:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=79ab090e2f5b53ea317ed0038b4f408665f6908c'/>
<id>urn:sha1:79ab090e2f5b53ea317ed0038b4f408665f6908c</id>
<content type='text'>
This case is likely to happen when mod == NULL so print it when
we are computing modname and symname

Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>ltrace_git: Update SRC_URI due to inaccessible problem</title>
<updated>2018-08-21T17:35:49+00:00</updated>
<author>
<name>Junil Kim</name>
<email>logyourself@gmail.com</email>
</author>
<published>2018-08-21T11:24:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=bdded3422e7d58298c3598df6422902db42a04e4'/>
<id>urn:sha1:bdded3422e7d58298c3598df6422902db42a04e4</id>
<content type='text'>
Existing URI service was closed and fetch error occurred.
Change existing repository to another mirrored SRC URI.

Signed-off-by: Junil Kim &lt;jjunil79.kim@lge.com&gt;
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
</entry>
<entry>
<title>ltrace: Fix build with musl/mips</title>
<updated>2017-09-22T22:50:45+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2017-09-19T16:31:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=f75b3ac72099ba48f9351fd8551588d002867778'/>
<id>urn:sha1:f75b3ac72099ba48f9351fd8551588d002867778</id>
<content type='text'>
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
</feed>
