ContributionsMost RecentMost LikesSolutionsDevCloud Make for Hardware Error Requires Installation of Intel Quartus Prime Hello, I am trying to make a hardware executable for my project and when I run the command " make hw -f Makefile.fpga" command it gives me the following messages : dpcpp -O2 -g -std=c++17 -I header -fintelfpga a_buffers.o -o simple-add-buffers.fpga -Xshardware Out of memory in module quartus_sh (1023 megabytes used). aoc: This compilation stage requires an installation of Intel(R) Quartus(R) Prime software! aoc: However Quartus was not found on the PATH or passed in using QUARTUS_ROOTDIR_OVERRIDE. aoc: If you have a valid installation, please pass it in using QUARTUS_ROOTDIR_OVERRIDE or add it to the PATH. aoc: Otherwise, consider downloading Quartus from here: https://www.intel.com/content/www/us/en/software-kit/661712/intel-quartus-prime-pro-edition-design-software-version-19-2-for-linux.html llvm-foreach: dpcpp: error: fpga compiler command failed with exit code 1 (use -v to see invocation) Makefile.fpga:31: recipe for target 'simple-add-buffers.fpga' failed make: *** [simple-add-buffers.fpga] Error 1 I found that on /glob/development-tools/oneapi/intelFPGA_pro/quartus but when I try to add it to path with export QUARTUS_ROOTDIR=/glob/development-tools/oneapi/intelFPGA_pro/19.2/quartus/ It doesn't make any change I still get the same error How could I solve this issue ? Solved