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:
gregory.hainaut 2010-08-06 12:13:05 +00:00
parent 04e6c5ab02
commit 527b589f79
5 changed files with 7 additions and 3 deletions

View File

@ -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

View File

@ -15,6 +15,7 @@ set(CommonFlags
)
set(OptimizationFlags
-fvisibility=hidden
-O2
-DNDEBUG
)

View File

@ -14,6 +14,7 @@ set(CommonFlags
)
set(OptimizationFlags
-fvisibility=hidden
-O2
)

View File

@ -14,6 +14,7 @@ set(CommonFlags
)
set(OptimizationFlags
-fvisibility=hidden
-O2
-DNDEBUG
)

View File

@ -14,6 +14,7 @@ set(CommonFlags
)
set(OptimizationFlags
-fvisibility=hidden
-O2
-DNDEBUG
)