trying to make it work without -rdynamic
This commit is contained in:
@@ -46,9 +46,11 @@ public:
|
||||
virtual void CopyFile( const char *szDestination, const char *szOrigin ) override;
|
||||
virtual void CopyDirectory( const char *szDestination, const char *szOrigin ) override;
|
||||
virtual bool ShouldRecompile( const char *szSource, const char *szOutput ) override;
|
||||
virtual char *GetWindowsPath( const char *szPath ) override;
|
||||
virtual char *GetPOSIXPath( const char *szPath ) override;
|
||||
};
|
||||
|
||||
char *GetWindowsPath( const char *szPath )
|
||||
char *CPOSIXFileSystem2::GetWindowsPath( const char *szPath )
|
||||
{
|
||||
char *szNewPath = (char*)V_malloc(V_strlen(szPath)+1);
|
||||
int i = 0;
|
||||
@@ -62,7 +64,7 @@ char *GetWindowsPath( const char *szPath )
|
||||
return szNewPath;
|
||||
}
|
||||
|
||||
char *GetPOSIXPath( const char *szPath )
|
||||
char *CPOSIXFileSystem2::GetPOSIXPath( const char *szPath )
|
||||
{
|
||||
char *szNewPath = (char*)V_malloc(V_strlen(szPath)+1);
|
||||
int i = 0;
|
||||
|
||||
Reference in New Issue
Block a user