소스 검색

Merge 5bf8d8b7de into a6d5a7ffbc

pull/5652/merge
ArthurRiuitiPinheiroSo 1 일 전
committed by GitHub
부모
커밋
88953a7c7e
No known key found for this signature in database GPG 키 ID: B5690EEEBB952194
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      build.zig

+ 3
- 3
build.zig 파일 보기

@ -107,10 +107,10 @@ fn compileRaylib(b: *std.Build, target: std.Build.ResolvedTarget, optimize: std.
var raylib_flags_arr: std.ArrayList([]const u8) = .empty;
defer raylib_flags_arr.deinit(b.allocator);
try raylib_flags_arr.append(
b.allocator,
try raylib_flags_arr.appendSlice(b.allocator, &.{
"-std=gnu99",
);
"-fno-sanitize=undefined", // https://github.com/raysan5/raylib/issues/3674
});
if (options.linkage == .dynamic) {
try raylib_flags_arr.append(

불러오는 중...
취소
저장