efl/src/bin/eolian
Felipe Magno de Almeida 48921885e2 eolian: Add -e parameter to pass export symbol to eolian generator
Patch from a series of patches to rename EAPI symbols to specific
library DSOs.

Eolian generator must have a parameter so it can generate the correct
symbol export/import macro for the API generated.

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
EAPI is the only solution that worked for MSVC.

Co-authored-by: João Paulo Taylor Ienczak Zanette <jpaulotiz@gmail.com>
Co-authored-by: Ricardo Campos <ricardo.campos@expertise.dev>
Co-authored-by: Lucas Cavalcante de Sousa <lucks.sousa@gmail.com>
2020-08-20 17:36:00 -03:00
..
.gitignore eolian gen2: move to eolian gen (as the old one is gone) 2016-10-07 13:34:47 +02:00
docs.c eolian_gen: utilize c_name instead of name for generation 2020-01-10 20:19:47 +01:00
docs.h eolian_gen: remove support for legacy header file generation 2019-04-18 18:10:45 +02:00
headers.c eolian: Add -e parameter to pass export symbol to eolian generator 2020-08-20 17:36:00 -03:00
headers.h eolian_gen: remove support for legacy header file generation 2019-04-18 18:10:45 +02:00
main.c eolian: Add -e parameter to pass export symbol to eolian generator 2020-08-20 17:36:00 -03:00
main.h eolian gen2: move to eolian gen (as the old one is gone) 2016-10-07 13:34:47 +02:00
meson.build meson: enable cross compiling 2018-12-07 13:05:31 +01:00
sources.c eolian: Add -e parameter to pass export symbol to eolian generator 2020-08-20 17:36:00 -03:00
sources.h eolian: remove legacy handling API and most of generation 2019-03-08 10:12:09 -05:00
types.c eolian: Add -e parameter to pass export symbol to eolian generator 2020-08-20 17:36:00 -03:00
types.h eolian_gen: remove support for legacy header file generation 2019-04-18 18:10:45 +02:00