efl/src/bin/exactness
Felipe Magno de Almeida 7c74fc9b5f exactness: Use EXPORTAPI for symbols that will replace in library
We can export always because our declaration is always a definition in
exactness programs. So it doesn't make sense to condition on building
one library or another.

Patch from a series of patches to rename EAPI symbols to specific
library DSOs.

=  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>
2020-12-14 13:29:16 -03:00
..
.gitignore exactness: import code from external repo into efl.git 2020-02-07 11:31:13 +01:00
common.c exactness: handle case where eet_data_image_write() fails 2020-04-20 12:20:50 +02:00
common.h exactness: remove no longer needed _evas_new() 2020-04-30 17:19:06 +02:00
exactness.c exactness: record and print test time on success 2020-06-08 09:46:02 +02:00
exactness_play.in exactness docs: Add docs, fix docs, remove docs 2020-04-02 13:02:11 +02:00
exactness_record.in exactness docs: Add docs, fix docs, remove docs 2020-04-02 13:02:11 +02:00
injector.c exactness - injecotr - alloc correct buffer size 2020-08-25 13:21:25 +01:00
inspect.c exactness-inspect: do not use sprintf 2020-04-20 12:30:21 +02:00
meson.build refactor build 2020-05-27 11:06:46 +02:00
player.c exactness: Use EXPORTAPI for symbols that will replace in library 2020-12-14 13:29:16 -03:00
player_entry.edc exactness: remove unused code 2020-02-07 11:31:21 +01:00
recorder.c exactness: Use EXPORTAPI for symbols that will replace in library 2020-12-14 13:29:16 -03:00