Skip to content

Commit

Permalink
Fix fvisibility
Browse files Browse the repository at this point in the history
  • Loading branch information
q4a authored and eagleivg committed Nov 6, 2018
1 parent f574c10 commit ae40a3a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Externals/luabind
Submodule luabind updated 1 files
+1 −0 CMakeLists.txt
2 changes: 1 addition & 1 deletion Externals/ode/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ add_dir("${DIRS}")

include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include ${CMAKE_CURRENT_SOURCE_DIR}/../../sdk/include )

add_definitions(-DdSINGLE -D_SECURE_SCL=0 -DLINUX -D_cdecl= -D__forceinline=inline)
add_definitions(-DdSINGLE -D_SECURE_SCL=0 -DLINUX -D_cdecl= -D__forceinline=inline -fvisibility=default)

add_library(${PROJECT_NAME} SHARED ${${PROJECT_NAME}__SOURCES} ${${PROJECT_NAME}__INCLUDES})
xr_install(${PROJECT_NAME})
2 changes: 1 addition & 1 deletion src/xrCore/_math.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ extern XRCORE_API void thread_spawn(thread_t* entry, const char* name, unsigned

#if defined(LINUX)
void QueryPerformanceCounter(PLARGE_INTEGER result);
DWORD timeGetTime();
XRCORE_API DWORD timeGetTime();
#endif
2 changes: 1 addition & 1 deletion src/xrCore/string_concatenations.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#define EXCEPTION_EXECUTE_HANDLER 1
#define EXCEPTION_CONTINUE_SEARCH 0

int _cdecl _resetstkoflw(void);
int _cdecl XRCORE_API _resetstkoflw(void);
#endif

#if 1//ndef _EDITOR
Expand Down

0 comments on commit ae40a3a

Please sign in to comment.