savolla has quit [Read error: Connection reset by peer]
savolla has joined #yocto
savolla has quit [Read error: Connection reset by peer]
savolla has joined #yocto
Xagen has quit [Ping timeout: 252 seconds]
Xagen has joined #yocto
Danct12 has quit [Server closed connection]
Danct12 has joined #yocto
savolla has quit [Quit: WeeChat 4.6.3]
dvergatal has quit [Read error: Connection reset by peer]
savolla has joined #yocto
dvergatal has joined #yocto
zeemate has joined #yocto
zeemate has quit [Remote host closed the connection]
zeemate has joined #yocto
goliath has joined #yocto
florian has joined #yocto
savolla has quit [Read error: Connection reset by peer]
savolla has joined #yocto
dmoseley has quit [Ping timeout: 260 seconds]
ptsneves has joined #yocto
dmoseley has joined #yocto
<walter>
Hello, I have a question, how does one fix this error? https://bpa.st/XX6IOM5RGNWTWU76OXEDOUCJ5U -- I've checked the poky source, and the license seems to be defined correctly in `python3-markupsafe_3.0.2.bb`. So it's probably an issue on the python side, right? (thanks)
vthor has joined #yocto
savolla has quit [Quit: WeeChat 4.7.0]
silviu_ has joined #yocto
silviu has quit [Ping timeout: 260 seconds]
dlan has quit [Quit: Lost terminal]
dlan has joined #yocto
goliath has quit [Quit: SIGSEGV]
<Scorpi>
walter: "error: invalid command 'egg_info'" - I guess this is the actual error
sakman has quit [Server closed connection]
sakman has joined #yocto
goliath has joined #yocto
suihkulokki has quit [Server closed connection]
suihkulokki has joined #yocto
RyanEatmon has quit [Remote host closed the connection]
RyanEatmon has joined #yocto
Daanct12 has quit [Quit: WeeChat 4.7.0]
mario-goulart has quit [Remote host closed the connection]
mario-goulart has joined #yocto
mario-goulart has quit [Read error: Connection reset by peer]
mario-goulart has joined #yocto
<walter>
oh, good point, I didn't see that line
<walter>
I got over the error. I had to install some python3 packages in my OS to fix that error. That was strange, I wasn't expecting to need some OS dependencies.
pita has joined #yocto
vthor has quit [Quit: kill -9 $pid]
pita has quit [Read error: Connection reset by peer]
pita has joined #yocto
vthor has joined #yocto
vthor has joined #yocto
silviu_ has quit [Remote host closed the connection]
silviu_ has joined #yocto
silviu_ has quit [Remote host closed the connection]
silviu has joined #yocto
goliath has quit [Quit: SIGSEGV]
Articulus has joined #yocto
<khem>
walter: which release are you on ?
<khem>
sometimes versions of setuptools in use can also cause such problems
<walter>
I've on the master version of poky, and I've had to run update setuptools to latest version via PIP, the OS version wasn't recent enough (even though I'm on Fedora 42, and it has recent versions of everything)
<walter>
Question, what are these QA errors? Are they for reproducible builds, and can I disable them? ERROR: QA Issue: File X in package mesa-vulkan-drivers contains reference to TMPDIR [buildpaths] -- https://bpa.st/PIDTYQ5HPRX7AQT5CHG6SLM53E
<walter>
I'm monkeying around with some BSP layers for a board I'll have next week, so I don't really care about reproducible builds.
goliath has quit [Quit: SIGSEGV]
<walter>
Is there a way to downgrade a package? I'm looking at the `Errors and Warnings` section in the QA section of the Reference Manual, I found my error there, but it recommends finding and fixing the issue! But, I'm not experienced enough to do that, so I'm thinking that maybe downgrading the package would fix the issue.
pita has quit [Remote host closed the connection]
tec4 has quit [Server closed connection]
tec4 has joined #yocto
<RP>
walter: if you want to ignore it, ERROR_QA:remove = "buildpaths" will disable that check, at your own risk
kanavin has quit [Ping timeout: 272 seconds]
<walter>
thanks! that has worked, but I've ran into other issues, so I've switched away from the poky master branch and I'm now trying my luck with `walnascar`.
<khem>
RP: -march=core2 works -march=x86-64-v3 shows the failure in that perl test
<khem>
source code shows bit of pointer type punning and Pack/unpack uses C structs/unions and copies them as raw memory blobs. structs contain padding or partially written fields.it seems perl is assuming they will be zero initialized
<khem>
I will try building with -fsanitize=memory and see if my assersion is right.
<khem>
It works with clang fine and I guess its because we use -fno-strict-aliasing with clang
<khem>
maybe we should add -march=core2 to cflags in perl recipe and move on