mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
bug 292003: JUnit failure: managedbuilder testLinkedFolder intermittently fails
Benchmarks updated to 6.0.0 level
This commit is contained in:
parent
2fee5bf8ab
commit
107aabe04c
2 changed files with 24 additions and 29 deletions
|
@ -2,11 +2,11 @@
|
||||||
# Automatically-generated file. Do not edit!
|
# Automatically-generated file. Do not edit!
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
C_SRCS :=
|
|
||||||
O_SRCS :=
|
O_SRCS :=
|
||||||
|
C_SRCS :=
|
||||||
OBJS :=
|
OBJS :=
|
||||||
|
C_DEPS :=
|
||||||
ARCHIVES :=
|
ARCHIVES :=
|
||||||
DEPS :=
|
|
||||||
|
|
||||||
# Every subdirectory with source files must be described here
|
# Every subdirectory with source files must be described here
|
||||||
SUBDIRS := \
|
SUBDIRS := \
|
||||||
|
|
|
@ -4,30 +4,25 @@
|
||||||
|
|
||||||
# Add inputs and outputs from these tool invocations to the build variables
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
C_SRCS += \
|
C_SRCS += \
|
||||||
$(ROOT)/f1.c \
|
../f1.c \
|
||||||
$(ROOT)/f2.c
|
../f2.c
|
||||||
|
|
||||||
OBJS += \
|
OBJS += \
|
||||||
${addprefix ./, \
|
./f1.o \
|
||||||
f1.o \
|
./f2.o
|
||||||
f2.o \
|
|
||||||
}
|
|
||||||
|
|
||||||
DEPS += \
|
C_DEPS += \
|
||||||
${addprefix ./, \
|
./f1.d \
|
||||||
f1.d \
|
./f2.d
|
||||||
f2.d \
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
%.o: ../%.c
|
%.o: ../%.c
|
||||||
@echo 'Building file: $<'
|
@echo 'Building file: $<'
|
||||||
@echo 'Invoking: MBS30.compiler.gnu.c'
|
@echo 'Invoking: MBS30.compiler.gnu.c'
|
||||||
@echo gcc -O0 -g3 -Wall -c -fmessage-length=0 -o$@ $<
|
gcc -O0 -g3 -Wall -c -fmessage-length=0 -v -o"$@" "$<" && \
|
||||||
@gcc -O0 -g3 -Wall -c -fmessage-length=0 -o$@ $< && \
|
echo -n '$(@:%.o=%.d)' $(dir $@) > '$(@:%.o=%.d)' && \
|
||||||
echo -n $(@:%.o=%.d) $(dir $@) > $(@:%.o=%.d) && \
|
gcc -MM -MG -P -w -O0 -g3 -Wall -c -fmessage-length=0 -v "$<" >> '$(@:%.o=%.d)'
|
||||||
gcc -MM -MG -P -w -O0 -g3 -Wall -c -fmessage-length=0 $< >> $(@:%.o=%.d)
|
|
||||||
@echo 'Finished building: $<'
|
@echo 'Finished building: $<'
|
||||||
@echo ' '
|
@echo ' '
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue