Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] nulls in makefile building library

Hello all,

I'm using eclipse 3.0.1 with CDT 2.1 RC4 and I'm getting these 'null's in the makefile for a static library managed build project. It should be something like "ar ru" instead of "null null".
I had CDT 2.0.2 before with the same problem.
There doesn't seem to be a way to configure the archive tool for building library targets with CDT.
Here's the generated makefile:

<snip>

################################################################################
# Automatically-generated file. Do not edit!
################################################################################

ROOT := ..

-include $(ROOT)/makefile.init

RM := rm -rf

# All of the sources participating in the build are defined here
-include sources.mk
-include $(SUBDIRS:%=%/subdir.mk)
-include objects.mk
-include $(DEPS)
-include $(ROOT)/makefile.defs

all: libct.a

libct.a: $(OBJS)
	@echo 'Building target: $@'
	null null  $@ $(OBJS) $(USER_OBJS) $(LIBS)
	@echo 'Finished building: $@'

clean:
	-$(RM) $(OBJS) $(DEPS) libct.a

.PHONY: all clean dependents

-include $(ROOT)/makefile.targets

</snip>


Is this a bug or is there a way to correct this by configuration?

Thanks in advance.

--
Joao Filipe Placido


Back to the top