Unverified Commit 9bf4718a authored by Anderson Torres's avatar Anderson Torres Committed by GitHub
Browse files

Merge pull request #216736 from winterqt/zig-0.9-baseline-cpu

zig_0_9: build with baseline CPU target
parents 6ed4ced8 ac44b254
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -47,6 +47,8 @@ stdenv.mkDerivation rec {
  cmakeFlags = [
    # file RPATH_CHANGE could not write new RPATH
    "-DCMAKE_SKIP_BUILD_RPATH=ON"

    # ensure determinism in the compiler build
    "-DZIG_TARGET_MCPU=baseline"
  ];

+3 −0
Original line number Diff line number Diff line
@@ -62,6 +62,9 @@ stdenv.mkDerivation rec {
  cmakeFlags = [
    # file RPATH_CHANGE could not write new RPATH
    "-DCMAKE_SKIP_BUILD_RPATH=ON"

    # ensure determinism in the compiler build
    "-DZIG_TARGET_MCPU=baseline"
  ];

  doCheck = true;