commit 2953cec68feb73bc31d2670571db865c5a84a6fd
Author: Scott Kostyshak <[email protected]>
Date: Thu Jun 26 22:20:37 2025 +0200
lyxbuild: store exports in build commands
This way, the build script has the exports relevant to setting
Clang or GCC.
---
development/lyx-tester/lyxbuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/development/lyx-tester/lyxbuild b/development/lyx-tester/lyxbuild
index bceeab107b..573fc92fea 100755
--- a/development/lyx-tester/lyxbuild
+++ b/development/lyx-tester/lyxbuild
@@ -483,16 +483,16 @@ python3 development/tools/updatelayouts.py
if [ "${clang}" = "1" ]; then
- export CC="clang"
+ runthis misc.log export CC="clang"
# TODO: add option to build with libc++ :
# export CXX="clang++ -stdlib=libc++"
- export CXX="clang++"
+ runthis misc.log export CXX="clang++"
else
# didn't use to specify this "else" because GCC
# was default, but the system default might not
# be GCC so it's best to be explicit.
- export CC="gcc"
- export CXX="g++"
+ runthis misc.log export CC="gcc"
+ runthis misc.log export CXX="g++"
fi
--
lyx-cvs mailing list
[email protected]
https://lists.lyx.org/mailman/listinfo/lyx-cvs