efl/src/bin
Felipe Magno de Almeida 8d18009419 eolian: Add -e parameter to pass export symbol to eolian generator
Summary:
Eolian generator must have a parameter so it can generate the correct
symbol export/import macro for the API generated.

This makes it possible to define the symbols as being local to a
single DSO without the need to guard the generated headers or
generated source files with #define and #undef preprocessor
statements.

=  The Rationale =

This patch is from a series of patches to rename EAPI symbols to
specific library DSOs.

EAPI was designed to be able to pass
`__attribute__ ((visibility ("default")))` for symbols with
GCC, which would mean that even if -fvisibility=hidden was used
when compiling the library, the needed symbols would get exported.

MSVC __almost__ works like GCC (or mingw) in which you can
declare everything as export and it will just work (slower, but
it will work). But there's a caveat: global variables will not
work the same way for MSVC, but works for mingw and GCC.

For global variables (as opposed to functions), MSVC requires
correct DSO visibility for MSVC: instead of declaring a symbol as
export for everything, you need to declare it as import when
importing from another DSO and export when defining it locally.

With current EAPI definitions, we get the following example
working in mingw and MSVC (observe it doesn't define any global
variables as exported symbols).

Example 1:
dll1:
```
EAPI void foo(void);

EAPI void bar()
{
  foo();
}
```
dll2:
```
EAPI void foo()
{
  printf ("foo\n");
}
```

This works fine with API defined as __declspec(dllexport) in both
cases and for gcc defining as
`__atttribute__((visibility("default")))`.

However, the following:
Example 2:

dll1:

```
EAPI extern int foo;
EAPI void foobar(void);

EAPI void bar()
{
  foo = 5;
  foobar();
}
```

dll2:

```
EAPI int foo = 0;
EAPI void foobar()
{
  printf ("foo %d\n", foo);
}
```

This will work on mingw but will not work for MSVC. And that's why
LIBAPI is the only solution that works for MSVC.

Co-authored-by: João Paulo Taylor Ienczak Zanette <jpaulotiz@gmail.com>
Co-authored-by: Lucas Cavalcante de Sousa <lucks.sousa@gmail.com>
Co-authored-by: Ricardo Campos <ricardo.campos@expertise.dev>

Reviewers: q66, vtorri, woohyun, jptiz, lucas

Reviewed By: vtorri, lucas

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D12197
2020-12-04 10:35:35 -03:00
..
ecore_buffer refactor build 2020-05-27 11:06:46 +02:00
ecore_con bin/eet and ecore_con: remove Evil.h when not necessary and include evil_private.h when necessary 2019-05-17 13:51:50 -04:00
ecore_evas fix order and simplify a bit order of _init|_shutdown functions 2020-09-25 10:30:20 +01:00
edje singularize srand in eina_init - only once in one place 2020-10-03 20:46:50 +01:00
eet fix order and simplify a bit order of _init|_shutdown functions 2020-09-25 10:30:20 +01:00
eeze eeze_mount binary: more secure check extension ('.iso' and not 'iso') 2020-09-01 09:35:49 +02:00
efl fix order and simplify a bit order of _init|_shutdown functions 2020-09-25 10:30:20 +01:00
efl_canvas_wl efl/wl: add docs for base compositor object 2020-03-13 12:17:22 -04:00
efl_js efl-js: JavaScript Eolian binding 2015-12-23 23:59:40 -02:00
efl_mono_msbuild_gen csharp: Add licensing information. 2019-10-24 10:10:56 -03:00
efreet efreetd - add more logging for what efreetd says to clients 2020-07-24 23:22:47 +01:00
eina replace strndup with eina_strndup, remove strndup definition in evil and elm_test_dnd 2019-05-03 13:13:57 +01:00
eldbus ledbus - fix codegen to not conflict keys with eldbus inyternal 2019-01-09 18:57:22 +00:00
elementary singularize srand in eina_init - only once in one place 2020-10-03 20:46:50 +01:00
elua elua: allow building with interpreted (non-luajit) lua 2020-05-29 16:40:05 +02:00
embryo embryo_cc: ++safty code 2020-08-05 14:53:35 +09:00
eolian eolian: Add -e parameter to pass export symbol to eolian generator 2020-12-04 10:35:35 -03:00
eolian_cxx cxx: Add license to CXX bindings. 2019-10-24 10:40:16 -03:00
eolian_js eolian: rename param direction enum and fields for consistency 2019-09-26 16:56:13 +02:00
eolian_mono dotnet: Ignore Efl.Object.parent as constructor 2020-06-09 10:29:26 +02:00
ethumb here comes meson 2018-10-02 17:22:50 +02:00
ethumb_client fix order and simplify a bit order of _init|_shutdown functions 2020-09-25 10:30:20 +01:00
exactness exactness - injecotr - alloc correct buffer size 2020-08-25 13:21:25 +01:00