104 lines
2.8 KiB
PowerShell
104 lines
2.8 KiB
PowerShell
$ps1_devshell = join-path $PSScriptRoot 'helpers/devshell.ps1'
|
|
. $ps1_devshell -arch amd64
|
|
$path_root = split-path -Path $PSScriptRoot -Parent
|
|
$path_build = join-path $path_root 'build'
|
|
$path_code = join-path $path_root 'code'
|
|
$path_asm = join-path $path_code 'asm'
|
|
$path_toolchain = join-path $path_root 'toolchain'
|
|
$path_rad = join-path $path_toolchain 'rad'
|
|
|
|
if ((test-path $path_build) -eq $false) {
|
|
new-item -itemtype directory -path $path_build
|
|
}
|
|
|
|
$unit_name = 'hello_nasm'
|
|
|
|
$unit = join-path $path_asm "$unit_name.asm"
|
|
$listing = join-path $path_build "$unit_name.list"
|
|
$link_obj = join-path $path_build "$unit_name.o"
|
|
$map = join-path $path_build "$unit_name.map"
|
|
$pdb = join-path $path_build "$unit_name.pdb"
|
|
$rdi = join-path $path_build "$unit_name.rdi"
|
|
$exe = join-path $path_build "$unit_name.exe"
|
|
|
|
$nasm = 'nasm'
|
|
$link = 'link.exe'
|
|
$radbin = join-path $path_rad 'radbin.exe'
|
|
$radlink = join-path $path_rad 'radlink.exe'
|
|
|
|
push-location $path_root
|
|
$f_assemble_only = '-a'
|
|
$f_bin_fmt_coff = '-f coff'
|
|
$f_bin_fmt_win64 = '-f win64'
|
|
$f_debug = '-g'
|
|
$f_debug_fmt_win64 = '-g cv8'
|
|
$f_dmacro = '-Dmacro='
|
|
$f_Ipath = '-Ipath '
|
|
$f_listing = '-l'
|
|
$f_listing_plus = '-L+'
|
|
$f_preprocess_only = '-E'
|
|
$f_optimize_none = '-O0'
|
|
$f_optimize_min = '-O1'
|
|
$f_optimize_multi = '-Ox'
|
|
$f_optimize_multi_disp = '-Ov'
|
|
$f_outfile = '-o '
|
|
$f_warnings_as_errors = '-Werror'
|
|
|
|
write-host 'Preprocessing'
|
|
$args = @(
|
|
$unit,
|
|
$f_preprocess_only,
|
|
$f_optimize_none,
|
|
($f_listing + $listing),
|
|
$f_listing_plus
|
|
)
|
|
& $nasm $args
|
|
|
|
write-host 'Assembling'
|
|
$args = @(
|
|
$unit,
|
|
$f_preprocess_only,
|
|
$f_optimize_none,
|
|
$f_bin_fmt_win64,
|
|
$f_debug_fmt_win64,
|
|
($f_outfile + $link_obj)
|
|
)
|
|
& $nasm $args
|
|
|
|
$lib_kernel32 = 'kernel32.lib'
|
|
$lib_msvcrt = 'msvcrt.lib'
|
|
|
|
$link_nologo = '/NOLOGO'
|
|
$link_debug = '/DEBUG:'
|
|
$link_entrypoint = '/ENTRY:'
|
|
$link_mapfile = '/MAP:'
|
|
$link_library = '/'
|
|
$link_outfile = '/OUT:'
|
|
$link_win_machine_64 = '/MACHINE:X64'
|
|
$link_win_subsystem_console = '/SUBSYSTEM:CONSOLE'
|
|
$link_win_subsystem_windows = '/SUBSYSTEM:WINDOWS'
|
|
$rad_debug = '/RAD_DEBUG'
|
|
$rad_debug_name = '/RAD_DEBUG_NAME:'
|
|
$rad_large_pages = '/RAD_LARGE_PAGES:'
|
|
$args = @(
|
|
# $rad_debug,
|
|
$link_nologo,
|
|
($link_debug + 'FULL'),
|
|
($link_mapfile + $map)
|
|
$link_win_machine_64,
|
|
$link_win_subsystem_console,
|
|
$lib_kernel32,
|
|
# $lib_msvcrt,
|
|
($link_entrypoint + 'main'),
|
|
($link_outfile + $exe),
|
|
$link_obj
|
|
)
|
|
write-host 'Linking'
|
|
& $link $args
|
|
pop-location
|
|
|
|
$rbin_out = '--out:'
|
|
$rbin_dump = '--dump '
|
|
|
|
# $radbin
|