macmade / makelib

Generic cross-platform makefile for building C/C++/Objective-C libraries.
13 stars 3 forks source link

Segmentation fault in Targets.mk (CoreFoundation) #4

Open Luckytrang2010 opened 2 years ago

Luckytrang2010 commented 2 years ago
iPad:~/Documents/CoreFoundation mobile$ make
make: *** [Submodules/makelib/Targets.mk:68: release] Segmentation fault: 11

line 68 is ifeq ($(MAKE_4),true)

# Release build (parallel if available)
release:

ifeq ($(MAKE_4),true) #??? why is this causing a segmentation fault
    @$(MAKE) -j 50 --output-sync products
else
    @$(MAKE) products
endif

if any fix for this, i would be more than happy to know :smile:

macmade commented 2 years ago

I have no idea...
Does it work if you just invoke make products ?

Luckytrang2010 commented 2 years ago

Will try that

Luckytrang2010 commented 2 years ago

it gave me this make: *** No rule to make target 'Build/Release/Products/x86_64/libCoreFoundation.a', needed by 'products'. Stop.