Skip to content

Commit

Permalink
chore: use matter labs bug report url for LLVM
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbaliasnikov committed Nov 26, 2024
1 parent af03838 commit 2e3774e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/platforms/shared.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use std::path::Path;
use std::process::Command;

/// The build options shared by all platforms.
pub const SHARED_BUILD_OPTS: [&str; 18] = [
pub const SHARED_BUILD_OPTS: [&str; 19] = [
"-DPACKAGE_VENDOR='Matter Labs'",
"-DCMAKE_BUILD_WITH_INSTALL_RPATH=1",
"-DLLVM_BUILD_DOCS='Off'",
Expand All @@ -27,7 +27,8 @@ pub const SHARED_BUILD_OPTS: [&str; 18] = [
"-DLLVM_ENABLE_LIBEDIT='Off'",
"-DLLVM_ENABLE_LIBPFM='Off'",
"-DCMAKE_EXPORT_COMPILE_COMMANDS='On'",
"-DPython3_FIND_REGISTRY='LAST'", // Use Python version from PATH, and not from registry
"-DPython3_FIND_REGISTRY='LAST'", // Use Python version from PATH, and not from registry,
"-DBUG_REPORT_URL='https://github.com/matter-labs/era-compiler-llvm/issues/'",
];

/// The build options shared by all platforms except MUSL.
Expand Down

0 comments on commit 2e3774e

Please sign in to comment.