When I compile program in Ly Windows x64 using dmd flag -m64 the program not run.
How fix it?
Thread overview | ||||||||
---|---|---|---|---|---|---|---|---|
|
August 09, 2021 Error when compile with DMD using -m64? | ||||
---|---|---|---|---|
| ||||
August 09, 2021 Re: Error when compile with DMD using -m64? | ||||
---|---|---|---|---|
| ||||
Posted in reply to Marcone | On Monday, 9 August 2021 at 19:53:48 UTC, Marcone wrote: >program not run. compilation errors? |
August 10, 2021 Re: Error when compile with DMD using -m64? | ||||
---|---|---|---|---|
| ||||
Posted in reply to novice2 | On Monday, 9 August 2021 at 19:58:03 UTC, novice2 wrote: >On Monday, 9 August 2021 at 19:53:48 UTC, Marcone wrote: >program not run. compilation errors? Solved converting long and int. |
August 10, 2021 Re: Error when compile with DMD using -m64? | ||||
---|---|---|---|---|
| ||||
Posted in reply to Marcone | On Tuesday, 10 August 2021 at 01:29:04 UTC, Marcone wrote: >Solved converting long and int. Use https://dlang.org/spec/type.html#aliased-types -- Bastiaan. |
August 10, 2021 Re: Error when compile with DMD using -m64? | ||||
---|---|---|---|---|
| ||||
Posted in reply to Bastiaan Veelo | On Tuesday, 10 August 2021 at 15:55:42 UTC, Bastiaan Veelo wrote: >On Tuesday, 10 August 2021 at 01:29:04 UTC, Marcone wrote: >Solved converting long and int. Use https://dlang.org/spec/type.html#aliased-types -- Bastiaan. Thank you very much! Your information was very precious! It worked very well! Now I can create x32 or x64 compatible programs without creating two codes. |
August 10, 2021 Re: Error when compile with DMD using -m64? | ||||
---|---|---|---|---|
| ||||
Posted in reply to Marcone | On Tuesday, 10 August 2021 at 17:13:31 UTC, Marcone wrote: >On Tuesday, 10 August 2021 at 15:55:42 UTC, Bastiaan Veelo wrote: >Use https://dlang.org/spec/type.html#aliased-types -- Bastiaan. Thank you very much! Your information was very precious! It worked very well! Now I can create x32 or x64 compatible programs without creating two codes. You’re welcome :-) — Bastiaan. |