Date: Sat, 13 Jan 2024 03:41:13 GMT From: Mikhail Teterin <mi@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 3f6e7475e60a - main - lang/scm: enable -O optimization on i386. Message-ID: <202401130341.40D3fDuS091729@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by mi: URL: https://cgit.FreeBSD.org/ports/commit/?id=3f6e7475e60a0bb535bf59b7cac6367af106a573 commit 3f6e7475e60a0bb535bf59b7cac6367af106a573 Author: Mikhail Teterin <mi@FreeBSD.org> AuthorDate: 2024-01-13 03:38:42 +0000 Commit: Mikhail Teterin <mi@FreeBSD.org> CommitDate: 2024-01-13 03:41:09 +0000 lang/scm: enable -O optimization on i386. The port keeps failing self-tests on the 32-bit platform. Maybe, it will compile better with -O... --- lang/scm/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/lang/scm/Makefile b/lang/scm/Makefile index 3a0555a4054a..dde18ae9882f 100644 --- a/lang/scm/Makefile +++ b/lang/scm/Makefile @@ -26,6 +26,7 @@ MAKE_JOBS_UNSAFE= yes CFLAGS:= ${CFLAGS:N-O*} -O0 CFLAGS+= -Wall -Wwrite-strings -Wmissing-declarations -Wredundant-decls -Wcast-qual CFLAGS+= -Wno-unused-label -Wno-uninitialized +CFLAGS_i386= -O SUB_FILES= require.scm
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202401130341.40D3fDuS091729>