Changeset 201


Ignore:
Timestamp:
Nov 7, 2017, 7:13:11 AM (8 years ago)
Author:
Ben Rietbroek
Message:

Do not move the list-file when building on Linux [v1.1.1-testing]

The very slow writing of JWasm list-files seems to be a problem on
network drives. When building on Linux we disable this temporary moving
so we do not end-up with the list-file in a temp-dir on a build-error.

CAUTION:
This is a testbuild !
AirBoot uses the BIOS to access disks and a small coding error can trash
partition tables or other vital disk structures. You are advised to make
backups of TRACK0 and EBRs before using this testbuild. More info at:
https://rousseaux.github.io/netlabs.air-boot/pdf/AirBoot-v1.1.0-manual.pdf

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bootcode/Makefile

    r190 r201  
    166166# Generate the list-file on a local drive so JWasm doen't take forever.
    167167# This is done in the recipe.
     168!ifndef __LINUX__
    168169JWASM_LIST_FILE_LOC=$(%TEMP)$(DS)
    169170JWASM_LIST_FILE=-Fl=$(JWASM_LIST_FILE_LOC)$^&.lst
     171!else
     172JWASM_LIST_FILE=-Fl=$^&.lst
     173!endif
    170174
    171175# WASM
Note: See TracChangeset for help on using the changeset viewer.