Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » C / C++ IDE (CDT) » Source file not being included in a build
Source file not being included in a build [message #643391] Mon, 06 December 2010 17:21 Go to next message
Andrew Ellis is currently offline Andrew EllisFriend
Messages: 7
Registered: December 2010
Junior Member
Hi,

I am using Eclipse with C/C++ compiler for Jennic microcontroller.

I have added a source file to my project tree, but when I build the project the source file is not be built. I have spent a lot of time searching for inspiration to solving this problem with Google, this forum, and the included help in Eclipse, but I have been unsuccessful. The file in question is shown in the project tree. What do I need to do to ensure the source file is included in the build?

Thanks in advance

Andrew
Re: Source file not being included in a build [message #643528 is a reply to message #643391] Tue, 07 December 2010 09:37 Go to previous messageGo to next message
Axel Mueller is currently offline Axel MuellerFriend
Messages: 1973
Registered: July 2009
Senior Member
Do you use your own Makefile or does Eclipse generate them?

Before you ask
- search this forum
- see the FAQ http://wiki.eclipse.org/CDT/User/FAQ
- google
Re: Source file not being included in a build [message #643624 is a reply to message #643528] Tue, 07 December 2010 16:42 Go to previous messageGo to next message
Andrew Ellis is currently offline Andrew EllisFriend
Messages: 7
Registered: December 2010
Junior Member
Hi Axel,

I have used an example project where the makefile has been generated with Eclipse.

I have pasted the contents of the makefile below plus 3 other files that it references.

The file that is not being compiled is "24xx01.c", however it is listed in the file "subdir.mk" so I don't understand why it is not being compiled.

Thanks

Andrew

Makefile

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

-include ../makefile.init

RM := del

# All of the sources participating in the build are defined here
-include sources.mk
-include subdir.mk
-include Common/Source/subdir.mk
-include objects.mk

ifneq ($(MAKECMDGOALS),clean)
ifneq ($(strip $(C_DEPS)),)
-include $(C_DEPS)
endif
endif

-include ../makefile.defs

# Add inputs and outputs from these tool invocations to the build variables

# All Target
all: JN-AN-1061-Jenie-Application-Template\n

# Tool invocations
JN-AN-1061-Jenie-Application-Template\n: $(OBJS) $(USER_OBJS)
@echo 'Building target: $@'
@echo 'Invoking: Cygwin C Linker'
gcc -o"JN-AN-1061-Jenie-Application-Template\n" $(OBJS) $(USER_OBJS) $(LIBS)
@echo 'Finished building target: $@'
@echo ' '

# Other Targets
clean:
-$(RM) $(OBJS)$(C_DEPS)$(EXECUTABLES) JN-AN-1061-Jenie-Application-Template\n
-@echo ' '

.PHONY: all clean dependents
.SECONDARY:

-include ../makefile.targets

sources.mk

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

O_SRCS :=
C_SRCS :=
S_SRCS :=
OBJ_SRCS :=
ASM_SRCS :=
OBJS :=
C_DEPS :=
EXECUTABLES :=

# Every subdirectory with source files must be described here
SUBDIRS := \
Common/Source \

objects.mk

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

USER_OBJS :=

LIBS :=

subdir.mk

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

# Add inputs and outputs from these tool invocations to the build variables
C_SRCS += \
../Common/Source/24xx01.c \
../Common/Source/ExceptionHandler.c \
../Common/Source/RTC.c \
../Common/Source/Utils.c \
../Common/Source/adc.c \
../Common/Source/led.c \
../Common/Source/queue.c \
../Common/Source/serial.c \
../Common/Source/spi.c \
../Common/Source/time.c \
../Common/Source/uart.c \
../Common/Source/xsprintf.c

OBJS += \
./Common/Source/24xx01.o \
./Common/Source/ExceptionHandler.o \
./Common/Source/RTC.o \
./Common/Source/Utils.o \
./Common/Source/adc.o \
./Common/Source/led.o \
./Common/Source/queue.o \
./Common/Source/serial.o \
./Common/Source/spi.o \
./Common/Source/time.o \
./Common/Source/uart.o \
./Common/Source/xsprintf.o

C_DEPS += \
./Common/Source/24xx01.d \
./Common/Source/ExceptionHandler.d \
./Common/Source/RTC.d \
./Common/Source/Utils.d \
./Common/Source/adc.d \
./Common/Source/led.d \
./Common/Source/queue.d \
./Common/Source/serial.d \
./Common/Source/spi.d \
./Common/Source/time.d \
./Common/Source/uart.d \
./Common/Source/xsprintf.d


# Each subdirectory must supply rules for building sources it contributes
Common/Source/%.o: ../Common/Source/%.c
@echo 'Building file: $<'
@echo 'Invoking: Cygwin C Compiler'
gcc -I" C:\Jennic\Application\JN-AN-1151-Low-Cost-JenNet-IP-Gateway\ Gateway\Source\uip-1v0 " -I"C:\Jennic\cygwin\jennic\SDK\Platform\Common\Source" -O2 -g -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<"
@echo 'Finished building: $<'
@echo ' '

[Updated on: Tue, 07 December 2010 16:43]

Report message to a moderator

Re: Source file not being included in a build [message #643680 is a reply to message #643624] Tue, 07 December 2010 20:04 Go to previous messageGo to next message
Axel Mueller is currently offline Axel MuellerFriend
Messages: 1973
Registered: July 2009
Senior Member
Hmm, the makefiles look OK to me. Are the other source files compiled? When you clean the project and then rebuild it does everything get build? Are there any error messages in the build console?

Before you ask
- search this forum
- see the FAQ http://wiki.eclipse.org/CDT/User/FAQ
- google
Re: Source file not being included in a build [message #643985 is a reply to message #643680] Wed, 08 December 2010 22:44 Go to previous messageGo to next message
Andrew Ellis is currently offline Andrew EllisFriend
Messages: 7
Registered: December 2010
Junior Member
Hi Axel,

Thank you for your reply. I can build the other files without any problems.

I have pasted the output from the console below. I'm sorry that it's so lengthy. I don't know it it gives any clues. If not, perhaps I could email my project to you?

Thanks

Andrew


**** Build of configuration Gateway for project JN-AN-1151-Low-Cost-JenNet-IP-Gateway ****

make all
rm -f xsprintf.o
rm -f ENC28J60.o
rm -f timer.o
rm -f psock.o
rm -f uip_arp.o
rm -f uip.o
rm -f ip.o
rm -f setup.o
rm -f network-device.o
rm -f httpd.o
rm -f httpd-fs.o
rm -f httpd-cgi.o
rm -f http-strings.o
rm -f clock-arch.o
rm -f uart.o
rm -f time.o
rm -f spi.o
rm -f serial.o
rm -f queue.o
rm -f RTC.o
rm -f Utils.o
rm -f Gateway.o
Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/Gateway.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o Gateway.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/Gateway.c -MD -MF Gateway.d -MP

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Common/Source/Utils.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o Utils.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Common/Source/Utils.c -MD -MF Utils.d -MP

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Common/Source/RTC.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o RTC.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Common/Source/RTC.c -MD -MF RTC.d -MP

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Common/Source/queue.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o queue.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Common/Source/queue.c -MD -MF queue.d -MP

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Common/Source/serial.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o serial.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Common/Source/serial.c -MD -MF serial.d -MP
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Common/Source/serial.c: In function 'clear_TxBuf':
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Common/Source/serial.c:138: warning: cast to pointer from integer of different size

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Common/Source/spi.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o spi.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Common/Source/spi.c -MD -MF spi.d -MP

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Common/Source/time.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o time.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Common/Source/time.c -MD -MF time.d -MP

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Common/Source/uart.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o uart.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Common/Source/uart.c -MD -MF uart.d -MP

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/clock-arch.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o clock-arch.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/clock-arch.c -MD -MF clock-arch.d -MP

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/http-strings.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o http-strings.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/http-strings.c -MD -MF http-strings.d -MP

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-cgi.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o httpd-cgi.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-cgi.c -MD -MF httpd-cgi.d -MP
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-cgi.c: In function 'u8UpdateTableEntry':
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-cgi.c:139: warning: dereferencing 'void *' pointer
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-cgi.c:143: warning: dereferencing 'void *' pointer
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-cgi.c:146: warning: format '%08X' expects type 'unsigned int', but argument 4 has type 'uint64'
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-cgi.c:146: warning: format '%08X' expects type 'unsigned int', but argument 5 has type 'uint64'
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-cgi.c:148: warning: dereferencing 'void *' pointer
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-cgi.c:154: warning: dereferencing 'void *' pointer
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-cgi.c:159: warning: dereferencing 'void *' pointer
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-cgi.c:166: warning: dereferencing 'void *' pointer
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-cgi.c:171: warning: dereferencing 'void *' pointer
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-cgi.c:175: warning: dereferencing 'void *' pointer
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-cgi.c:176: warning: format '%d' expects type 'int', but argument 4 has type 'uint32'
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-cgi.c:178: warning: dereferencing 'void *' pointer

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-fs.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o httpd-fs.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-fs.c -MD -MF httpd-fs.d -MP
In file included from /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-fs.c:44:
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-fsdata.c:173: warning: pointer targets in initialization differ in signedness
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-fsdata.c:173: warning: pointer targets in initialization differ in signedness
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-fsdata.c:175: warning: pointer targets in initialization differ in signedness
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-fsdata.c:175: warning: pointer targets in initialization differ in signedness

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd.c ...
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-fs.c: In function 'httpd_fs_open':
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-fs.c:81: warning: dereferencing type-punned pointer will break strict-aliasing rules
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o httpd.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd.c -MD -MF httpd.d -MP
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-fs.c: In function 'httpd_fs_count':
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd-fs.c:120: warning: dereferencing type-punned pointer will break strict-aliasing rules
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd.c: In function 'handle_connection_cs':
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/httpd.c:409: warning: passing argument 2 of 'b24xx01_Write' makes pointer from integer without a cast

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/network-device.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o network-device.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/network-device.c -MD -MF network-device.d -MP

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/setup.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o setup.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/setup.c -MD -MF setup.d -MP

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/ip.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o ip.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/ip.c -MD -MF ip.d -MP

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/uip-1v0/uip/uip.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o uip.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/uip-1v0/uip/uip.c -MD -MF uip.d -MP
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/uip-1v0/uip/uip.c: In function 'uip_process':
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/uip-1v0/uip/uip.c:1849: warning: label 'ip_send_nolen' defined but not used
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/uip-1v0/uip/uip.c:1446: warning: will never be executed

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/uip-1v0/uip/uip_arp.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o uip_arp.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/uip-1v0/uip/uip_arp.c -MD -MF uip_arp.d -MP

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/uip-1v0/uip/psock.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o psock.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/uip-1v0/uip/psock.c -MD -MF psock.d -MP
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/uip-1v0/uip/psock.c: In function 'psock_send':
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/uip-1v0/uip/psock.c:187: warning: pointer targets in assignment differ in signedness
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/uip-1v0/uip/psock.c: In function 'psock_readto':
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/uip-1v0/uip/psock.c:275: warning: pointer targets in passing argument 2 of 'buf_setup' differ in signedness
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/uip-1v0/uip/psock.c: In function 'psock_readbuf':
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/uip-1v0/uip/psock.c:302: warning: pointer targets in passing argument 2 of 'buf_setup' differ in signedness
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/uip-1v0/uip/psock.c: In function 'psock_init':
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/uip-1v0/uip/psock.c:333: warning: pointer targets in passing argument 2 of 'buf_setup' differ in signedness

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/uip-1v0/uip/timer.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o timer.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/uip-1v0/uip/timer.c -MD -MF timer.d -MP

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/ENC28J60.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o ENC28J60.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/ENC28J60.c -MD -MF ENC28J60.d -MP
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/ENC28J60.c: In function 'bENC28J60_Init':
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/ENC28J60.c:435: warning: will never be executed
/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Gateway/Source/ENC28J60.c:433: warning: will never be executed

Compiling /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Common/Source/xsprintf.c ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -c -o xsprintf.o -DJN514x=5140 -DJN5148=5148 -msibcall -mno-entri -mno-multi -mno-setcc -mno-cmov -mno-carry -mno-subb -mno-sext -mno-ror -mno-hard-div -mhard-mul -mbranch-cost=3 -msimple-mul -march=ba2 -mredzone-size=4 -ffixed-r16 -ffixed-r17 -ffixed-r18 -ffixed-r19 -ffixed-r20 -ffixed-r21 -ffixed-r22 -ffixed-r23 -ffixed-r24 -ffixed-r25 -ffixed-r26 -ffixed-r27 -ffixed-r28 -ffixed-r29 -ffixed-r30 -ffixed-r31 -fomit-frame-pointer -Os -fdata-sections -ffunction-sections -DWATCHDOG_ENABLED -DJENNIC_CHIP=JN5148 -DJENNIC_CHIP_FAMILY=JN514x -Wall -Wunreachable-code -I/cygdrive/c/Jennic/Platform/Common/Include -I/cygdrive/c/Jennic/Platform/DK2/Include -I/cygdrive/c/Jennic/Components/Common/Include -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/uip-1v0/uip -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Gateway/Source/.. -I/cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet- IP-Gateway/Common/Source -I/cygdrive/c/Jennic/Components/JennicLogo/Include -I/cygdrive/c/Jennic/Components/Utilities/Include -I/cygdrive/c/Jennic/Components/AppQueueApi/Include -I/cygdrive/c/Jennic/Components/JenNet/Include -I/cygdrive/c/Jennic/Components/Jenie/Include -I/cygdrive/c/Jennic/Components/AppApi/Include -I/cygdrive/c/Jennic/Components/HardwareApi/Include -I/cygdrive/c/Jennic/Components/MAC/Include -I/cygdrive/c/Jennic/Components/TimerServer/Include -I/cygdrive/c/Jennic/Components/Random/Include /cygdrive/c/Jennic/Application/JN-AN-1151-Low-Cost-JenNet-IP -Gateway/Common/Source/xsprintf.c -MD -MF xsprintf.d -MP

Linking Gateway_JN5148.elf ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-gcc -Wl,--gc-sections -Wl,-u_AppColdStart -Wl,-u_AppWarmStart -TApp_Stack_Size.ld -nostartfiles -mba2_elf -march=ba2 -L/cygdrive/c/Jennic/Chip/JN5148/Build -L/cygdrive/c/Jennic/Chip/JN5148/Library -L/cygdrive/c/Jennic/Platform/DK2/Library -L/cygdrive/c/Jennic/Components/Library -L/cygdrive/c/Jennic/Stack/JenNet/Build -TAppBuild_JN5148.ld -o Gateway_JN5148.elf Gateway.o Utils.o RTC.o queue.o serial.o spi.o time.o uart.o clock-arch.o http-strings.o httpd-cgi.o httpd-fs.o httpd.o network-device.o setup.o ip.o uip.o uip_arp.o psock.o timer.o ENC28J60.o xsprintf.o -Wl,--start-group -lJenieCR_JN514x -lMacPatch_JN5148 -lHWPatch_JN5148 -lBoardLib_JN514x -Wl,--end-group -Wl,-Map,Gateway_JN5148.map
Generating binary ...
/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-size Gateway_JN5148.elf
text data bss dec hex filename
44239 1392 17524 63155 f6b3 Gateway_JN5148.elf

/cygdrive/c/Jennic/Tools/ba-elf-ba2/bin/ba-elf-objcopy -j .flashheader -j .oad -j .mac -j .heap_location -j .rtc_clt -j .rodata -j .data -j .text -j .bss -j .heap -j .stack -S -O binary Gateway_JN5148.elf Gateway_JN5148.bin
Re: Source file not being included in a build [message #644039 is a reply to message #643985] Thu, 09 December 2010 08:32 Go to previous messageGo to next message
Axel Mueller is currently offline Axel MuellerFriend
Messages: 1973
Registered: July 2009
Senior Member
The build output does not correspond to the Makefile you posted last time. E.g. Gateway.c is not mentioned in your Makefile and the files adc.c and ed.c that are listed in the Makefile are not build.
I am also missing the message "Invoking: Cygwin C Compiler" from Eclipse makefile.
I guess you are invoking the wrong Makefile from Eclipse. In Project Properties->C/C++ Build you can define the location of the Makefile ("build location"). Usually it is the root folder of your project (depends on the build configuration!).


Before you ask
- search this forum
- see the FAQ http://wiki.eclipse.org/CDT/User/FAQ
- google
Re: Source file not being included in a build [message #644147 is a reply to message #644039] Thu, 09 December 2010 17:00 Go to previous message
Andrew Ellis is currently offline Andrew EllisFriend
Messages: 7
Registered: December 2010
Junior Member
Thanks Axel,

I was looking at the wrong make files. I found the correct file and added my source files to the appropriate list and it compiles Smile I'm not sure where the make files shown in my projects tree came from but they are not used by the project. So I'm please to say my problem is solved.

Thanks

Andrew
Previous Topic:anyone on a Mac use Qt?
Next Topic:How to add context menu & key binding to CEditor?
Goto Forum:
  


Current Time: Wed Apr 24 16:49:23 GMT 2024

Powered by FUDForum. Page generated in 0.04467 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top