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
sudo dnf install \ | |
cmake \ | |
gcc-c++ \ | |
git-core \ | |
meson \ | |
glaze-static \ | |
pkgconfig \ | |
cairo-devel \ | |
mesa-libEGL-devel \ | |
mesa-libgbm-devel \ |
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
# Variables | |
$src = "~/source" | |
# Aliases | |
Set-Alias -Name winbash -Value 'C:\Program Files\Git\bin\bash.exe' | |
function reboot { | |
shutdown -r -t 0 | |
} |
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
$EXECUTABLE_NAME = "crump8term" | |
$EXECUTABLE_PATH = ".\$EXECUTABLE_NAME" | |
$GoPath = ((go env | Select-String -Pattern "GOPATH=" | Out-String) -split "=")[1].TrimEnd() | |
$GoPath += "\bin" | |
Set-Location $EXECUTABLE_PATH | |
go build -gcflags "-N -l" | |
if($LastExitCode -eq 0) { | |
Write-Output 'build success' | |
} else { | |
Write-Error 'go build failed' |