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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,e31421e8ee09dfa0 X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!s27g2000prg.googlegroups.com!not-for-mail From: petter_fryklund@hotmail.com Newsgroups: comp.lang.ada Subject: Re: Where is TASH? Date: Fri, 18 Jan 2008 08:05:24 -0800 (PST) Organization: http://groups.google.com Message-ID: <68993875-41e2-400e-9c57-301b90963219@s27g2000prg.googlegroups.com> References: <7f327701-8cac-4525-81e3-41796d8ffc03@t1g2000pra.googlegroups.com> <85747d85-ac85-4771-8720-7f7e7e58f13d@f47g2000hsd.googlegroups.com> <478f4b5f$1@news.post.ch> <479050cf$1@news.post.ch> NNTP-Posting-Host: 83.140.228.17 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: posting.google.com 1200672325 24760 127.0.0.1 (18 Jan 2008 16:05:25 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 18 Jan 2008 16:05:25 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: s27g2000prg.googlegroups.com; posting-host=83.140.228.17; posting-account=ACEctQoAAAD3d42JSpp6_fpg88BhdFDo User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506),gzip(gfe),gzip(gfe) Xref: g2news1.google.com comp.lang.ada:19463 Date: 2008-01-18T08:05:24-08:00 List-Id: I used Zipeg. SInce I do not have any make, and hopefully will not nedd one, I created my gpr file in src directory and compiled all TASH packages. I then created:- with "../src/tash"; project Plang is for Languages use ("Ada"); for Source_Dirs use ("."); for Object_Dir use "."; for Exec_Dir use "..\bin"; for Main use ("plang.adb"); package Builder is for Default_Switches ("ada") use ("-g", "-gnatQ"); end Builder; package Binder is for Default_Switches ("ada") use ("-static"); end Binder; package Linker is for Default_Switches ("ada") use ("-g", "-L C:\Tcl\lib \tcl84.lib"); end Linker; package Compiler is for Default_Switches ("Ada") use ("-g", "-gnato", "-fstack- check", "-gnatVa"); end Compiler; end Plang; in the apps directory and tried to build the Plang program, but the -L was not effective in resolving references to ie Tcl_AppendStringsToObj. What am I doing wrong this time? Regards, Petter