pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/rust



Module Name:    pkgsrc
Committed By:   he
Date:           Mon Oct 28 14:38:41 UTC 2019

Modified Files:
        pkgsrc/lang/rust: Makefile

Log Message:
Fix CONFIGURE_ARGS for disabling debugging.  Build fix so no bump.


To generate a diff of this commit:
cvs rdiff -u -r1.121 -r1.122 pkgsrc/lang/rust/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/rust/Makefile
diff -u pkgsrc/lang/rust/Makefile:1.121 pkgsrc/lang/rust/Makefile:1.122
--- pkgsrc/lang/rust/Makefile:1.121     Mon Oct 28 08:56:14 2019
+++ pkgsrc/lang/rust/Makefile   Mon Oct 28 14:38:41 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.121 2019/10/28 08:56:14 jperkin Exp $
+# $NetBSD: Makefile,v 1.122 2019/10/28 14:38:41 he Exp $
 
 DISTNAME=      rustc-1.38.0-src
 PKGNAME=       ${DISTNAME:S/rustc/rust/:S/-src//}
@@ -119,12 +119,13 @@ CHECK_PORTABILITY_SKIP+=  src/vendor/open
 # Bootstrapping on NetBSD/powerpc requires no debug-info from rustc
 # (both for amd64->powerpc built and powerpc->powerpc built bootstrap bits)
 CONFIGURE_ARGS+=       --disable-debug
-CONFIGURE_ARGS+=       --disable-debuginfo-tests
 CONFIGURE_ARGS+=       --disable-debug-assertions
-CONFIGURE_ARGS+=       --disable-debuginfo
-CONFIGURE_ARGS+=       --disable-debuginfo-lines
-CONFIGURE_ARGS+=       --disable-debuginfo-only-std
-CONFIGURE_ARGS+=       --disable-debuginfo-tools
+CONFIGURE_ARGS+=       --disable-llvm-release-debuginfo
+CONFIGURE_ARGS+=       --debuginfo-level=0
+CONFIGURE_ARGS+=       --debuginfo-level-rustc=0
+CONFIGURE_ARGS+=       --debuginfo-level-std=0
+CONFIGURE_ARGS+=       --debuginfo-level-tools=0
+CONFIGURE_ARGS+=       --debuginfo-level-tests=0
 .endif
 
 # Only build the ARM target on/for this host, due to resource constraints



Home | Main Index | Thread Index | Old Index