1 |
[ 0%] Building C object common/options/CMakeFiles/moptions.dir/monet_options.c.o |
2 |
In file included from /Users/monet/scratch/5b6e555b6a59-6-1-2/MonetDB/common/options/monet_options.c:26: |
3 |
/Users/monet/scratch/5b6e555b6a59-6-1-2/MonetDB/common/options/monet_options.h:37:1: error: unknown attribute '__externally_visible__' ignored [-Werror,-Wunknown-attributes] |
|
35
36 /* mo_print_options will print the option set on stderr */
37 moptions_export void mo_print_options(opt *set, int setlen);
38
39 /* mo_find_option, finds the option with the given name in the option set |
4 |
moptions_export void mo_print_options(opt *set, int setlen); |
5 |
^~~~~~~~~~~~~~~ |
6 |
/Users/monet/scratch/5b6e555b6a59-6-1-2/MonetDB/common/options/monet_options.h:33:40: note: expanded from macro 'moptions_export' |
7 |
#define moptions_export __attribute__((__externally_visible__)) extern |
8 |
^~~~~~~~~~~~~~~~~~~~~~ |
9 |
/Users/monet/scratch/5b6e555b6a59-6-1-2/MonetDB/common/options/monet_options.h:41:1: error: unknown attribute '__externally_visible__' ignored [-Werror,-Wunknown-attributes] |
|
39 /* mo_find_option, finds the option with the given name in the option set
40 (set,setlen). */
41 moptions_export const char *mo_find_option(opt *set, int setlen, const char *name);
42
43 /* mo_system_config will add the options from the system config file |
10 |
moptions_export const char *mo_find_option(opt *set, int setlen, const char *name); |
11 |
^~~~~~~~~~~~~~~ |
12 |
/Users/monet/scratch/5b6e555b6a59-6-1-2/MonetDB/common/options/monet_options.h:33:40: note: expanded from macro 'moptions_export' |
13 |
#define moptions_export __attribute__((__externally_visible__)) extern |
14 |
^~~~~~~~~~~~~~~~~~~~~~ |
15 |
/Users/monet/scratch/5b6e555b6a59-6-1-2/MonetDB/common/options/monet_options.h:45:1: error: unknown attribute '__externally_visible__' ignored [-Werror,-Wunknown-attributes] |
|
43 /* mo_system_config will add the options from the system config file
44 (returns the new setlen) */
45 moptions_export int mo_system_config(opt **Set, int setlen);
46
47 /* mo_builtin_settings, will place the builtin settings into a new |
16 |
moptions_export int mo_system_config(opt **Set, int setlen); |
17 |
^~~~~~~~~~~~~~~ |
18 |
/Users/monet/scratch/5b6e555b6a59-6-1-2/MonetDB/common/options/monet_options.h:33:40: note: expanded from macro 'moptions_export' |
19 |
#define moptions_export __attribute__((__externally_visible__)) extern |
20 |
^~~~~~~~~~~~~~~~~~~~~~ |
21 |
/Users/monet/scratch/5b6e555b6a59-6-1-2/MonetDB/common/options/monet_options.h:49:1: error: unknown attribute '__externally_visible__' ignored [-Werror,-Wunknown-attributes] |
|
47 /* mo_builtin_settings, will place the builtin settings into a new
48 option set (returns the length of this set). */
49 moptions_export int mo_builtin_settings(opt **Set);
50
51 /* mo_add_option will add a single option to the option set |
22 |
moptions_export int mo_builtin_settings(opt **Set); |
23 |
^~~~~~~~~~~~~~~ |
24 |
/Users/monet/scratch/5b6e555b6a59-6-1-2/MonetDB/common/options/monet_options.h:33:40: note: expanded from macro 'moptions_export' |
25 |
#define moptions_export __attribute__((__externally_visible__)) extern |
26 |
^~~~~~~~~~~~~~~~~~~~~~ |
27 |
/Users/monet/scratch/5b6e555b6a59-6-1-2/MonetDB/common/options/monet_options.h:53:1: error: unknown attribute '__externally_visible__' ignored [-Werror,-Wunknown-attributes] |
|
51 /* mo_add_option will add a single option to the option set
52 (returns new length) */
53 moptions_export int mo_add_option(opt **Set, int setlen, opt_kind kind, const char *name, const char *value);
54
55 /* mo_free_options will free the resources take by the options set */ |
28 |
moptions_export int mo_add_option(opt **Set, int setlen, opt_kind kind, const char *name, const char *value); |
29 |
^~~~~~~~~~~~~~~ |
30 |
/Users/monet/scratch/5b6e555b6a59-6-1-2/MonetDB/common/options/monet_options.h:33:40: note: expanded from macro 'moptions_export' |
31 |
#define moptions_export __attribute__((__externally_visible__)) extern |
32 |
^~~~~~~~~~~~~~~~~~~~~~ |
33 |
/Users/monet/scratch/5b6e555b6a59-6-1-2/MonetDB/common/options/monet_options.h:56:1: error: unknown attribute '__externally_visible__' ignored [-Werror,-Wunknown-attributes] |
|
54
55 /* mo_free_options will free the resources take by the options set */
56 moptions_export void mo_free_options(opt *set, int setlen);
57
58 #ifdef __cplusplus |
34 |
moptions_export void mo_free_options(opt *set, int setlen); |
35 |
^~~~~~~~~~~~~~~ |
36 |
/Users/monet/scratch/5b6e555b6a59-6-1-2/MonetDB/common/options/monet_options.h:33:40: note: expanded from macro 'moptions_export' |
37 |
#define moptions_export __attribute__((__externally_visible__)) extern |
38 |
^~~~~~~~~~~~~~~~~~~~~~ |
39 |
6 errors generated. |
40 |
make[2]: *** [common/options/CMakeFiles/moptions.dir/monet_options.c.o] Error 1 |
41 |
make[1]: *** [common/options/CMakeFiles/moptions.dir/all] Error 2 |
42 |
make: *** [all] Error 2 |