Skip to content

Commit b551a73

Browse files
committed
disable libbacktrace for mac
1 parent 58ff08c commit b551a73

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

make2/makefile-jamalgam

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ ODIR=../../../../bin/$(jplatform64)
1010

1111
ifneq (bsd,$(findstring bsd,$(jplatform64)))
1212

13+
ifneq (darwin,$(findstring darwin,$(jplatform64)))
14+
1315
BACKTRACE_OBJS := \
1416
atomic.o \
1517
backtrace.o \
@@ -31,6 +33,8 @@ endif
3133

3234
endif
3335

36+
endif
37+
3438
# note: the slowest builds have been placed at the top, to avoid starvation in parallel builds
3539
# (viavx is still longer than everything else combined--should maybe be broken up into multiple tus...)
3640
OBJS= \

make2/makefile-jconsole

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ ODIR=../../../../bin/$(jplatform64)
1515

1616
ifneq (bsd,$(findstring bsd,$(jplatform64)))
1717

18+
ifneq (darwin,$(findstring darwin,$(jplatform64)))
19+
1820
BACKTRACE_OBJS := \
1921
atomic.o \
2022
backtrace.o \
@@ -36,6 +38,8 @@ endif
3638

3739
endif
3840

41+
endif
42+
3943
OBJS= \
4044
jconsole.o \
4145
jeload.o \

0 commit comments

Comments
 (0)