9front - general discussion about 9front
 help / color / mirror / Atom feed
* Re: [9front] Cannot build system on latest rpi4 (libbio errors)
@ 2020-11-21 22:31 Romano
  2020-11-22  2:29 ` ori
  0 siblings, 1 reply; 9+ messages in thread
From: Romano @ 2020-11-21 22:31 UTC (permalink / raw)
  To: 9front

[-- Attachment #1: Type: text/plain, Size: 754 bytes --]

To clarify, the failure wasn't exactly the same. Here is where it failed:

cd ../smtp && mk rfc822.tab.7
mk: 'rfc822.tab.7' is up to date
7c -FTVw -I../common ml.c
7c -FTVw -I../common common.c
dat.h:4 ml.c:2 7c: '../smtp/rfc822.tab.h' does not exist: ../smtp/rfc822.tab.h
mk: 7c -FTVw -I../common ml.c  : exit status=rc 12259: 7c 12261: error
dat.h:4 common.c:2 7c: '../smtp/rfc822.tab.h' does not exist: ../smtp/rfc822.tab.h
mk: for (i in ...  : exit status=rc 12253: mk 12255: error
mk: for (i in ...  : exit status=rc 12167: rc 12251: mk 12252: error
mk: for(i in 1a ...  : exit status=rc 9974: rc 12164: mk 12166: error
mk: test -e 7._cp ...  : exit status=rc 9442: mk 9957: error
mk: date for (i ...  : exit status=rc 7740: rc 9424: mk 9425: error

[-- Attachment #2: Type: message/rfc822, Size: 18326 bytes --]

[-- Attachment #2.1.1: Type: text/plain, Size: 297 bytes --]

Not sure if it was meant to be required after Amavect's latest mk
changes, but I had to do this after updating to the latest commit.  I
had followed FQA 5 to just do mk install under /sys/src, which wasn't
sufficient. I'll comment again if I need to do it down the road but
thought I'd mention it.

[-- Attachment #2.1.2: Type: message/rfc822, Size: 9445 bytes --]

From: ori@eigenstate.org
To: unobe@cpan.org, 9front@9front.org
Subject: Re: [9front] Cannot build system on latest rpi4 (libbio errors)
Date: Mon, 02 Nov 2020 12:55:12 -0800
Message-ID: <40159D135FE3FAB9F9029B243CC5BEF1@eigenstate.org>

> I ran sysupdate last night and attempted to rebuild the system, but it fails with some errors about libbio:
> 
> cpu% cd /sys/src
> cpu% mk install
> ...
> 7l  -o 7.out aliasmail.7 ../common/libcommon.a7
> ??none??: incompatible type signatures c0a3cfae(../common/libcommon.a7(sysnames_read)) and 9dd3ea4c(/arm64/lib/libbio.a(Bseek)) for Bseek
> badd: incompatible type signatures e8001435(../common/libcommon.a7(sysnames_read)) and 34728a43(/arm64/lib/libbio.a(Brdstr)) for Brdstr
> Binits: incompatible type signatures ac447a74(../common/libcommon.a7(sysnames_read)) and ce449e92(/arm64/lib/libbio.a(Bopen)) for Binit
> Bfdopen: incompatible type signatures 29f5223c(../common/libcommon.a7(sysnames_read)) and 63f5472a(/arm64/lib/libbio.a(Bopen)) for Bopen
> Bopen: incompatible type signatures bb9b2306(../common/libcommon.a7(sysnames_read)) and f9b3864(/arm64/lib/libbio.a(Bopen)) for Bterm
> ??none??: incompatible type signatures bb9b2306(../common/libcommon.a7(sysnames_read)) and f9b3864(/arm64/lib/libbio.a(Bfildes)) for Bfildes
> mk: 7l  -o ...  : exit status=rc 420270: 7l 420272: error
> mk: for (i in ...  : exit status=rc 420228: rc 420265: mk 420266: error
> mk: for(i in 1a ...  : exit status=rc 403330: rc 420225: mk 420227: error
> mk: test -e 7._cp ...  : exit status=rc 401470: mk 403313: error
> mk: date for (i ...  : exit status=rc 392586: rc 401452: mk 401453: error
> cpu%
> 
> I attempted to resolve by first rebuilding /sys/src/cc, then /sys/src/7c, as mentioned in FQA 5. I then tried 'mk clean', and 'mk libs', and still no success.  I would have thought that a 'mk clean' would have worked, but from the message above it looks like the build is using the system's libbio and it's expecting different type signatures. I looked at the commit log for 9front but didn't see anything recently that would modify libbio.
> 
> The only reference I found on google is here, with a different project: https://github.com/Orc/discount/issues/193

Let me guess, that's upas? I think the mkfiles there need
another look -- I don't think we rebuild libcommon when
we should.

Try 'cd /sys/src/cmd/upas && mk nuke'.

^ permalink raw reply	[flat|nested] 9+ messages in thread
* Re: [9front] Cannot build system on latest rpi4 (libbio errors)
@ 2020-11-22  4:07 Romano
  0 siblings, 0 replies; 9+ messages in thread
From: Romano @ 2020-11-22  4:07 UTC (permalink / raw)
  To: 9front

> On 11/21/2020 8:29 PM, ori@eigenstate.org wrote:
>> Hm.. can you try from a clean build?
> 
> mk clean isn't cleaning *.tab.? as I had intended.
> I'll look into this.

'mk clean', then 'mk install' works like a charm--no problems.
Apologies for the noise.


^ permalink raw reply	[flat|nested] 9+ messages in thread
* Re: [9front] Cannot build system on latest rpi4 (libbio errors)
@ 2020-11-21 22:27 Romano
  0 siblings, 0 replies; 9+ messages in thread
From: Romano @ 2020-11-21 22:27 UTC (permalink / raw)
  To: 9front

[-- Attachment #1: Type: text/plain, Size: 297 bytes --]

Not sure if it was meant to be required after Amavect's latest mk
changes, but I had to do this after updating to the latest commit.  I
had followed FQA 5 to just do mk install under /sys/src, which wasn't
sufficient. I'll comment again if I need to do it down the road but
thought I'd mention it.

[-- Attachment #2: Type: message/rfc822, Size: 9445 bytes --]

From: ori@eigenstate.org
To: unobe@cpan.org, 9front@9front.org
Subject: Re: [9front] Cannot build system on latest rpi4 (libbio errors)
Date: Mon, 02 Nov 2020 12:55:12 -0800
Message-ID: <40159D135FE3FAB9F9029B243CC5BEF1@eigenstate.org>

> I ran sysupdate last night and attempted to rebuild the system, but it fails with some errors about libbio:
> 
> cpu% cd /sys/src
> cpu% mk install
> ...
> 7l  -o 7.out aliasmail.7 ../common/libcommon.a7
> ??none??: incompatible type signatures c0a3cfae(../common/libcommon.a7(sysnames_read)) and 9dd3ea4c(/arm64/lib/libbio.a(Bseek)) for Bseek
> badd: incompatible type signatures e8001435(../common/libcommon.a7(sysnames_read)) and 34728a43(/arm64/lib/libbio.a(Brdstr)) for Brdstr
> Binits: incompatible type signatures ac447a74(../common/libcommon.a7(sysnames_read)) and ce449e92(/arm64/lib/libbio.a(Bopen)) for Binit
> Bfdopen: incompatible type signatures 29f5223c(../common/libcommon.a7(sysnames_read)) and 63f5472a(/arm64/lib/libbio.a(Bopen)) for Bopen
> Bopen: incompatible type signatures bb9b2306(../common/libcommon.a7(sysnames_read)) and f9b3864(/arm64/lib/libbio.a(Bopen)) for Bterm
> ??none??: incompatible type signatures bb9b2306(../common/libcommon.a7(sysnames_read)) and f9b3864(/arm64/lib/libbio.a(Bfildes)) for Bfildes
> mk: 7l  -o ...  : exit status=rc 420270: 7l 420272: error
> mk: for (i in ...  : exit status=rc 420228: rc 420265: mk 420266: error
> mk: for(i in 1a ...  : exit status=rc 403330: rc 420225: mk 420227: error
> mk: test -e 7._cp ...  : exit status=rc 401470: mk 403313: error
> mk: date for (i ...  : exit status=rc 392586: rc 401452: mk 401453: error
> cpu%
> 
> I attempted to resolve by first rebuilding /sys/src/cc, then /sys/src/7c, as mentioned in FQA 5. I then tried 'mk clean', and 'mk libs', and still no success.  I would have thought that a 'mk clean' would have worked, but from the message above it looks like the build is using the system's libbio and it's expecting different type signatures. I looked at the commit log for 9front but didn't see anything recently that would modify libbio.
> 
> The only reference I found on google is here, with a different project: https://github.com/Orc/discount/issues/193

Let me guess, that's upas? I think the mkfiles there need
another look -- I don't think we rebuild libcommon when
we should.

Try 'cd /sys/src/cmd/upas && mk nuke'.

^ permalink raw reply	[flat|nested] 9+ messages in thread
* Re: [9front] Cannot build system on latest rpi4 (libbio errors)
@ 2020-11-02 21:00 Romano
  0 siblings, 0 replies; 9+ messages in thread
From: Romano @ 2020-11-02 21:00 UTC (permalink / raw)
  To: 9front

>> I ran sysupdate last night and attempted to rebuild the system, but it fails with some errors about libbio:
>> ...
> 
> Let me guess, that's upas? I think the mkfiles there need
> another look -- I don't think we rebuild libcommon when
> we should.
> 
> Try 'cd /sys/src/cmd/upas && mk nuke'.

Ori, thank you! After doing that, I'm re-running 'mk install' from /sys/src and it looks like the system is continuing to build.


^ permalink raw reply	[flat|nested] 9+ messages in thread
* Re: [9front] Cannot build system on latest rpi4 (libbio errors)
@ 2020-11-02 20:55 Romano
  0 siblings, 0 replies; 9+ messages in thread
From: Romano @ 2020-11-02 20:55 UTC (permalink / raw)
  To: 9front

[-- Attachment #1: Type: text/plain, Size: 155 bytes --]

Forgot to include the last (pertinent) paragraph:

Anyone have insight? Do I have to install the libraries first, then re-run 'mk install' under /sys/src?

[-- Attachment #2: Type: message/rfc822, Size: 10335 bytes --]

From: Romano <unobe@cpan.org>
To: 9front@9front.org
Subject: [9front] Cannot build system on latest rpi4 (libbio errors)
Date: Mon, 02 Nov 2020 12:49:55 -0800
Message-ID: <764142D9A571BCEFEEFF50F715733FB8@smtp.pobox.com>

I ran sysupdate last night and attempted to rebuild the system, but it fails with some errors about libbio:

cpu% cd /sys/src
cpu% mk install
...
7l  -o 7.out aliasmail.7 ../common/libcommon.a7
??none??: incompatible type signatures c0a3cfae(../common/libcommon.a7(sysnames_read)) and 9dd3ea4c(/arm64/lib/libbio.a(Bseek)) for Bseek
badd: incompatible type signatures e8001435(../common/libcommon.a7(sysnames_read)) and 34728a43(/arm64/lib/libbio.a(Brdstr)) for Brdstr
Binits: incompatible type signatures ac447a74(../common/libcommon.a7(sysnames_read)) and ce449e92(/arm64/lib/libbio.a(Bopen)) for Binit
Bfdopen: incompatible type signatures 29f5223c(../common/libcommon.a7(sysnames_read)) and 63f5472a(/arm64/lib/libbio.a(Bopen)) for Bopen
Bopen: incompatible type signatures bb9b2306(../common/libcommon.a7(sysnames_read)) and f9b3864(/arm64/lib/libbio.a(Bopen)) for Bterm
??none??: incompatible type signatures bb9b2306(../common/libcommon.a7(sysnames_read)) and f9b3864(/arm64/lib/libbio.a(Bfildes)) for Bfildes
mk: 7l  -o ...  : exit status=rc 420270: 7l 420272: error
mk: for (i in ...  : exit status=rc 420228: rc 420265: mk 420266: error
mk: for(i in 1a ...  : exit status=rc 403330: rc 420225: mk 420227: error
mk: test -e 7._cp ...  : exit status=rc 401470: mk 403313: error
mk: date for (i ...  : exit status=rc 392586: rc 401452: mk 401453: error
cpu%

I attempted to resolve by first rebuilding /sys/src/cc, then /sys/src/7c, as mentioned in FQA 5. I then tried 'mk clean', and 'mk libs', and still no success.  I would have thought that a 'mk clean' would have worked, but from the message above it looks like the build is using the system's libbio and it's expecting different type signatures. I looked at the commit log for 9front but didn't see anything recently that would modify libbio.

The only reference I found on google is here, with a different project: https://github.com/Orc/discount/issues/193

^ permalink raw reply	[flat|nested] 9+ messages in thread
* Cannot build system on latest rpi4 (libbio errors)
@ 2020-11-02 20:49 Romano
  2020-11-02 20:55 ` [9front] " ori
  0 siblings, 1 reply; 9+ messages in thread
