Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT sourceware DOT cygnus DOT com Delivered-To: mailing list cygwin AT sourceware DOT cygnus DOT com From: Craig Lanning MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14514.42467.930000.171423@ngds1.scra.org> Date: Tue, 22 Feb 2000 10:06:11 -0500 (Eastern Standard Time) To: cygwin AT sourceware DOT cygnus DOT com Subject: Problem with -mno-cygwin compile X-Mailer: VM 6.72 under 21.1 (patch 9) "Canyonlands" XEmacs Lucid My environment is Windows 98 Cygwin b20.1 + 2/21 snapshot gcc 2.95.2 If I compile the code below with -mno-cygwin it complains about the symbol _environ_dll not being resolved. (I have been seeing this problem for a couple of months.) If I compile it without -mno-cygwin it works fine. Is there something else I need to do to get it to work with -mno-cygwin? Craig Lanning -------------------------------------------------- #include #include extern char **environ; int main(void) { int i=1; char **env=environ; while (*env) { printf("env[%2d]: %s\n",i++,*env); env++; } } -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com