Giter Club home page Giter Club logo

Comments (7)

martyfouts avatar martyfouts commented on August 16, 2024

forgot to specify the gcc version:

$ gcc --version
gcc (GCC) 5.1.1 20150618 (Red Hat 5.1.1-4)

from epiphany-sdk.

martyfouts avatar martyfouts commented on August 16, 2024

I think I see the problem. Here's an example. (All paths relative to unisrc-2015.1/sim)

The code is using a technique to inline functions if certain variables are defined. common/sim-arange.h shows this with

#ifdef HAVE_INLINE
#ifdef SIM_ARANGE_C
#define SIM_ARANGE_INLINE INLINE
#else
#define SIM_ARANGE_INLINE EXTERN_INLINE
#endif
#include "sim-arange.c"
#else
#define SIM_ARANGE_INLINE
#endif
#define SIM_ARANGE_C_INCLUDED

It appears that the problem with this approach is that it's possible for GCC to decide not to inline a function. If this happens, then that function is copied int every C file that includes sim-basics.h leading to it being compiled everywhere but not inlined, resulting in multiple symbol definitions that are discovered by ld, breaking the build.

I don't know what the solution is.

from epiphany-sdk.

martyfouts avatar martyfouts commented on August 16, 2024

My analysis was in error. The problem is that the meaning of 'extern inline' is different in gnu89 than it is in gnu11 and gcc 5 defaults to gnu11

https://gcc.gnu.org/gcc-5/porting_to.html describes the situation.

The solution appears to be to change the definition of FOO_INLINE to EXTERN_INLINE in foo.h and to compile with -std=gnu89

from epiphany-sdk.

Shadowigor avatar Shadowigor commented on August 16, 2024

I have the same problem with gcc 5.2.0. Any solutions yet?

from epiphany-sdk.

olajep avatar olajep commented on August 16, 2024

@Shadowigor
Can you please try again. Should be fixed in:
8335158

You need to cd into sdk and do a git pull to get the fix

// Ola

from epiphany-sdk.

Shadowigor avatar Shadowigor commented on August 16, 2024

Thank you! It works now.

from epiphany-sdk.

olajep avatar olajep commented on August 16, 2024

closing as it seems fixed.

from epiphany-sdk.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.