From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from s411.sureserver.com (s411.sureserver.com [192.252.151.33]) by sourceware.org (Postfix) with ESMTPS id 3C2773858C62 for ; Mon, 14 Nov 2022 16:24:40 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 3C2773858C62 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=nishan.io Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=nishan.io DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=nishan.io; h= mime-version:date:from:to:subject:reply-to:in-reply-to :references:message-id:content-type:content-transfer-encoding; s=dkim; bh=OuHK1BlMlUwKmq6a76kuhuxUDvdfKfyFhdTdNLx+Yeg=; b=C0U7 S+rVtCgHcxEZkLN+ILPCLFzImSQ4AypYtGnYs5iehWSK0gvn1m+R98Yd18fS708U w74I3Y/XAyzmrZ07s+5XHNQxluxwFzjaceSxCFMSlADsm9UQOsF6E8brDEFhMMAF vb2cTgKmWg/CPO9WrAJX/HqGZ45wf4dlVwB0MTs= Received: (qmail 44649 invoked by uid 504); 14 Nov 2022 16:24:39 -0000 Received: from unknown (HELO mbox.nishan.io) (saifi.khan@nishan.1665716947.19903.user@127.0.0.1) by 127.100.1.1 with ESMTPA; 14 Nov 2022 16:24:39 -0000 MIME-Version: 1.0 Date: Mon, 14 Nov 2022 16:24:39 +0000 From: Saifi Khan To: gcc-help Subject: Re: top-level build target that triggers 'make doc-html-doxygen' Reply-To: saifi.khan@nishan.io Mail-Reply-To: saifi.khan@nishan.io In-Reply-To: References: <0c19c7b6ff9e933532c5ed5630d2527a@nishan.io> User-Agent: Roundcube Webmail Message-ID: X-Sender: saifi.khan@nishan.io Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-2.1 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On 2022-11-13 09:29, Jonathan Wakely via Gcc-help wrote: > > There is a doc-install-html target in the $target/libstdc++-v3 dir, but > that will also try to build the main manual as well as the doxygen > pages. > yes, this seems even better. So, i tried to build the 'doc-install-html' target xsltproc --param toc.section.depth 4 --param generate.consistent.ids 1 --nonet --xinclude -o /opt/gcc/build/x86_64-pc-linux-gnu/libstdc++-v3/doc/docbook/html/ \ --stringparam chunker.output.encoding UTF-8 \ /xhtml/chunk.xsl \ ../../../../src/libstdc++-v3/doc/xml/spine.xml warning: failed to load external entity "/xhtml/chunk.xsl" cannot parse /xhtml/chunk.xsl make[1]: *** [Makefile:1046: stamp-html-docbook] Error 4 make[1]: Leaving directory '/opt/gcc/build/x86_64-pc-linux-gnu/libstdc++-v3/doc' make: *** [Makefile:784: doc-install-html] Error 2 make: Leaving directory '/opt/gcc/build/x86_64-pc-linux-gnu/libstdc++-v3' There isn't any 'chunk.xsl' in the entire source tree. Am i missing something ? warm regards Saifi.