From: Doug Rupp Date: Thu, 19 Oct 2023 22:53:19 +0000 (-0700) Subject: ada: Runtime recompilation instructions improvements. X-Git-Tag: basepoints/gcc-15~4491 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d325c129d103cdc206165ee575a01e2bee7caad9;p=thirdparty%2Fgcc.git ada: Runtime recompilation instructions improvements. Revise instructions to work on both cross and native targets hosted on Linux gcc/ada/ * libgnat/libada.gpr: Revise section 1 --- diff --git a/gcc/ada/libgnat/libada.gpr b/gcc/ada/libgnat/libada.gpr index 9453cae8f53f..2848c566ee10 100644 --- a/gcc/ada/libgnat/libada.gpr +++ b/gcc/ada/libgnat/libada.gpr @@ -6,13 +6,14 @@ -- 1. Create a new directory (e.g. "rts-debug"), then copy the adainclude -- directory from the reference runtime that you want to rebuild. -- You can find the relevant adainclude directory by running the command --- gprls [--target=] [--RTS=] and using the adainclude +-- gprls -v [--target=] [--RTS=] and using the adainclude -- directory listed. For example: --- $ cd --- $ mkdir rts-debug --- $ cd rts-debug --- $ cp -a `gprls -v | grep adainclude` . --- $ cd adainclude +-- $ cd +-- $ mkdir rts-debug +-- $ cd rts-debug +-- $ cp -a `gprls -v \ +-- [--target=] --RTS=native | grep adainclude` . +-- $ cd adainclude -- -- or under Windows: --