FreeBSD 8.2 -> 9.0 with cvsup+buildworld Stops

Hi@All

I use a small custom kernel on FreeBSD 8.2. I do a [cmd=]cvsup /etc/source-supfile[/cmd] to FreeBSD 9.0. A try to [cmd=]make buildworld[/cmd] stops on
Code:
Error:
ld:/usr/src/sys/conf/ldscript.i386:66: syntax error

..
Stop in /usr/obj/usr/src/sys/custom.

How to fix this? On FreeBSD 8.2 everything was fine.

A bug in the "custom" configuration file of my kernel at /usr/src/sys/i386/conf/custom?
 
Did you do a make clean before starting buildworld with the new 9.0 sources?
 
Reply

Yes, it did not help.

I tried
[cmd=]make -s cleanworld && make -s cleandir && make cleandepand[/cmd]
[cmd=]rm -rf /usr/obj/*[/cmd]

It did not help.

The first time the process stopped at CLANG errors.

My make.conf:

Code:
WITHOUT_X11=yes
BATCH=yes
CFFLAGS= -O -pipe
NO_WERROR=true
 
Is it possible to reinstall FreeBSD 9.0 GENERIC over CUSTOM using sysinstall?

Tried it remotely, it fails because of mounted partitions.

Is there a trick?
 
linuxhelp said:
Code:
CFFLAGS= -O -pipe
Remove that one. You don't want to muck about with those flags. It's wrong anyway as it should be CFLAGS.

But since it's wrong it shouldn't be interfering. What tag did you use to check out the 9.0 sources?
 
Back
Top