1
1
mirror of https://github.com/rui314/mold.git synced 2024-09-21 01:47:11 +03:00

Bump mold version to 0.9.5

This commit is contained in:
Rui Ueyama 2021-09-06 21:06:33 +09:00
parent b39a47a759
commit dc672ad821
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ GIT_HASH ?= $(shell [ -d .git ] && git rev-parse HEAD)
OS ?= $(shell uname -s)
CPPFLAGS = -g -pthread -std=c++20 -fPIE \
-DMOLD_VERSION=\"0.9.4\" \
-DMOLD_VERSION=\"0.9.5\" \
-DGIT_HASH=\"$(GIT_HASH)\" \
$(EXTRA_CPPFLAGS)
LDFLAGS += $(EXTRA_LDFLAGS)

View File

@ -61,7 +61,7 @@ environment, you can build mold by the following commands.
$ sudo apt-get install build-essential libstdc++-10-dev cmake clang libssl-dev zlib1g-dev libxxhash-dev git
$ git clone https://github.com/rui314/mold.git
$ cd mold
$ git checkout v0.9.4
$ git checkout v0.9.5
$ make
```