Skip to content

Commit

Permalink
maintainer-scripts: Disable multilib when generating libstdc++ docs
Browse files Browse the repository at this point in the history
This allows the docs to be generated on hosts without the necessary
files present for multilib support.

maintainer-scripts/ChangeLog:

	* generate_libstdcxx_web_docs: Add --disable-multilib to
	configure command.
  • Loading branch information
jwakely committed Apr 8, 2021
1 parent 2c1557a commit acbbb82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maintainer-scripts/generate_libstdcxx_web_docs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ do
[ $dir == 'libstdc++-v3' ] || disabled_libs="$disabled_libs --disable-$dir"
done
set -x
${SRCDIR}/configure --enable-languages=c,c++ --disable-gcc $disabled_libs --docdir=/docs
${SRCDIR}/configure --enable-languages=c,c++ --disable-gcc --disable-multilib $disabled_libs --docdir=/docs
eval `grep '^target=' config.log`
make configure-target
# If the following step fails with an error like
Expand Down

0 comments on commit acbbb82

Please sign in to comment.