mirror of https://github.com/PrimeDecomp/prime.git
Disable GENERATE_MAP by default (faster linking)
Former-commit-id: c21e495b7e
This commit is contained in:
parent
361f2bb9ce
commit
d3fd9a3936
|
@ -32,7 +32,7 @@ jobs:
|
||||||
cmake -B build
|
cmake -B build
|
||||||
cmake --build build
|
cmake --build build
|
||||||
- name: Build
|
- name: Build
|
||||||
run: make -j$(nproc) WINE=./tools/WiBo/build/wibo
|
run: make -j$(nproc) WINE=./tools/WiBo/build/wibo GENERATE_MAP=1
|
||||||
- name: Upload map
|
- name: Upload map
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -9,7 +9,7 @@ endif
|
||||||
VERBOSE ?= 0
|
VERBOSE ?= 0
|
||||||
|
|
||||||
# If GENERATE_MAP set to 1, tells LDFLAGS to generate a mapfile, which makes linking take several minutes.
|
# If GENERATE_MAP set to 1, tells LDFLAGS to generate a mapfile, which makes linking take several minutes.
|
||||||
GENERATE_MAP ?= 1
|
GENERATE_MAP ?= 0
|
||||||
|
|
||||||
ifeq ($(VERBOSE),0)
|
ifeq ($(VERBOSE),0)
|
||||||
QUIET := @
|
QUIET := @
|
||||||
|
|
Loading…
Reference in New Issue