AWS Tutorial code build error

Discussion to talk about software related topics only.
Post Reply
RebootExpert
Posts: 78
Joined: Fri Oct 09, 2020 2:57 pm

AWS Tutorial code build error

Post by RebootExpert »

I follow the AWS Tutorial, clone the source code from github. And import into NBEclipse 3.3 project. Without any modification, I have a build error of the code.
mkdir: cannot chdir to directory `nblibs/release/libraries': Permission denied
make: *** [C:/nburn/make/boilerplate.mk:294: nblibs/release/libraries/crypto/NetBurner/NbWolfSsl.o] Error 1
make: *** Waiting for unfinished jobs....
There's no such /nblibs subdir in the /nburn directory
RebootExpert
Posts: 78
Joined: Fri Oct 09, 2020 2:57 pm

Re: AWS Tutorial code build error

Post by RebootExpert »

Not sure why. As I rebuild it couple time, the error is gone. It build successfully.
RebootExpert
Posts: 78
Joined: Fri Oct 09, 2020 2:57 pm

Re: AWS Tutorial code build error

Post by RebootExpert »

In the tutorial source code

Code: Select all

    if (!InitializeAWSSDK())
    {
        iprintf("Exception initializing AWS SDK.");
        while (1)
        {
            OSTimeDly(TICKS_PER_SECOND);
        }
    }
    iprintf("Application started\n");
I see both print statements are executed. How does it break out of the infinite loop? I am using mod54415 and NNDK 3.3
Post Reply