tools: Add a shared header for common helper functions.
[wine.git] / tools / winegcc / utils.h
blob72ec2abbe2b5fa384fedb23a139cb029dadcf59a
1 /*
2 * Useful functions for winegcc
4 * Copyright 2000 Francois Gouget
5 * Copyright 2002 Dimitrie O. Paun
6 * Copyright 2003 Richard Cohen
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "../tools.h"
25 #ifndef DECLSPEC_NORETURN
26 # if defined(_MSC_VER) && (_MSC_VER >= 1200) && !defined(MIDL_PASS)
27 # define DECLSPEC_NORETURN __declspec(noreturn)
28 # elif defined(__GNUC__)
29 # define DECLSPEC_NORETURN __attribute__((noreturn))
30 # else
31 # define DECLSPEC_NORETURN
32 # endif
33 #endif
35 enum target_cpu
37 CPU_x86, CPU_x86_64, CPU_POWERPC, CPU_ARM, CPU_ARM64
40 enum target_platform
42 PLATFORM_UNSPECIFIED,
43 PLATFORM_APPLE,
44 PLATFORM_ANDROID,
45 PLATFORM_SOLARIS,
46 PLATFORM_WINDOWS,
47 PLATFORM_MINGW,
48 PLATFORM_CYGWIN
51 void DECLSPEC_NORETURN error(const char* s, ...);
53 typedef enum {
54 file_na, file_other, file_obj, file_res, file_rc,
55 file_arh, file_dll, file_so, file_def, file_spec
56 } file_type;
58 char* get_basename(const char* file);
59 void create_file(const char* name, int mode, const char* fmt, ...);
60 file_type get_file_type(const char* filename);
61 file_type get_lib_type(enum target_platform platform, struct strarray path, const char *library,
62 const char *prefix, const char *suffix, char** file);
63 const char *find_binary( struct strarray prefix, const char *name );
64 int spawn(struct strarray prefix, struct strarray arr, int ignore_errors);
66 extern int verbose;