Re: warning: pointer not aligned at address

2017-04-12 Thread Andrew Edwards via Digitalmars-d-learn
On Wednesday, 12 April 2017 at 03:18:32 UTC, Matt Whisenhunt 
wrote:

ld: warning: pointer not aligned at address 0x100050C7D


Are you running macOS and recently installed an update to Xcode?

I ran into this today as well.

Looks like other have too:
https://issues.dlang.org/show_bug.cgi?id=17289


Yes, I do indeed use macOS and am on the latest version. I spun 
up a Ubuntu vm and in works correctly there. Thanks.





Re: warning: pointer not aligned at address

2017-04-11 Thread Matt Whisenhunt via Digitalmars-d-learn

ld: warning: pointer not aligned at address 0x100050C7D


Are you running macOS and recently installed an update to Xcode?

I ran into this today as well.

Looks like other have too:
https://issues.dlang.org/show_bug.cgi?id=17289


Re: warning: pointer not aligned at address

2017-04-11 Thread Andrew Edwards via Digitalmars-d-learn
Conveniently the site is down immediately after I posted that so 
here is the code to which I was referring:


import std.stdio, std.algorithm, std.range;

enum DoorState : bool { closed, open }
alias Doors = DoorState[];

Doors flipUnoptimized(Doors doors) pure nothrow {
doors[] = DoorState.closed;

foreach (immutable i; 0 .. doors.length)
for (ulong j = i; j < doors.length; j += i + 1)
if (doors[j] == DoorState.open)
doors[j] = DoorState.closed;
else
doors[j] = DoorState.open;
return doors;
}

Doors flipOptimized(Doors doors) pure nothrow {
doors[] = DoorState.closed;
for (int i = 1; i ^^ 2 <= doors.length; i++)
doors[i ^^ 2 - 1] = DoorState.open;
return doors;
}

void main() {
auto doors = new Doors(100);

foreach (const open; [doors.dup.flipUnoptimized,
  doors.dup.flipOptimized])
iota(1, open.length + 1).filter!(i => open[i - 
1]).writeln;

}


warning: pointer not aligned at address

2017-04-11 Thread Andrew Edwards via Digitalmars-d-learn
When compiled with any dmd compiler from 2.069.0 through present 
(2.074.0), https://rosettacode.org/wiki/100_doors#D produces the 
following linker warning:


ld: warning: pointer not aligned at address 0x10004FCEB 
(_D51TypeInfo_S3std5range13__T4iotaTiTmZ4iotaFimZ6Result6__initZ 
+ 24 from doors100.o)


[65 other lines removed for brevity]

ld: warning: pointer not aligned at address 0x100050C7D 
(_D11TypeInfo_xb6__initZ + 16 from doors100.o)


specific compilers checked:
dmd-2.068.0 dmd-2.068.1 dmd-2.068.2 dmd-2.069.0 dmd-2.070.0 
dmd-2.071.2 dmd-2.073.1 dmd-2.073.2 dmd-2.074.0

What's the proper way to address these warnings? The code is 
linked and works as expected but, to me, there is just something 
about those warnings that cries out for attention.


Is there something I can do to align this code or is this 
something that needs to be addressed in the compiler?


Thanks,
Andrew


Re: pointer not aligned

2017-04-08 Thread Mogaki via Digitalmars-d-learn

On Sunday, 2 April 2017 at 19:00:30 UTC, Jon Degenhardt wrote:

On Friday, 31 March 2017 at 04:41:10 UTC, Joel wrote:

Linking...
ld: warning: pointer not aligned at address 0x10017A4C9 
(_D30TypeInfo_AxS3std4file8DirEntry6__initZ + 16 from 
.dub/build/application-debug-posix.osx-x86_64-dmd_2072-EFDCDF4D45F944F7A9B1AEA5C32F81ED/spellit.o)

...

and this goes on forever!


Issue: https://issues.dlang.org/show_bug.cgi?id=17289


Add -L-w to DFLAGS in dmd.conf to suppress all warning messages 
of 'ld'


Re: pointer not aligned

2017-04-02 Thread Jon Degenhardt via Digitalmars-d-learn

On Friday, 31 March 2017 at 04:41:10 UTC, Joel wrote:

Linking...
ld: warning: pointer not aligned at address 0x10017A4C9 
(_D30TypeInfo_AxS3std4file8DirEntry6__initZ + 16 from 
.dub/build/application-debug-posix.osx-x86_64-dmd_2072-EFDCDF4D45F944F7A9B1AEA5C32F81ED/spellit.o)

