Re: Building world with clang ToT

看板FB_current作者時間13年前 (2012/09/12 20:32), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串4/9 (看更多)
On 2012-09-12 13:45, Edward Meewis wrote: .... > I added the following lines to each individual Makefile it stumbled on: > > CFLAGS+= -I/usr/obj/usr/home/emeewis/src/FreeBSD-HEAD/tmp/usr/include > > LDADD+=-L/usr/obj/usr/home/emeewis/src/FreeBSD-HEAD/tmp/usr/lib > or: > LDFLAGS+=-L/usr/obj/usr/home/emeewis/src/FreeBSD-HEAD/tmp/usr/lib > > I hope to find a better place to set those, but it will do for now. Normally this should never be done, but it could work in theory. .... >> There must be a certain setting on your system which causes this. Most >> likely, it is again using your existing system headers, instead of those >> in /usr/obj. > > I suppose so, but where? .... > /etc/make.conf: > ---------------------- > # > # Clang > # > USE_CLANG?=no > # > .if ${USE_CLANG} == "yes" > .if !defined(CC) || ${CC} == "cc" > CC=/usr/local/bin/clang Don't use absolute paths here, it will not work for buildworld. This has been discussed recently in another thread. (Not an issue with clang or gcc, but with the way buildworld bootstraps its compiler in general.) .... > /etc/src.conf > ------------------ > # src.conf - Source build options > > #WITHOUT_TOOLCHAINS="yes" > > WITHOUT_ATM="yes" > WITHOUT_BLUETOOTH="yes" > WITHOUT_BSNMP="yes" > WITHOUT_CDDL="yes" > WITHOUT_CLANG="yes" > WITHOUT_CTM="yes" > WITHOUT_CVS="yes" > WITHOUT_GCC="yes" I don't think buildworld can ever work correctly, if you have both WITHOUT_CLANG and WITHOUT_GCC defined, at least not with how it is currently implemented. At least, certainly not for a -CURRENT build on -STABLE, that is. If you'd build this on a fully installed -CURRENT box, it might complete, but again, no guarantees. Try building with gcc, while removing the WITHOUT_GCC line, or building with clang, while removing the WITHOUT_CLANG line. _______________________________________________ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org"
文章代碼(AID): #1GK832vf (FB_current)
討論串 (同標題文章)
文章代碼(AID): #1GK832vf (FB_current)