efl/src/tests/eolian/data
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
..
base.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
class_funcs.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
class_requires.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
class_simple.eo eolian: fix all remaining since errors 2020-02-05 16:30:57 +01:00
class_simple_ref.c eolian: Add -e parameter to pass export symbol to eolian generator 2020-12-04 10:35:35 -03:00
class_simple_ref_eo.h eolian: Add -e parameter to pass export symbol to eolian generator 2020-12-04 10:35:35 -03:00
complex_type.eo eolian: move list<> tests to be @beta and preserve enough meaningful that are not @beta. 2020-01-24 21:47:08 -03:00
consts.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
ctor_dtor.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
docs_ref.h eolian: Add -e parameter to pass export symbol to eolian generator 2020-12-04 10:35:35 -03:00
enum.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
eo_docs.eo eolian: fix all remaining since errors 2020-02-05 16:30:57 +01:00
error.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
events.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
extern.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
free_func.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
function_as_argument.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
function_as_argument_impl_ref.c eolian: remove param @nonull 2019-05-26 17:25:15 +02:00
function_as_argument_ref.c eolian: Add -e parameter to pass export symbol to eolian generator 2020-12-04 10:35:35 -03:00
function_as_argument_ref.h eolian: Add -e parameter to pass export symbol to eolian generator 2020-12-04 10:35:35 -03:00
function_types.eot Revert "eolian: disallow missing docs for stable API where necessary" 2019-09-30 19:48:19 +02:00
function_types_ref.h Revert "eolian: disallow missing docs for stable API where necessary" 2019-09-30 19:48:19 +02:00
iface.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
import.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
import_types.eot Revert "eolian: disallow missing docs for stable API where necessary" 2019-09-30 19:48:19 +02:00
import_types_ref.h Revert "eolian: disallow missing docs for stable API where necessary" 2019-09-30 19:48:19 +02:00
mixins_require.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
nmsp1_class1.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
nmsp1_nmsp11_class2.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
nmsp2_class1.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
no_nmsp.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
object_impl.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
object_impl_add.eo eolian: move list<> tests to be @beta and preserve enough meaningful that are not @beta. 2020-01-24 21:47:08 -03:00
object_impl_add_ref.c eolian: move list<> tests to be @beta and preserve enough meaningful that are not @beta. 2020-01-24 21:47:08 -03:00
object_impl_ref.c eolian: move list<> tests to be @beta and preserve enough meaningful that are not @beta. 2020-01-24 21:47:08 -03:00
override.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
override_ref.c eolian: Add -e parameter to pass export symbol to eolian generator 2020-12-04 10:35:35 -03:00
owning.eo eolian: make hashes beta-only for now 2019-09-20 17:04:48 +02:00
owning_ref.c eolian: Add -e parameter to pass export symbol to eolian generator 2020-12-04 10:35:35 -03:00
parts.eo Revert "eolian: disallow missing docs for stable API where necessary" 2019-09-30 19:48:19 +02:00
scope.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
struct.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
struct_ref.h eolian: Add -e parameter to pass export symbol to eolian generator 2020-12-04 10:35:35 -03:00
struct_ref_stub.h bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
typedef.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
typedef_ref.h eolian: Add -e parameter to pass export symbol to eolian generator 2020-12-04 10:35:35 -03:00
typedef_ref_stub.h bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
unimpl.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00
var.eo bindings-cxx: fix missing @since tags at stable c#/cpp tests 2020-02-05 17:15:33 +01:00