Starting to build a codebase for messing with assembly generation compatible with yasm
This commit is contained in:
@ -1,6 +1,9 @@
|
||||
$misc = join-path $PSScriptRoot 'helpers/misc.ps1'
|
||||
. $misc
|
||||
|
||||
$update_deps = join-path $PSScriptRoot 'update_deps.ps1'
|
||||
. $update_deps
|
||||
|
||||
$path_root = git rev-parse --show-toplevel
|
||||
$path_build = join-path $path_root 'build'
|
||||
$path_scripts = join-path $path_root 'scripts'
|
||||
|
15
scripts/update_deps.ps1
Normal file
15
scripts/update_deps.ps1
Normal file
@ -0,0 +1,15 @@
|
||||
$misc = join-path $PSScriptRoot 'helpers/misc.ps1'
|
||||
. $misc
|
||||
|
||||
$path_root = git rev-parse --show-toplevel
|
||||
$path_build = join-path $path_root 'build'
|
||||
$path_scripts = join-path $path_root 'scripts'
|
||||
$path_source = join-path $path_root 'source'
|
||||
$path_toolchain = join-path $path_root 'toolchain'
|
||||
|
||||
$url_yasm = 'https://github.com/yasm/yasm.git'
|
||||
|
||||
$path_yasm = join-path $path_toolchain 'yasm'
|
||||
$path_libyasm = join-path $path_yasm 'libyasm'
|
||||
|
||||
clone-gitrepo $path_yasm $url_yasm
|
Reference in New Issue
Block a user