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=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.157.31.16 with SMTP id x16mr2988335otd.19.1470840756486; Wed, 10 Aug 2016 07:52:36 -0700 (PDT) X-Received: by 10.157.2.42 with SMTP id 39mr411546otb.3.1470840756455; Wed, 10 Aug 2016 07:52:36 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!news.eternal-september.org!feeder.eternal-september.org!news.glorb.com!f6no8869601ith.0!news-out.google.com!d68ni23047ith.0!nntp.google.com!f6no8849272ith.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Wed, 10 Aug 2016 07:52:36 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=95.173.128.204; posting-account=YB4WOgoAAABLG9D7qoJiPBc6EJSzsPDF NNTP-Posting-Host: 95.173.128.204 References: <90233803-e8cb-4461-a093-f705409dc83f@googlegroups.com> <4a120006-75f9-4832-8d1e-af15a2bf687a@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <18033bc2-d769-43a0-a70a-48d90cd34f46@googlegroups.com> Subject: Re: GNAT, portability between computers (win32) From: George J Injection-Date: Wed, 10 Aug 2016 14:52:36 +0000 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Xref: news.eternal-september.org comp.lang.ada:31357 Date: 2016-08-10T07:52:36-07:00 List-Id: =D1=81=D1=80=D0=B5=D0=B4=D0=B0, 10 =D0=B0=D0=B2=D0=B3=D1=83=D1=81=D1=82=D0= =B0 2016 =D0=B3., 17:44:50 UTC+3 =D0=BF=D0=BE=D0=BB=D1=8C=D0=B7=D0=BE=D0=B2= =D0=B0=D1=82=D0=B5=D0=BB=D1=8C Dmitry A. Kazakov =D0=BD=D0=B0=D0=BF=D0=B8= =D1=81=D0=B0=D0=BB: > On 10/08/2016 16:23, George J wrote: > > =D1=81=D1=80=D0=B5=D0=B4=D0=B0, 10 =D0=B0=D0=B2=D0=B3=D1=83=D1=81=D1=82= =D0=B0 2016 =D0=B3., 17:17:10 UTC+3 =D0=BF=D0=BE=D0=BB=D1=8C=D0=B7=D0=BE=D0= =B2=D0=B0=D1=82=D0=B5=D0=BB=D1=8C George J =D0=BD=D0=B0=D0=BF=D0=B8=D1=81= =D0=B0=D0=BB: > >> Hi all!Today i've finished beta version of my project. And it was > >> found out that i have to put much .dll files from "GNAT20XX\bin" with = my > >> project. And it is inexpedient.How may I link all necessary libraries > >> (statically maybe) to use my exe independently on different computers > >> with win32? Thanks! > > > > Oh,i see it's not clear explanation.. When i told "much .dll files > > from "GNAT20XX\bin" with my project" i meant with my Project.exe > > (libcairo-2.dll, libpng-3.dll and many others). Is there another way to > > make only one "exe"? with statically liked those libraries? Sorry, my > > english is very bad. >=20 > Even if you could link GTK statically, which, when possible, would not=20 > be easy, there remained a huge number of other files GTK requires:=20 > fonts, color themes etc. >=20 > You will need a proper installer if you wanted to distribute a GTK=20 > application under Windows. >=20 > --=20 > Regards, > Dmitry A. Kazakov > http://www.dmitry-kazakov.de Thanks Dmitry! I have to add some "pragma Linker_Options ("-llibcairo-2.dll= ");pragma Linker_Options ("libpng-3.dll");" Did I get it right?