This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Query about GPL-license


> Could you confirm that the same applies to the output of G++ when I'm
> compiling STL code (so including lumps of templated stuff for map<foo,bar>,
> as well as libstdc++ to get iostream working right)?

Even though this question has been answered, I'd like to point out two
problems in your question.

First, it was sent to gcc@gcc.gnu.org, which is the list discussing
further development of gcc; if you need help with using gcc, please
send the questions to gcc-help@gcc.gnu.org.

Furthermore, please try to familiarize yourself with reading licenses,
instead of asking for permission everytime you want to use something.

In the specific case, if you would have looked at stl_map.h, you'd
noticed that it reads

/*
 *
 * Copyright (c) 1994
 * Hewlett-Packard Company
 *
 * Permission to use, copy, modify, distribute and sell this software
 * and its documentation for any purpose is hereby granted without fee,
 * provided that the above copyright notice appear in all copies and
 * that both that copyright notice and this permission notice appear
 * in supporting documentation.  Hewlett-Packard Company makes no
 * representations about the suitability of this software for any
 * purpose.  It is provided "as is" without express or implied warranty.
 *
 *
 * Copyright (c) 1996,1997
 * Silicon Graphics Computer Systems, Inc.
 *
 * Permission to use, copy, modify, distribute and sell this software
 * and its documentation for any purpose is hereby granted without fee,
 * provided that the above copyright notice appear in all copies and
 * that both that copyright notice and this permission notice appear
 * in supporting documentation.  Silicon Graphics makes no
 * representations about the suitability of this software for any
 * purpose.  It is provided "as is" without express or implied warranty.
 */

So you got permission to use this software from both HP and SGI - you
don't have to ask us for permission.

Performing a similar investigation for the iostreams code is left as
an exercise to the reader :-)

Regards,
Martin

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]