...

and this goes on forever!


Issue: https://issues.dlang.org/show_bug.cgi?id=17289


Re: pointer not aligned

2017-04-02 Thread Timothee Cour via Digitalmars-d-learn
indeed. NOTE: ldmd2/ldc2 doens't have this issue

to reproduce:

```
rdmd --force --eval='writeln(`hello`)'
```

ld: warning: pointer not aligned at address 0x1000BE0B9
(_D53TypeInfo_S3std5array17__T8AppenderTAyaZ8Appender4Data6__initZ +
24 from .rdmd-501/rdmd-eval.o)

with `--compiler=ldmd2`  there's no error

On Fri, Mar 31, 2017 at 2:06 AM, Adam Wilson via Digitalmars-d-learn
<digitalmars-d-learn@puremagic.com> wrote:
> On 3/30/17 10:47 PM, H. S. Teoh via Digitalmars-d-learn wrote:
>>
>> On Fri, Mar 31, 2017 at 04:41:10AM +, Joel via Digitalmars-d-learn
>> wrote:
>>>
>>> Linking...
>>> ld: warning: pointer not aligned at address 0x10017A4C9
>>> (_D30TypeInfo_AxS3std4file8DirEntry6__initZ + 16 from
>>> .dub/build/application-debug-posix.osx-x86_64-dmd_2072-EFDCDF4D45F944F7A9B1AEA5C32F81ED/spellit.o)
>>> ...
>>>
>>> and this goes on forever!
>>
>>
>> More information, please.  What was the code you were trying to compile?
>> What compile flags did you use? Which compiler?
>>
>>
>> T
>>
>
> I see this on OSX as well. Any code referencing Phobos appears to produce
> this. It appear after updating the XCode command line tools. It does not
> appear to effect program execution, but the pages of warnings are really
> quite annoying.
>
> DMD 2.073.2
>
> --
> Adam Wilson
> IRC: LightBender
> import quiet.dlang.dev;


Re: pointer not aligned

2017-03-31 Thread Adam Wilson via Digitalmars-d-learn

On 3/30/17 10:47 PM, H. S. Teoh via Digitalmars-d-learn wrote:

On Fri, Mar 31, 2017 at 04:41:10AM +, Joel via Digitalmars-d-learn wrote:

Linking...
ld: warning: pointer not aligned at address 0x10017A4C9
(_D30TypeInfo_AxS3std4file8DirEntry6__initZ + 16 from 
.dub/build/application-debug-posix.osx-x86_64-dmd_2072-EFDCDF4D45F944F7A9B1AEA5C32F81ED/spellit.o)
...

and this goes on forever!


More information, please.  What was the code you were trying to compile?
What compile flags did you use? Which compiler?


T



I see this on OSX as well. Any code referencing Phobos appears to 
produce this. It appear after updating the XCode command line tools. It 
does not appear to effect program execution, but the pages of warnings 
are really quite annoying.


DMD 2.073.2

--
Adam Wilson
IRC: LightBender
import quiet.dlang.dev;


Re: pointer not aligned

2017-03-31 Thread H. S. Teoh via Digitalmars-d-learn
On Fri, Mar 31, 2017 at 04:41:10AM +, Joel via Digitalmars-d-learn wrote:
> Linking...
> ld: warning: pointer not aligned at address 0x10017A4C9
> (_D30TypeInfo_AxS3std4file8DirEntry6__initZ + 16 from 
> .dub/build/application-debug-posix.osx-x86_64-dmd_2072-EFDCDF4D45F944F7A9B1AEA5C32F81ED/spellit.o)
> ...
> 
> and this goes on forever!

More information, please.  What was the code you were trying to compile?
What compile flags did you use? Which compiler?


T

-- 
Nearly all men can stand adversity, but if you want to test a man's character, 
give him power. -- Abraham Lincoln


pointer not aligned

2017-03-30 Thread Joel via Digitalmars-d-learn

Linking...
ld: warning: pointer not aligned at address 0x10017A4C9 
(_D30TypeInfo_AxS3std4file8DirEntry6__initZ + 16 from 
.dub/build/application-debug-posix.osx-x86_64-dmd_2072-EFDCDF4D45F944F7A9B1AEA5C32F81ED/spellit.o)

...

and this goes on forever!