Page 1 of 1

Where can i find the following DLL's?

Posted: Sat Oct 29, 2016 10:24 am
by NunoLava1998
I need for my Bare Bones GCC 3 libraries's:
libmpfr-4.dll
libgmp-10.dll
libmpc-3.dll

However, i do not have these by default. How do i get them (non-MinGW)?

Re: Where can i find the following DLL's?

Posted: Sat Oct 29, 2016 10:31 am
by Octocontrabass
They should have been included with your copy of GCC. If they weren't, then you need to find a different copy of GCC or build your own.

Re: Where can i find the following DLL's?

Posted: Sat Oct 29, 2016 10:34 am
by NunoLava1998
Octocontrabass wrote:They should have been included with your copy of GCC. If they weren't, then you need to find a different copy of GCC or build your own.
They are not. And i cannot use something else (this is the only Windows port of the Bare Bones GCC)

Re: Where can i find the following DLL's?

Posted: Sat Oct 29, 2016 10:47 am
by iansjack
Build your own cross compiler, as per the instructions. There's little point in not following the instructions and then wondering why things don't work.

Re: Where can i find the following DLL's?

Posted: Sat Oct 29, 2016 12:25 pm
by NunoLava1998
iansjack wrote:Build your own cross compiler, as per the instructions. There's little point in not following the instructions and then wondering why things don't work.
I got a working Windows cross compiler made by Ghost (a user here on the OSDev forums). It works perfectly with the dll's. It is working (Ghost just didn't put the dll's, probably didn't know or something).

Re: Where can i find the following DLL's?

Posted: Sat Oct 29, 2016 1:13 pm
by Love4Boobies
How do you know it works perfectly if you can't run it? At any rate, Linux users build software from source all the time. You, as a supposed developer, should be able to build a couple of libraries, too.

Re: Where can i find the following DLL's?

Posted: Sat Oct 29, 2016 1:15 pm
by NunoLava1998
Love4Boobies wrote:How do you know it works perfectly if you can't run it? At any rate, Linux users build software from source all the time. You, as a supposed developer, should be able to build a couple of libraries, too.
I've had the dll's before (forgot that you needed the dll's) and deleted them. It works perfectly with the dll's.

Re: Where can i find the following DLL's?

Posted: Sat Oct 29, 2016 1:21 pm
by glauxosdever
Hi,


So you deleted the DLLs and then you asked us where to find them?

You should know better next time what you are doing.


Regards,
glauxosdever

Re: Where can i find the following DLL's?

Posted: Sat Oct 29, 2016 1:45 pm
by NunoLava1998
glauxosdever wrote:Hi,


So you deleted the DLLs and then you asked us where to find them?

You should know better next time what you are doing.


Regards,
glauxosdever
I've got the dll's, and it gives me a error that usually happens with DLL's being from a source that doesn't provide the one i wanted.

Re: Where can i find the following DLL's?

Posted: Sat Oct 29, 2016 3:53 pm
by max
NunoLava1998 wrote:I got a working Windows cross compiler made by Ghost (a user here on the OSDev forums). It works perfectly with the dll's. It is working (Ghost just didn't put the dll's, probably didn't know or something).
:mrgreen: Ghost is not a user here, it's the name of my operating system and I built that cross compiler. :-P

The DLLs you where missing come from the respective libraries (MPFR, MPC and GMP) which must either A) be installed using the Cygwin installer or B) by compiling them yourself.

For a quick start you can use my compiler, but I advise you to build your own soon. You will have to do so anyway once you get more advanced.