Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: m-labs/misoc
base: 8d1c555e36aa
Choose a base ref
...
head repository: m-labs/misoc
compare: 0f47876d2e8e
Choose a head ref
  • 2 commits
  • 4 files changed
  • 1 contributor

Commits on Jul 25, 2015

  1. common.mak: remove AS.

    $(AS) was never used: $(assemble) invokes the C compiler instead.
    In case of LLVM, this will allow us to consistently use the LLVM
    internal assembler for both inline assembly in C and assembly
    sources; so, avoid ever invoking binutils as explicitly.
    whitequark committed Jul 25, 2015
    Configuration menu
    Copy the full SHA
    f500b90 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2015

  1. common.mak: remove RANLIB.

    `ranlib` is not necessary on any system we can possibly build for,
    as it is superseded by `ar s` for the last ten years or so (at least).
    Thus, change ar invocations to `ar crs`, also removing a `l` flag
    that is ignored by binutils.
    whitequark committed Jul 26, 2015
    Configuration menu
    Copy the full SHA
    0f47876 View commit details
    Browse the repository at this point in the history