소스 검색

Merge pull request #2222 from ferd/fix-compiler-change-bootstrap-crashes

Fix bootstrap crashes when compilers get modified
pull/2224/head
Fred Hebert 5 년 전
committed by GitHub
부모
커밋
2c3d7ab3ea
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. +5
    -0
      bootstrap

+ 5
- 0
bootstrap 파일 보기

@ -14,6 +14,11 @@ main(_) ->
%% Clear directories for builds since bootstrapping may require
%% a changed structure from an older one
rm_rf("_build/bootstrap"),
%% When recompiling rebar3 itself, the path swaps and cleaning
%% removes the modules in _build/bootstrap, but the VM still
%% manages to discover those in _build/prod from previous builds and
%% cause weird failures when compilers get modified between releases.
rm_rf("_build/prod"),
%% We fetch a few deps from hex for boostraping,
%% so we must compile r3_safe_erl_term.xrl which

불러오는 중...
취소
저장