From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14642 invoked by alias); 13 Nov 2002 10:28:01 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 14587 invoked from network); 13 Nov 2002 10:27:27 -0000 Received: from unknown (HELO anchor-post-33.mail.demon.net) (194.217.242.91) by sources.redhat.com with SMTP; 13 Nov 2002 10:27:27 -0000 Received: from mailgate.softwire.co.uk ([62.49.203.138] helo=polarbear) by anchor-post-33.mail.demon.net with esmtp (Exim 3.35 #1) id 18Bujz-000F9D-0X; Wed, 13 Nov 2002 10:27:23 +0000 From: "Rupert Wood" To: "'reza afshar'" Cc: Subject: RE: gcc Date: Wed, 13 Nov 2002 04:16:00 -0000 Message-ID: <616BE6A276E3714788D2AC35C40CD18D5EC661@whale.softwire.co.uk> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal In-Reply-To: <616BE6A276E3714788D2AC35C40CD18D8EA584@whale.softwire.co.uk> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Importance: Normal X-SW-Source: 2002-11/txt/msg00460.txt.bz2 Reza Afshar wrote: (This would have been more appropriate for the gcc-help mailing list; this list is for development of GCC.) > gcc -g -o fileSaveAs -lssl -lcrypto fileSaveAs.c > i recive mesage "cant open -lssl". Do you have a libssl.a or libssl.so built and installed? If not, you can use OpenSSL from http://www.openssl.org/. If you do, you need to make sure that GCC can find it: use the -L switch before -lssl to specify the library search path. Good luck, Rup.