From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,73a6dbe06e1250ce,start X-Google-Attributes: gid103376,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news2.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local02.nntp.dca.giganews.com!nntp.telenor.com!news.telenor.com.POSTED!not-for-mail NNTP-Posting-Date: Mon, 21 Apr 2008 06:34:42 -0500 From: Reinert Korsnes Subject: gnatmake: "ada.numerics.real_arrays" is not a predefined library unit Newsgroups: comp.lang.ada Date: Mon, 21 Apr 2008 13:34:42 +0200 User-Agent: KNode/0.10.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit Message-ID: X-Usenet-Provider: http://www.giganews.com X-Trace: sv3-DvzQXrJy/GZvQWLwxtAVseVyCSKmtRuI8jjImZ09rKPu9HXfCuFNw2wPR2w2dh3Vy0DoLBjGF7Tvawl!rVL22RQw2PpAScGAFg+lTDe/1w45AhAQl1a3/jzAdSJt0IlpwFpvCHk4eJTiJoi4oZMvhrw7gE0= X-Complaints-To: news-abuse@telenor.net X-DMCA-Complaints-To: news-abuse@telenor.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.38 Xref: g2news1.google.com comp.lang.ada:21011 Date: 2008-04-21T13:34:42+02:00 List-Id: Hello, My linux system (opensuse 10.3 updated) does not find "ada.numerics.real_arrays. Should it ? Details: -------- I tried to compile a program starting like this: with Text_IO; use Text_IO; with Ada.Numerics,Ada.Numerics.Real_Arrays; with Ada.Numerics.Generic_Elementary_Functions; procedure test2 is ... I used the command: gnatmake -gnat05 test2.adb Then I get the error message: test2.adb:3:21: "ada.numerics.real_arrays" is not a predefined library unit gnatmake: "test2.adb" compilation error Is there any hope for me to use "Ada.Numerics.Real.Arrays" ? reinert