Generate dll names to lib_names.h

Remove some not needed ifdef blocks

Change-Id: I29f787bde819a2f19312dd5713df0d4534a47cd8
This commit is contained in:
Mateusz Jablonski
2018-06-11 16:15:11 +02:00
committed by sys_ocldev
parent 84422edbd9
commit 5007c60a03
12 changed files with 26 additions and 78 deletions

View File

@ -20,7 +20,7 @@
* OTHER DEALINGS IN THE SOFTWARE.
*/
#include "compiler.config.h"
#include "lib_names.h"
#include "runtime/os_interface/os_library.h"
namespace Os {

View File

@ -22,14 +22,9 @@
#include "lib_names.h"
namespace Os {
#if defined(_WIN64)
const char *frontEndDllName = "igdfcl64.dll";
const char *igcDllName = "igc64.dll";
#else
const char *frontEndDllName = "igdfcl32.dll";
const char *igcDllName = "igc32.dll";
#endif
const char *frontEndDllName = FCL_LIBRARY_NAME;
const char *igcDllName = IGC_LIBRARY_NAME;
const char *gdiDllName = "gdi32.dll";
const char *gmmDllName = GMM_LIB_FILENAME;
const char *gmmDllName = GMM_LIBRARY_NAME;
} // namespace Os