Merge pull request #3228 from SChernykh/dev

Fix build with gcc 13
This commit is contained in:
xmrig 2023-03-23 18:02:47 +07:00 committed by GitHub
commit 02259fec05
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 0 deletions

View file

@ -23,6 +23,9 @@
*/ */
#include <stdexcept>
#include "backend/opencl/runners/OclBaseRunner.h" #include "backend/opencl/runners/OclBaseRunner.h"
#include "backend/opencl/cl/OclSource.h" #include "backend/opencl/cl/OclSource.h"
#include "backend/opencl/OclCache.h" #include "backend/opencl/OclCache.h"

View file

@ -16,6 +16,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <stdexcept>
#include "backend/opencl/runners/OclCnRunner.h" #include "backend/opencl/runners/OclCnRunner.h"
#include "backend/opencl/kernels/Cn0Kernel.h" #include "backend/opencl/kernels/Cn0Kernel.h"
#include "backend/opencl/kernels/Cn1Kernel.h" #include "backend/opencl/kernels/Cn1Kernel.h"

View file

@ -16,6 +16,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <stdexcept>
#include "backend/opencl/runners/OclKawPowRunner.h" #include "backend/opencl/runners/OclKawPowRunner.h"
#include "backend/common/Tags.h" #include "backend/common/Tags.h"
#include "3rdparty/libethash/ethash_internal.h" #include "3rdparty/libethash/ethash_internal.h"

View file

@ -16,6 +16,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <stdexcept>
#include "backend/opencl/runners/OclRxJitRunner.h" #include "backend/opencl/runners/OclRxJitRunner.h"
#include "backend/opencl/cl/rx/randomx_run_gfx803.h" #include "backend/opencl/cl/rx/randomx_run_gfx803.h"
#include "backend/opencl/cl/rx/randomx_run_gfx900.h" #include "backend/opencl/cl/rx/randomx_run_gfx900.h"

View file

@ -21,6 +21,7 @@
#define XMRIG_HTTPRESPONSE_H #define XMRIG_HTTPRESPONSE_H
#include <cstdint>
#include <map> #include <map>
#include <string> #include <string>