Results 1 to 2 of 2

Thread: Can't Create Object File Error

  1. #1
    Join Date
    Jan 2015
    Beans
    6

    Can't Create Object File Error

    Hi,
    I am new to open source development. And, I am getting the following error in the path which I compile for arm;

    Assembler messages:
    Fatal error: can't create bin/arm1176/blabla.o: No such file or directory
    *** Error code 1
    clearmake: Error: Build script failed for "bin/arm1176/blabla.o"

    I've checked the related makefile. And it includes the following rules for blabla ;


    # Libraries


    OBJECTS =
    $(TESTOBJS)$(LIBOBJS)

    LIBOBJS_arm = \
    $(BIN)/blabla.o \

    Could you please mention about the possible causes of the problem ?
    Thanks in advance for the replies,


  2. #2
    Join Date
    Feb 2015
    Beans
    2

    Re: Can't Create Object File Error

    It seems the directory bin/arm1176/ does not exist. Assembler wants to put the output file there, but the directory was not created. Something is wrong in the makefile...

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •