Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 31 May 2023 15:11:15 +0200
From:      =?UTF-8?Q?Jos=C3=A9_P=C3=A9rez?= <fbl@aoek.com>
To:        Mark Millard <marklmi@yahoo.com>
Cc:        freebsd-arm@freebsd.org, kevans@freebsd.org
Subject:   Re: devel/arm-none-eabi-newlib headers inconsistencies (not functional) or am I misusing something?
Message-ID:  <65ed005700693855d4b0bc689aef0cc0@mail.yourbox.net>
In-Reply-To: <572F38A8-67ED-4A77-A5EC-C431141BF386@yahoo.com>
References:  <11a941a3a1c9e001559ccc6183af131d@mail.yourbox.net> <784313c52e2f42eb63f3755a5c093fdc@mail.yourbox.net> <9E888138-D3D0-4A6C-92B9-31705D470089@yahoo.com> <232dc6e4e0d3b5f3abcd37049db0991b@mail.yourbox.net> <8A93F4D2-4FDA-4C3D-8FA3-2D72DAD06A8B@yahoo.com> <572F38A8-67ED-4A77-A5EC-C431141BF386@yahoo.com>

next in thread | previous in thread | raw e-mail | index | archive | help
Hi,

El 2023-05-27 15:21, Mark Millard escribió:
> On May 27, 2023, at 05:27, Mark Millard <marklmi@yahoo.com> wrote:
> It is unclear what you are doing for linking.

Linking is another chapter that will be written after we can obtain 
objects.

For the time being I am buinding a number of tests to see if the headers 
are functional or not, following your suggestion to add newlib ports 
header path first, and then arm-noabi-gcc header paths. I.e.
#include <...> search starts here:
  /usr/local/arm-none-eabi/include
  /usr/local/lib/gcc/arm-none-eabi/11.3.0/include
  /usr/local/lib/gcc/arm-none-eabi/11.3.0/include-fixed
End of search list.

In this scenario the next problem I am hitting is this one:
% arm-none-eabi-gcc test_stdatomic.c -c -g -DDEBUG -pipe -nostdinc 
-isystem /usr/local/arm-none-eabi/include -isystem 
/usr/local/lib/gcc/arm-none-eabi/11.3.0/include -isystem 
/usr/local/lib/gcc/arm-none-eabi/11.3.0/include-fixed -o 
test_stdatomic.o
In file included from test_stdatomic.c:2:
/usr/local/arm-none-eabi/include/stdatomic.h: In function 
'atomic_flag_test_and_set_explicit':
/usr/local/arm-none-eabi/include/stdatomic.h:386:17: error: request for 
member '__val' in something not a structure or union
   386 |         return (atomic_exchange_explicit(&__object->__flag, 1, 
__order));
       |                 ^~~~~~~~~~~~~~~~~~~~~~~~
/usr/local/arm-none-eabi/include/stdatomic.h: In function 
'atomic_flag_clear_explicit':
/usr/local/arm-none-eabi/include/stdatomic.h:393:9: error: request for 
member '__val' in something not a structure or union
   393 |         atomic_store_explicit(&__object->__flag, 0, __order);
       |         ^~~~~~~~~~~~~~~~~~~~~

% cat test_stdatomic.c
#include <stdint.h>
#include <stdatomic.h>

int main(int argc, char *argv[]) {
   return 0;
}

Any suggestion before I patch 
/usr/local/arm-none-eabi/include/stdatomic.h to make it work?

Thank you.

BR,

-- 
José Pérez



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?65ed005700693855d4b0bc689aef0cc0>