Merge pull request #158 from motoya0118/main

Fixed an issue where compiler_cmd was undefined.
This commit is contained in:
Ed Donner
2025-02-15 13:54:39 -05:00
committed by GitHub

View File

@@ -480,8 +480,9 @@
"source": [
"def execute_cpp(code):\n",
" write_output(code)\n",
" compiler_cmd = [\"clang++\", \"-O3\", \"-std=c++17\", \"-march=armv8.3-a\", \"-o\", \"optimized\", \"optimized.cpp\"]\n",
" try:\n",
" compile_result = subprocess.run(compiler_cmd[2], check=True, text=True, capture_output=True)\n",
" compile_result = subprocess.run(compiler_cmd, check=True, text=True, capture_output=True)\n",
" run_cmd = [\"./optimized\"]\n",
" run_result = subprocess.run(run_cmd, check=True, text=True, capture_output=True)\n",
" return run_result.stdout\n",