-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* makes '$build_root/{install,debug}/' the default prefix. This makes it not '$pwd/zig-cache/'.
- Loading branch information
Showing
2 changed files
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,8 +134,8 @@ pub fn main() !void { | |
} | ||
} | ||
|
||
builder.resolveInstallPrefix(); | ||
try runBuild(builder); | ||
builder.resolveInstallPrefix(); | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
andrewrk
Member
|
||
|
||
if (builder.validateUserInputDidItFail()) | ||
return usageAndErr(builder, true, stderr_stream); | ||
|
This change has caused segmentation faults for build files that reference exe_dir or install_path. What is the proposed alternative?