Revert "use externally provided names of compiler shared libraries"

This reverts commit 73e6846cda.

Change-Id: I2b39bb5b3186f14f1077c06adca8db242abf1e6b
This commit is contained in:
Artur Harasimiuk
2018-03-28 12:03:10 +02:00
committed by sys_ocldev
parent aa088da8d3
commit 9f5f0f64cb
3 changed files with 5 additions and 42 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017 - 2018, Intel Corporation
* Copyright (c) 2017, Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -20,15 +20,15 @@
* OTHER DEALINGS IN THE SOFTWARE.
*/
#include "compiler.config.h"
#include "runtime/os_interface/os_library.h"
namespace Os {
#if defined(__linux__)
// Compiler library names
const char *frontEndDllName = FCL_LIBRARY_NAME;
const char *igcDllName = IGC_LIBRARY_NAME;
const char *frontEndDllName = "libigdfcl.so";
const char *igcDllName = "libigdccl.so";
const char *libvaDllName = "libva.so.1";
#endif //__linux__
const char *sysFsPciPath = "/sys/bus/pci/devices/";
const char *tbxLibName = "libtbxAccess.so";
}