From: Romano @ 2020-11-02 20:49 UTC (permalink / raw)
  To: 9front

I ran sysupdate last night and attempted to rebuild the system, but it fails with some errors about libbio:

cpu% cd /sys/src
cpu% mk install
...
7l  -o 7.out aliasmail.7 ../common/libcommon.a7
??none??: incompatible type signatures c0a3cfae(../common/libcommon.a7(sysnames_read)) and 9dd3ea4c(/arm64/lib/libbio.a(Bseek)) for Bseek
badd: incompatible type signatures e8001435(../common/libcommon.a7(sysnames_read)) and 34728a43(/arm64/lib/libbio.a(Brdstr)) for Brdstr
Binits: incompatible type signatures ac447a74(../common/libcommon.a7(sysnames_read)) and ce449e92(/arm64/lib/libbio.a(Bopen)) for Binit
Bfdopen: incompatible type signatures 29f5223c(../common/libcommon.a7(sysnames_read)) and 63f5472a(/arm64/lib/libbio.a(Bopen)) for Bopen
Bopen: incompatible type signatures bb9b2306(../common/libcommon.a7(sysnames_read)) and f9b3864(/arm64/lib/libbio.a(Bopen)) for Bterm
??none??: incompatible type signatures bb9b2306(../common/libcommon.a7(sysnames_read)) and f9b3864(/arm64/lib/libbio.a(Bfildes)) for Bfildes
mk: 7l  -o ...  : exit status=rc 420270: 7l 420272: error
mk: for (i in ...  : exit status=rc 420228: rc 420265: mk 420266: error
mk: for(i in 1a ...  : exit status=rc 403330: rc 420225: mk 420227: error
mk: test -e 7._cp ...  : exit status=rc 401470: mk 403313: error
mk: date for (i ...  : exit status=rc 392586: rc 401452: mk 401453: error
cpu%

I attempted to resolve by first rebuilding /sys/src/cc, then /sys/src/7c, as mentioned in FQA 5. I then tried 'mk clean', and 'mk libs', and still no success.  I would have thought that a 'mk clean' would have worked, but from the message above it looks like the build is using the system's libbio and it's expecting different type signatures. I looked at the commit log for 9front but didn't see anything recently that would modify libbio.

The only reference I found on google is here, with a different project: https://github.com/Orc/discount/issues/193



^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2020-11-22  4:17 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-21 22:31 [9front] Cannot build system on latest rpi4 (libbio errors) Romano
2020-11-22  2:29 ` ori
2020-11-22  3:29   ` Amavect
2020-11-22  4:07     ` Amavect
  -- strict thread matches above, loose matches on Subject: below --
2020-11-22  4:07 Romano
2020-11-21 22:27 Romano
2020-11-02 21:00 Romano
2020-11-02 20:55 Romano
2020-11-02 20:49 Romano
2020-11-02 20:55 ` [9front] " ori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).