Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Library's name
Forum Updated to NodeBB v4.3 + New Features

Library's name

Scheduled Pinned Locked Moved General and Desktop
22 Posts 4 Posters 8.7k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L Offline
    L Offline
    loladiro
    wrote on last edited by
    #8

    The link you posted is only for MSVC (and for libary creation, not linking it), MinGW handles it like gcc on linux/mac. If you do not know the name you can just add the dynamic library WITHOUT the -l option, e.g. LIBS += lin.so although this is not cross platform. In your case (I guess, if it's not then you are not using standard naming conventions and you can't use -l) the library file is called liblin.so. In that case the -l option would be LIBS += -llin. Also, even though the author of the library said you could use it, he'll either have to license it to you under the LGPL or give you a written exception to the GPL (the latter would be quite difficult without involving a lawyer), because otherwise you're still violationg licensing terms (never good - imagine he changes his mind after a year and sues you).

    1 Reply Last reply
    0
    • M Offline
      M Offline
      mike4
      wrote on last edited by
      #9

      Thanks now linking and compiling is ok. but executing at another place I get:
      liblin.so => not found
      even tough I've copied it into the same folder as the executable. Which leads to another question:
      1- how to link statically
      2- " dynamic ( having the lib in the same folder )

      2-would not allow closed source if the lib is gpl2? So i probably will go something else...

      1 Reply Last reply
      0
      • L Offline
        L Offline
        loladiro
        wrote on last edited by
        #10

        You mean concerning the licensing issues?
        You have three options:

        Don't do it

        Get the author to give you a proper license that allows closed source apps

        Make your project open source (and GPL)

        1 Reply Last reply
        0
        • M Offline
          M Offline
          mike4
          wrote on last edited by
          #11

          Thanks now linking and compiling is ok. but executing at another place I get: liblin.so => not found
          even tough I’ve copied it into the same folder as the executable. Which leads to another question:
          1- how to link statically
          2- “ dynamic ( having the lib in the same folder )

          2-would not allow closed source if the lib is gpl2? So i probably will go for something else…
          Thanks again, you're very helpful.

          1 Reply Last reply
          0
          • L Offline
            L Offline
            loladiro
            wrote on last edited by
            #12

            "About shared library search paths":http://www.eyrie.org/~eagle/notes/rpath.html

            1 Reply Last reply
            0
            • G Offline
              G Offline
              giesbert
              wrote on last edited by
              #13

              copying to the same dir only works on windows, not on linux.

              Nokia Certified Qt Specialist.
              Programming Is Like Sex: One mistake and you have to support it for the rest of your life. (Michael Sinz)

              1 Reply Last reply
              0
              • M Offline
                M Offline
                mike4
                wrote on last edited by
                #14

                I saw that below with another project. What exactly is that? shared would need some *.so? But there's only the executable shipped.

                LNFLAGS+=-shared -rdynamic -nodefaultlibs -m32 -ggdb -L/usr/lib32 -L../libavionics -L../libogl -L$(LUAJIT)/lib

                1 Reply Last reply
                0
                • T Offline
                  T Offline
                  travertinclean
                  wrote on last edited by
                  #15

                  MinGW is a port of GCC - Gnu Compiler Collection to Microsoft Windows. Just Check your configuration process..

                  [url=http://www.heavensentfloorcare.com/travertine.html]Travertine sealing Dallas|Frisco|Plano[/url]

                  1 Reply Last reply
                  0
                  • M Offline
                    M Offline
                    mike4
                    wrote on last edited by
                    #16

                    what is that? are u copying loladiro's answer? read my question pls or no better i start a new thread

                    1 Reply Last reply
                    0
                    • M Offline
                      M Offline
                      mike4
                      wrote on last edited by
                      #17

                      the author told me that i dont need to link wheter static nor dynamic and hence no gpl problem....

                      http://www.osnews.com/story/24557/Torvalds_Android_GPL_Claims_Totally_Bogus_

                      "It seems totally bogus. We've always made it very clear that the kernel system call interfaces do not in any way result in a derived work as per the GPL, and the kernel details are exported through the kernel headers to all the normal glibc interfaces too. ... If it's some desperate cry for attention by somebody, I just wish those people would release their own sex tapes or something, rather than drag the Linux kernel into their sordid world."

                      1 Reply Last reply
                      0
                      • L Offline
                        L Offline
                        loladiro
                        wrote on last edited by
                        #18

                        So, you want to use the kernel system call interface? Or what do you want to tell us with the link? In the case of the linux kernel headers, the (legal) situation is kinda special, because they contain merely the definition of an interface to interact with the kernel. Is the library you want to use a headers only library?

                        1 Reply Last reply
                        0
                        • M Offline
                          M Offline
                          mike4
                          wrote on last edited by
                          #19

                          have a look at the link to vascore below. I was told that no linking is needed as communication would be alike the link posted above.

                          1 Reply Last reply
                          0
                          • M Offline
                            M Offline
                            mike4
                            wrote on last edited by
                            #20

                            https://github.com/PhilippMuenzel/vascore-embedded

                            that's what im looking at...

                            1 Reply Last reply
                            0
                            • G Offline
                              G Offline
                              giesbert
                              wrote on last edited by
                              #21

                              Hi mike4,

                              there are 3 possibilities:

                              you use plain C functions. Then you can use late binding and QLibbrary::resolve

                              you want to use C++ classes, then you must use early binding and link against the library

                              you combine them through the use of interfaces and creator functions. But then the interfaces must be pure interfaces.

                              Nokia Certified Qt Specialist.
                              Programming Is Like Sex: One mistake and you have to support it for the rest of your life. (Michael Sinz)

                              1 Reply Last reply
                              0
                              • M Offline
                                M Offline
                                mike4
                                wrote on last edited by
                                #22

                                Hi
                                now i simply want to compile/run the main.cpp in the root folder and get:

                                dlerror:/apps/X-Plane/Aircraft/General Aviation/Paa/alal/plugins/fmc/lin.xpl: undefined symbol: _ZN9FMSSystemC1Ev

                                Compilation is ok without linking. So i cannot link for GPL reasons but what am i doing then? And why do i get the above error if i don't have to link?
                                The lib is compiled and copied into the same folder as the plugin(main.cpp; x-plane plugin) above. Either the lib as the plugin are shared libs.
                                Thanks again
                                Michael

                                1 Reply Last reply
                                0

                                • Login

                                • Login or register to search.
                                • First post
                                  Last post
                                0
                                • Categories
                                • Recent
                                • Tags
                                • Popular
                                • Users
                                • Groups
                                • Search
                                • Get Qt Extensions
                                • Unsolved