2003-09-11 22:16:33 +00:00
|
|
|
/*
|
2010-01-22 20:08:34 +00:00
|
|
|
* Useful functions for winegcc
|
2003-09-11 22:16:33 +00:00
|
|
|
*
|
|
|
|
* Copyright 2000 Francois Gouget
|
|
|
|
* Copyright 2002 Dimitrie O. Paun
|
|
|
|
* Copyright 2003 Richard Cohen
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-09-11 22:16:33 +00:00
|
|
|
*/
|
|
|
|
|
2021-09-28 08:08:06 +00:00
|
|
|
#include "../tools.h"
|
2010-08-02 10:13:25 +00:00
|
|
|
|
2004-03-02 02:23:26 +00:00
|
|
|
#ifndef DECLSPEC_NORETURN
|
|
|
|
# if defined(_MSC_VER) && (_MSC_VER >= 1200) && !defined(MIDL_PASS)
|
|
|
|
# define DECLSPEC_NORETURN __declspec(noreturn)
|
|
|
|
# elif defined(__GNUC__)
|
|
|
|
# define DECLSPEC_NORETURN __attribute__((noreturn))
|
|
|
|
# else
|
|
|
|
# define DECLSPEC_NORETURN
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2020-04-15 22:07:08 +00:00
|
|
|
void DECLSPEC_NORETURN error(const char* s, ...);
|
2003-09-11 22:16:33 +00:00
|
|
|
|
2004-02-24 01:00:53 +00:00
|
|
|
typedef enum {
|
2004-03-23 00:14:54 +00:00
|
|
|
file_na, file_other, file_obj, file_res, file_rc,
|
|
|
|
file_arh, file_dll, file_so, file_def, file_spec
|
2004-02-24 01:00:53 +00:00
|
|
|
} file_type;
|
|
|
|
|
2004-03-03 20:11:20 +00:00
|
|
|
void create_file(const char* name, int mode, const char* fmt, ...);
|
2004-02-26 05:28:35 +00:00
|
|
|
file_type get_file_type(const char* filename);
|
2021-11-16 20:02:12 +00:00
|
|
|
file_type get_lib_type(struct target target, struct strarray path, const char *library,
|
2021-05-28 17:02:56 +00:00
|
|
|
const char *prefix, const char *suffix, char** file);
|
2021-09-23 09:52:15 +00:00
|
|
|
const char *find_binary( struct strarray prefix, const char *name );
|
|
|
|
int spawn(struct strarray prefix, struct strarray arr, int ignore_errors);
|
2003-09-11 22:16:33 +00:00
|
|
|
|
|
|
|
extern int verbose;
|