mirror of https://github.com/PCSX2/pcsx2.git
USBnull, CDVDiso, dev9null and FWnull: Same jobs as previous rev.
Note: zzogl is the only left (well zero plugins also) but I will wait that we port CALLBACK to EXPORT_C_ git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3612 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
04e6c5ab02
commit
527b589f79
|
@ -31,7 +31,7 @@
|
|||
#ifdef _MSC_VER
|
||||
#define EXPORT_C_(type) extern "C" __declspec(dllexport) type CALLBACK
|
||||
#else
|
||||
#define EXPORT_C_(type) extern "C" type
|
||||
#define EXPORT_C_(type) extern "C" __attribute__((externally_visible,visibility("default"))) type
|
||||
#endif
|
||||
|
||||
#else
|
||||
|
@ -39,7 +39,7 @@
|
|||
#ifdef _MSC_VER
|
||||
#define EXPORT_C_(type) __declspec(dllexport) type __stdcall
|
||||
#else
|
||||
#define EXPORT_C_(type) type
|
||||
#define EXPORT_C_(type) __attribute__((externally_visible,visibility("default"))) type
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
|
@ -15,6 +15,7 @@ set(CommonFlags
|
|||
)
|
||||
|
||||
set(OptimizationFlags
|
||||
-fvisibility=hidden
|
||||
-O2
|
||||
-DNDEBUG
|
||||
)
|
||||
|
|
|
@ -14,6 +14,7 @@ set(CommonFlags
|
|||
)
|
||||
|
||||
set(OptimizationFlags
|
||||
-fvisibility=hidden
|
||||
-O2
|
||||
)
|
||||
|
||||
|
|
|
@ -14,6 +14,7 @@ set(CommonFlags
|
|||
)
|
||||
|
||||
set(OptimizationFlags
|
||||
-fvisibility=hidden
|
||||
-O2
|
||||
-DNDEBUG
|
||||
)
|
||||
|
|
|
@ -14,6 +14,7 @@ set(CommonFlags
|
|||
)
|
||||
|
||||
set(OptimizationFlags
|
||||
-fvisibility=hidden
|
||||
-O2
|
||||
-DNDEBUG
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue