Where can i find the following DLL's?

All off topic discussions go here. Everything from the funny thing your cat did to your favorite tv shows. Non-programming computer questions are ok too.
Post Reply
NunoLava1998
Member
Member
Posts: 273
Joined: Sun Oct 09, 2016 4:38 am
Libera.chat IRC: NunoLava1998

Where can i find the following DLL's?

Post 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)?
Developing TRIODIUM OS. Or call it Dixium if you want. It doesn't matter.

https://github.com/NunoLava1998/DixiumOS
Octocontrabass
Member
Member
Posts: 5512
Joined: Mon Mar 25, 2013 7:01 pm

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

Post 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.
NunoLava1998
Member
Member
Posts: 273
Joined: Sun Oct 09, 2016 4:38 am
Libera.chat IRC: NunoLava1998

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

Post 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)
Developing TRIODIUM OS. Or call it Dixium if you want. It doesn't matter.

https://github.com/NunoLava1998/DixiumOS
User avatar
iansjack
Member
Member
Posts: 4685
Joined: Sat Mar 31, 2012 3:07 am
Location: Chichester, UK

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

Post 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.
NunoLava1998
Member
Member
Posts: 273
Joined: Sun Oct 09, 2016 4:38 am
Libera.chat IRC: NunoLava1998

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

Post 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).
Developing TRIODIUM OS. Or call it Dixium if you want. It doesn't matter.

https://github.com/NunoLava1998/DixiumOS
User avatar
Love4Boobies
Member
Member
Posts: 2111
Joined: Fri Mar 07, 2008 5:36 pm
Location: Bucharest, Romania

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

Post 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.
"Computers in the future may weigh no more than 1.5 tons.", Popular Mechanics (1949)
[ Project UDI ]
NunoLava1998
Member
Member
Posts: 273
Joined: Sun Oct 09, 2016 4:38 am
Libera.chat IRC: NunoLava1998

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

Post 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.
Developing TRIODIUM OS. Or call it Dixium if you want. It doesn't matter.

https://github.com/NunoLava1998/DixiumOS
glauxosdever
Member
Member
Posts: 501
Joined: Wed Jun 17, 2015 9:40 am
Libera.chat IRC: glauxosdever
Location: Athens, Greece

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

Post 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
NunoLava1998
Member
Member
Posts: 273
Joined: Sun Oct 09, 2016 4:38 am
Libera.chat IRC: NunoLava1998

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

Post 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.
Developing TRIODIUM OS. Or call it Dixium if you want. It doesn't matter.

https://github.com/NunoLava1998/DixiumOS
User avatar
max
Member
Member
Posts: 616
Joined: Mon Mar 05, 2012 11:23 am
Libera.chat IRC: maxdev
Location: Germany
Contact:

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

Post 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.
Post Reply