forked from picolibc/picolibc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
887 lines (754 loc) · 32.8 KB
/
meson.build
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
#
# SPDX-License-Identifier: BSD-3-Clause
#
# Copyright © 2019-2021 Keith Packard
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following
# disclaimer in the documentation and/or other materials provided
# with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
# COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
# OF THE POSSIBILITY OF SUCH DAMAGE.
#
project('picolibc', 'c',
default_options: [
'buildtype=minsize',
'debug=true',
'c_std=gnu99',
'b_staticpic=false',
],
license : 'BSD',
meson_version : '>= 0.50',
version: '1.7.2'
)
targets = []
enable_multilib = get_option('multilib')
multilib_list = get_option('multilib-list')
enable_picolib = get_option('picolib')
enable_picocrt = get_option('picocrt')
enable_semihost = get_option('semihost')
enable_tests = get_option('tests')
enable_native_tests = get_option('native-tests')
tests_enable_stack_protector = get_option('tests-enable-stack-protector')
tests_enable_full_malloc_stress = get_option('tests-enable-full-malloc-stress')
tests_enable_posix_io = get_option('tests-enable-posix-io')
have_alias_attribute_option = get_option('have-alias-attribute')
have_format_attribute_option = get_option('have-format-attribute')
newlib_register_fini = get_option('newlib-register-fini')
newlib_iconv_encodings = get_option('newlib-iconv-encodings')
newlib_iconv_from_encodings = get_option('newlib-iconv-from-encodings')
newlib_iconv_to_encodings = get_option('newlib-iconv-to-encodings')
newlib_iconv_external_ccs = get_option('newlib-iconv-external-ccs')
newlib_atexit_dynamic_alloc = get_option('newlib-atexit-dynamic-alloc')
newlib_global_atexit = get_option('newlib-global-atexit')
newlib_reent_small = get_option('newlib-reent-small')
newlib_nano_malloc = get_option('newlib-nano-malloc')
newlib_unbuf_stream_opt = get_option('newlib-unbuf-stream-opt')
lite_exit = get_option('lite-exit')
newlib_retargetable_locking = get_option('newlib-retargetable-locking')
newlib_long_time_t = get_option('newlib-long-time_t')
newlib_multithread = get_option('newlib-multithread')
newlib_supplied_syscalls = get_option('newlib-supplied-syscalls')
newlib_elix_level = get_option('newlib-elix-level')
target_optspace = get_option('optimization') == 's'
c_args = ['-include', '@0@/@1@'.format(meson.current_build_dir(), 'picolibc.h')]
# Disable ssp and fortify source while building picolibc (it's enabled
# by default by the ubuntu native compiler)
if meson.get_compiler('c').has_argument('-fno-stack-protector')
c_args += '-fno-stack-protector'
endif
c_args += '-U_FORTIFY_SOURCE'
if meson.get_compiler('c').has_argument('-fno-common')
c_args += '-fno-common'
endif
if meson.get_compiler('c').has_argument('-frounding-math')
c_args += '-frounding-math'
endif
if meson.get_compiler('c').symbols_have_underscore_prefix()
global_prefix = '_'
else
global_prefix = ''
endif
fast_strcmp = get_option('fast-strcmp')
newlib_mb = get_option('newlib-mb')
newlib_locale_info = get_option('newlib-locale-info')
newlib_locale_info_extended = get_option('newlib-locale-info-extended')
newlib_global_errno = get_option('newlib-global-errno')
newlib_initfini_array = get_option('newlib-initfini-array')
newlib_initfini = get_option('newlib-initfini')
newlib_obsolete_math = get_option('newlib-obsolete-math')
newlib_obsolete_math_float = get_option('newlib-obsolete-math-float')
newlib_obsolete_math_double = get_option('newlib-obsolete-math-double')
want_math_errno = get_option('want-math-errno')
thread_local_storage_option = get_option('thread-local-storage')
tls_model = get_option('tls-model')
sysroot_install = get_option('sysroot-install')
prefix = get_option('prefix')
nm = find_program('nm', required : false)
check_duplicate_names = nm.found()
if nm.found()
duplicate_names = find_program('scripts/duplicate-names', required : true)
endif
# Select exit code
picoexit = get_option('picoexit')
# Select stdio implementation
tinystdio = get_option('tinystdio')
newlib_tinystdio = get_option('newlib-tinystdio')
if newlib_tinystdio != 'auto'
tinystdio = newlib_tinystdio == 'true'
endif
has_link_defsym=meson.get_compiler('c').has_link_argument('-Wl,--defsym=' + global_prefix + '_start=0')
has_link_alias=meson.get_compiler('c').has_link_argument('-Wl,-alias,' + global_prefix + 'main,testalias')
float_printf_compile_args=['-DPICOLIBC_FLOAT_PRINTF_SCANF']
float_printf_link_args=float_printf_compile_args
int_printf_compile_args=['-DPICOLIBC_INTEGER_PRINTF_SCANF']
int_printf_link_args=int_printf_compile_args
if tinystdio
vfprintf_symbol = global_prefix + 'vfprintf'
__f_vfprintf_symbol = global_prefix + '__f_vfprintf'
__i_vfprintf_symbol = global_prefix + '__i_vfprintf'
vfscanf_symbol = global_prefix + 'vfscanf'
__f_vfscanf_symbol = global_prefix + '__f_vfscanf'
__i_vfscanf_symbol = global_prefix + '__i_vfscanf'
if has_link_defsym
float_printf_link_args += '-Wl,--defsym=' + vfprintf_symbol + '=' + __f_vfprintf_symbol
float_printf_link_args += '-Wl,--defsym=' + vfscanf_symbol + '=' + __f_vfscanf_symbol
int_printf_link_args += '-Wl,--defsym=' + vfprintf_symbol + '=' + __i_vfprintf_symbol
int_printf_link_args += '-Wl,--defsym=' + vfscanf_symbol + '=' + __i_vfscanf_symbol
elif has_link_alias
float_printf_link_args += '-Wl,-alias,' + __f_vfprintf_symbol + ',' + vfprintf_symbol
float_printf_link_args += '-Wl,-alias,' + __f_vfscanf_symbol + ',' + vfscanf_symbol
int_printf_link_args += '-Wl,-alias,' + __i_vfprintf_symbol + ',' + vfprintf_symbol
int_printf_link_args += '-Wl,-alias,' + __i_vfscanf_symbol + ',' + vfscanf_symbol
endif
endif
# Shared stdio options
io_long_long = get_option('io-long-long')
newlib_io_long_long = get_option('newlib-io-long-long')
if newlib_io_long_long != 'auto'
io_long_long = newlib_io_long_long == 'true'
endif
io_c99_formats = get_option('io-c99-formats')
newlib_io_c99_formats = get_option('newlib-io-c99-formats')
if newlib_io_c99_formats != 'auto'
io_c99_formats = newlib_io_c99_formats == 'true'
endif
# tinystdio options
posix_io = tinystdio and get_option('posix-io')
posix_console = posix_io and get_option('posix-console')
io_float_exact = not tinystdio or get_option('io-float-exact')
atomic_ungetc = tinystdio and get_option('atomic-ungetc')
# A bunch of newlib-stdio only options
newlib_io_pos_args = get_option('newlib-io-pos-args')
newlib_io_long_double = get_option('newlib-io-long-double')
newlib_global_stdio_streams = get_option('newlib-global-stdio-streams')
newlib_fvwrite_in_streamio = get_option('newlib-fvwrite-in-streamio')
newlib_fseek_optimization = get_option('newlib-fseek-optimization')
newlib_nano_formatted_io = get_option('newlib-nano-formatted-io')
newlib_io_float = get_option('newlib-io-float')
newlib_stdio64 = get_option('newlib-stdio64')
newlib_wide_orient = get_option('newlib-wide-orient')
# options which no longer have any effect
newlib_reentrant_syscalls_provided = get_option('newlib-reentrant-syscalls-provided')
newlib_missing_syscall_names = get_option('newlib-missing-syscall-names')
# Check for a bunch of newlib-stdio only options and complain
# if they are selected while using tinystdio
if tinystdio
if newlib_io_pos_args
error('tinystdio does not support positional arguments (newlib-io-pos-args)')
endif
if newlib_io_long_double
error('tinystdio does not support long double (newlib-io-long-double)')
endif
if newlib_io_float
error('tinystdio uses a run-time mechanism to select floating point io (newlib-io-float)')
endif
if newlib_global_stdio_streams
error('tinystdio always has (reentrant) global stdio streams (newlib-global-stdio-streams)')
endif
if newlib_fvwrite_in_streamio
error('tinystdio has no fvwrite support (newlib-fvwrite-in-streamio)')
endif
if newlib_fseek_optimization
error('tinystdio has no fseek support (newlib-fseek-optimization)')
endif
if newlib_nano_formatted_io
error('tinystdio uses a run-time mechanism to select smaller printf code (newlib-nano-formatted-io)')
endif
if newlib_wide_orient
error('tinystdio does not support the wide-orient option (newlib-wide-orient)')
endif
else
if posix_console
error('newlib stdio does not support the posix-console option (posix-console)')
endif
endif
host_cpu_family=host_machine.cpu_family()
if host_cpu_family == ''
host_cmds = meson.get_compiler('c').cmd_array() + ['-dumpmachine']
host_cc_machine=run_command(host_cmds).stdout().strip().split('-')
host_cpu_family=host_cc_machine[0]
message('Computed host_cpu_family as ' + host_cpu_family)
endif
if have_alias_attribute_option == 'auto'
have_alias_attribute = meson.get_compiler('c').has_function_attribute('alias')
else
have_alias_attribute = have_alias_attribute_option == 'true'
endif
if have_format_attribute_option == 'auto'
have_format_attribute = meson.get_compiler('c').has_function_attribute('format')
else
have_format_attribute = have_format_attribute_option == 'true'
endif
if thread_local_storage_option == 'auto'
thread_local_storage = not meson.get_compiler('c').has_function('__emutls_get_address', args: ['-nostdlib', '-lgcc'])
else
thread_local_storage = thread_local_storage_option == 'true'
endif
if sysroot_install
sysroot = run_command(meson.get_compiler('c').cmd_array() + ['-print-sysroot']).stdout().split('\n')[0]
if sysroot == ''
error('sysroot install requested, but compiler has no sysroot')
endif
sysroot = run_command('realpath', sysroot).stdout().split('\n')[0]
prefix_path = run_command('realpath', prefix).stdout().split('\n')[0]
if sysroot != prefix_path
error('sysroot install requires --prefix=' + sysroot)
endif
endif
lib_dir = join_paths(prefix, get_option('libdir'))
newlib_iconv_dir = get_option('newlib-iconv-dir')
if newlib_iconv_dir == ''
newlib_iconv_dir = join_paths(lib_dir, 'locale')
endif
newlib_iconv_runtime_dir = get_option('newlib-iconv-runtime-dir')
if newlib_iconv_runtime_dir == ''
newlib_iconv_runtime_dir = newlib_iconv_dir
endif
specs_dir_option = get_option('specsdir')
if specs_dir_option == ''
search_cmds = meson.get_compiler('c').cmd_array() + ['-print-search-dirs']
install_dir=run_command(search_cmds).stdout().split('\n')[0]
# Meson 0.56 adds a 'substring' method which can be used here
specs_dir=run_command(['expr', 'substr', install_dir, '10', '1000']).stdout().split('\n')[0]
specs_install = true
elif specs_dir_option == 'none'
specs_install = false
specs_dir = ''
else
specs_dir = join_paths(prefix, specs_dir_option)
specs_install = true
endif
specs_data = configuration_data()
specs_data.set('PREFIX', sysroot_install? '%R' : prefix)
specs_data.set('INCLUDEDIR', get_option('includedir'))
specs_data.set('LIBDIR', get_option('libdir'))
if tls_model != ''
specs_data.set(
'TLSMODEL',
'%{!ftls-model:-ftls-model=' + tls_model + '}'
)
else
specs_data.set(
'TLSMODEL',
''
)
endif
specs_data.set(
'LINK_SPEC',
meson.get_cross_property('link_spec', '')
)
specs_data.set(
'CC1_SPEC',
meson.get_cross_property('cc1_spec', '')
)
specs_data.set(
'CC1PLUS_SPEC',
meson.get_cross_property('cc1plus_spec', '')
)
# When passing the specs file to CompCert, the libcompcert needs to be included there as well
if meson.get_compiler('c').get_id() == 'ccomp'
specs_data.set(
'ADDITIONAL_LIBS',
'-lcompcert'
)
else
specs_data.set(
'ADDITIONAL_LIBS',
''
)
endif
specs_extra_list = meson.get_cross_property('specs_extra', [])
if specs_extra_list != []
specs_extra = '\n' + '\n'.join(specs_extra_list)
else
specs_extra = ''
endif
specs_data.set(
'SPECS_EXTRA',
specs_extra
)
if tinystdio
specs_printf=('%{DPICOLIBC_FLOAT_PRINTF_SCANF:--defsym=vfprintf=__f_vfprintf}' +
' %{DPICOLIBC_FLOAT_PRINTF_SCANF:--defsym=vfscanf=__f_vfscanf}' +
' %{DPICOLIBC_INTEGER_PRINTF_SCANF:--defsym=vfprintf=__i_vfprintf}' +
' %{DPICOLIBC_INTEGER_PRINTF_SCANF:--defsym=vfscanf=__i_vfscanf}')
else
specs_printf=''
endif
specs_data.set(
'SPECS_PRINTF',
specs_printf
)
# Create C and C++ specific specs data,
# that includes setting the correct linker script
# and adding the C++ startup/shutdown files
specs_c_data = specs_data
specs_c_data.set('PICOLIBC_LD', 'picolibc.ld')
specs_c_data.set('CRTBEGIN', '')
specs_c_data.set('CRTEND', '')
specs_cpp_data = specs_data
specs_cpp_data.set('PICOLIBC_LD', 'picolibcpp.ld')
specs_cpp_data.set('CRTBEGIN', 'crtbegin%O%s')
specs_cpp_data.set('CRTEND', 'crtend%O%s')
picolibc_specs = configure_file(input: 'picolibc.specs.in',
output: '@BASENAME@',
configuration: specs_c_data,
install_dir: specs_dir,
install: specs_install)
picolibcpp_specs = configure_file(input: 'picolibc.specs.in',
output: 'picolibcpp.specs',
configuration: specs_cpp_data,
install_dir: specs_dir,
install: specs_install)
test_specs = configure_file(input: 'test.specs.in',
output: '@BASENAME@',
configuration: specs_data,
install: false)
picolibc_ld_data = configuration_data()
picolibc_ld_data.set('CPP_START', '/*')
picolibc_ld_data.set('CPP_END', '*/')
picolibc_ld_data.set('C_START', '')
picolibc_ld_data.set('C_END', '')
picolibc_ld = configure_file(input: 'picolibc.ld.in',
output: 'picolibc.ld',
configuration: picolibc_ld_data,
install_dir: lib_dir)
picolibcpp_ld_data = configuration_data()
picolibcpp_ld_data.set('CPP_START', '')
picolibcpp_ld_data.set('CPP_END', '')
picolibcpp_ld_data.set('C_START', '/*')
picolibcpp_ld_data.set('C_END', '*/')
picolibcpp_ld = configure_file(input: 'picolibc.ld.in',
output: 'picolibcpp.ld',
configuration: picolibcpp_ld_data,
install_dir: lib_dir)
# Not all compilers necessarily support all warnings used by the tests; only use these which are:
test_c_warnings = []
foreach arg : ['-Wno-missing-braces', '-Wno-implicit-int', '-Wno-return-type', '-Wimplicit-function-declaration', '-Werror=vla']
if meson.get_compiler('c').has_argument(arg)
test_c_warnings += [arg]
endif
endforeach
long_double_code = '''
#include <float.h>
#ifndef LDBL_MANT_DIG
#error No long double support in float.h
#endif
long double test()
{
long double ld = 0.0L;
return ld;
}
'''
have_long_double = meson.get_compiler('c').compiles(long_double_code, name : 'long double check')
long_double_size_code = '''
#include <float.h>
char size_test[sizeof(double) == sizeof(long double) ? 1 : -1];
'''
if have_long_double
long_double_equals_double = meson.get_compiler('c').compiles(long_double_size_code, name : 'long double same as double')
endif
# CompCert does not support bitfields in packed structs, so avoid using this optimization
bitfields_in_packed_structs_code = '''
struct test { int part: 24; } __attribute__((packed));
unsigned int foobar (const struct test *p) { return p->part; }
'''
have_bitfields_in_packed_structs = meson.get_compiler('c').compiles(bitfields_in_packed_structs_code, name : 'packed structs may contain bitfields')
# CompCert does not have __builtin_mul_overflow
builtin_mul_overflow_code = '''
#include <stddef.h>
int overflows (size_t a, size_t b) { size_t x; return __builtin_mul_overflow(a, b, &x); }
volatile size_t aa = 42;
int main (void) { return overflows(aa, aa); }
'''
have_builtin_mul_overflow = meson.get_compiler('c').links(builtin_mul_overflow_code, name : 'has __builtin_mul_overflow')
# CompCert does not support _Complex
complex_code = '''
float _Complex test(float _Complex z) { return z; }
'''
have_complex = meson.get_compiler('c').compiles(complex_code, name : 'supports _Complex')
# CompCert does not have __builtin_expect
builtin_expect_code = '''
volatile int a = 42;
int main (void) {
return __builtin_expect(a, 1);
}
'''
have_builtin_expect = meson.get_compiler('c').links(builtin_expect_code, name : 'has __builtin_expect')
# CompCert uses the GCC preprocessor, which causes to
# > #if __has_attribute(__alloc_size__)
# produce a wrong result. So test if the compiler has that attribute
alloc_size_code = '''
void *foobar(size_t) __attribute__((__alloc_size__(1)));
void *foobar2(size_t, size_t) __attribute__((__alloc_size__(1, 2)));
'''
have_alloc_size = meson.get_compiler('c').compiles(alloc_size_code, name : 'attribute __alloc_size__', args : (meson.get_compiler('c').has_argument('-Werror') ? '-Werror' : ''))
# attributes constructor/destructor are a GNU extension - if the compiler doesn't have them, don't test them.
attr_ctor_dtor_code = '''
void __attribute__((constructor(101))) ctor (void) {}
void __attribute__((destructor(101))) dtor (void) {}
'''
have_attr_ctor_dtor = meson.get_compiler('c').compiles(attr_ctor_dtor_code, name : 'attributes constructor/destructor', args : (meson.get_compiler('c').has_argument('-Werror') ? '-Werror' : ''))
if enable_multilib
used_libs = []
# Ask the compiler for the set of available multilib configurations,
# set up the build system to compile for all desired ones
foreach target : run_command(meson.get_compiler('c'), '--print-multi-lib').stdout().strip().split('\n')
tmp = target.split(';')
flags = c_args
# Let the user specify a subset of the possible multilib
# configurations to build for
if multilib_list == [] or tmp[0] in multilib_list
used_libs += tmp[0]
if tmp.length() > 1
foreach flag : tmp[1].strip('@').split('@')
if flag != ''
flags += '-' + flag
endif
endforeach
if tmp[0] == '.'
name = ''
else
name = tmp[0].underscorify()
endif
else
name = ''
endif
targets += name
# rv64 needs to use a non-default mcmodel so that variables can
# live in a broader range of memory addresses
if name.startswith('rv64')
flags += [ '-mcmodel=medany' ]
endif
# Add any extra flags for this target from the cross file
target_extra = meson.get_cross_property('c_args_' + name, [])
if target_extra != []
flags += target_extra
endif
c_args_extra = meson.get_cross_property('c_args', [])
if c_args_extra != []
flags += c_args_extra
endif
value = [tmp[0], flags]
set_variable('target_' + name, value)
endif
endforeach
# Make sure all requested multilib configurations
# are actually available
if multilib_list != []
foreach lib : multilib_list
if lib not in used_libs
error('Unavailable multilib: ' + lib)
endif
endforeach
endif
else
targets = ['']
target_ = ['.', c_args + meson.get_cross_property('c_args', [])]
endif
conf_data = configuration_data()
# The supported builtins vary depending on compiler and target.
# If you want to check for a given builtin, add an array
# ['some_builtin_name', '__call_to_builtin(1,2,3);']
# The below loop will then add the define HAVE_SOME_BUILTIN_NAME if the code snippet
# > int main (void) { __call_to_builtin(1,2,3); return 0; }
# can be compiled + linked.
# The name should match the builtin, but technically it's not necessary
builtins = [
['builtin_ffs', '__builtin_ffs(42);'],
['builtin_ffsl', '__builtin_ffsl((long)42);'],
['builtin_ffsll', '__builtin_ffsll((long long)42);'],
['builtin_ctz', '__builtin_ctz((unsigned int)42);'],
['builtin_ctzl', '__builtin_ctzl((unsigned long)42);'],
['builtin_ctzll', '__builtin_ctzll((unsigned long long)42);'],
['builtin_copysignl', '__builtin_copysignl((long double)42);'],
['builtin_isinfl', '__builtin_isinfl((long double)42);'],
['builtin_isnanl', '__builtin_isnanl((long double)42);'],
['builtin_finitel', '__builtin_finitel((long double)42);'],
]
foreach builtin : builtins
have_current_builtin = meson.get_compiler('c').links('int main(void) { ' + builtin[1] + ' return 0; }', name : 'test for __' + builtin[0])
conf_data.set('HAVE_' + builtin[0].to_upper(), have_current_builtin, description: 'The compiler supports __' + builtin[0])
endforeach
NEWLIB_VERSION='4.1.0'
NEWLIB_MAJOR_VERSION=4
NEWLIB_MINOR_VERSION=1
NEWLIB_PATCHLEVEL_VERSION=0
have_cc_inhibit_loop_to_libcall=meson.get_compiler('c').has_argument('-fno-tree-loop-distribute-patterns')
conf_data.set('_HAVE_CC_INHIBIT_LOOP_TO_LIBCALL', have_cc_inhibit_loop_to_libcall,
description: 'GCC flag to prevent detecting memcpy/memset patterns')
conf_data.set('_HAVE_LONG_DOUBLE', have_long_double,
description: 'Compiler has long double type')
if have_long_double
conf_data.set('_LDBL_EQ_DBL', long_double_equals_double,
description: 'long double is the same as double')
endif
conf_data.set('HAVE_ALIAS_ATTRIBUTE', have_alias_attribute)
conf_data.set('HAVE_FORMAT_ATTRIBUTE', have_alias_attribute)
conf_data.set('_WANT_REGISTER_FINI', newlib_register_fini)
conf_data.set('_WANT_IO_LONG_LONG', io_long_long)
conf_data.set('_WANT_IO_C99_FORMATS', io_c99_formats)
conf_data.set('_IO_FLOAT_EXACT', io_float_exact)
if not tinystdio
conf_data.set('_WANT_IO_LONG_DOUBLE', newlib_io_long_double)
conf_data.set('_WANT_IO_POS_ARGS', newlib_io_pos_args)
conf_data.set('NO_FLOATING_POINT', not newlib_io_float)
conf_data.set('FLOATING_POINT', newlib_io_float)
conf_data.set('_WANT_REENT_GLOBAL_STDIO_STREAMS', newlib_global_stdio_streams)
conf_data.set('__LARGE64_FILES', newlib_stdio64)
endif
conf_data.set('_WANT_REENT_SMALL', newlib_reent_small)
conf_data.set('_MB_CAPABLE', newlib_mb)
conf_data.set('_MB_LEN_MAX', newlib_mb ? '8' : '1')
conf_data.set('__SINGLE_THREAD__', newlib_multithread == false)
conf_data.set('_ICONV_ENABLE_EXTERNAL_CCS', newlib_iconv_external_ccs)
if newlib_iconv_external_ccs
conf_data.set_quoted('ICONV_DEFAULT_NLSPATH', newlib_iconv_runtime_dir)
endif
conf_data.set('_ATEXIT_DYNAMIC_ALLOC', newlib_atexit_dynamic_alloc)
conf_data.set('_REENT_GLOBAL_ATEXIT', newlib_global_atexit)
conf_data.set('_FVWRITE_IN_STREAMIO', newlib_fvwrite_in_streamio)
conf_data.set('_FSEEK_OPTIMIZATION', newlib_fseek_optimization)
conf_data.set('_WIDE_ORIENT', newlib_wide_orient)
conf_data.set('_NANO_MALLOC', newlib_nano_malloc)
conf_data.set('_UNBUF_STREAM_OPT', newlib_unbuf_stream_opt)
conf_data.set('_LITE_EXIT', lite_exit)
conf_data.set('_NANO_FORMATTED_IO', newlib_nano_formatted_io)
conf_data.set('_RETARGETABLE_LOCKING', newlib_retargetable_locking)
conf_data.set('_WANT_USE_LONG_TIME_T', newlib_long_time_t)
conf_data.set('TINY_STDIO', tinystdio, description: 'Use tiny stdio from gcc avr')
conf_data.set('_IEEE_LIBM', not want_math_errno, description: 'math library does not set errno (offering only ieee semantics)')
conf_data.set('PREFER_SIZE_OVER_SPEED', target_optspace, description: 'Optimize for space over speed')
conf_data.set('FAST_STRCMP', fast_strcmp, description: 'Always optimize strcmp for performance')
conf_data.set('REENTRANT_SYSCALLS_PROVIDED', newlib_reentrant_syscalls_provided, description: 'Reentrant syscalls provided for us')
conf_data.set('MISSING_SYSCALL_NAMES', newlib_missing_syscall_names, description: 'use regular syscalls')
conf_data.set('__HAVE_LOCALE_INFO__', newlib_locale_info, description: 'locale support')
conf_data.set('__HAVE_LOCALE_INFO_EXTENDED__', newlib_locale_info_extended, description: 'extended locale support')
conf_data.set('NEWLIB_GLOBAL_ERRNO', newlib_global_errno, description: 'use global errno variable')
conf_data.set('HAVE_INITFINI_ARRAY', newlib_initfini_array, description: 'compiler supports INIT_ARRAY sections')
conf_data.set('HAVE_INIT_FINI', newlib_initfini, description: 'Support _init() and _fini() functions')
conf_data.set('NEWLIB_TLS', thread_local_storage, description: 'use thread local storage')
conf_data.set('PICOLIBC_TLS', thread_local_storage, description: 'use thread local storage')
conf_data.set('POSIX_IO', posix_io, description: 'Use open/close/read/write in tinystdio')
conf_data.set('POSIX_CONSOLE', posix_console, description: 'Use POSIX I/O for stdin, stdout and stderr')
conf_data.set('ATOMIC_UNGETC', atomic_ungetc, description: 'Use atomics for fgetc/ungetc for re-entrancy')
conf_data.set('HAVE_BITFIELDS_IN_PACKED_STRUCTS', have_bitfields_in_packed_structs, description: 'Use bitfields in packed structs')
conf_data.set('HAVE_BUILTIN_MUL', have_builtin_mul_overflow, description: 'Compiler has __builtin_mul_overflow')
conf_data.set('HAVE_COMPLEX', have_complex, description: 'Compiler supports _Complex')
conf_data.set('HAVE_BUILTIN_EXPECT', have_builtin_expect, description: 'Compiler has __builtin_expect')
conf_data.set('HAVE_ALLOC_SIZE', have_alloc_size, description: 'The compiler REALLY has the attribute __alloc_size__')
if newlib_obsolete_math == 'auto'
obsolete_math_value = false
elif newlib_obsolete_math == 'true'
obsolete_math_value = 1
elif newlib_obsolete_math == 'false'
obsolete_math_value = 0
endif
if newlib_obsolete_math_float == 'auto'
obsolete_math_float_value = false
elif newlib_obsolete_math_float == 'true'
obsolete_math_float_value = 1
elif newlib_obsolete_math_float == 'false'
obsolete_math_float_value = 0
endif
if newlib_obsolete_math_double == 'auto'
obsolete_math_double_value = false
elif newlib_obsolete_math_double == 'true'
obsolete_math_double_value = 1
elif newlib_obsolete_math_double == 'false'
obsolete_math_double_value = 0
endif
conf_data.set('__OBSOLETE_MATH', obsolete_math_value, description: 'Use old math code (undef auto, 0 no, 1 yes)')
conf_data.set('__OBSOLETE_MATH_FLOAT', obsolete_math_float_value, description: 'Use old math code for float funcs (undef auto, 0 no, 1 yes)')
conf_data.set('__OBSOLETE_MATH_DOUBLE', obsolete_math_double_value, description: 'Use old math code for double funcs (undef auto, 0 no, 1 yes)')
# Check if compiler has -fno-builtin
arg_fnobuiltin = []
if meson.get_compiler('c').has_argument('-fno-builtin')
arg_fnobuiltin = ['-fno-builtin']
endif
# Compute iconv encodings to support in the library
# Dig out the list of available encodings from the encoding.aliases file. Only
# accept the first entry from each line
available_encodings = run_command(['sed', '-e', '/^#/d', '-e', '/^$/d', '-e', 's/ .*$//', files('newlib/libc/iconv/encoding.aliases')[0]]).stdout().split('\n')
# Include all available encodings if none were specified on the command line
if newlib_iconv_encodings.length() == 0
newlib_iconv_encodings = available_encodings
elif newlib_iconv_encodings.length() == 1 and newlib_iconv_encodings[0] == 'none'
newlib_iconv_encodings = []
endif
# Use newlib_iconv_encodings for from/to by default
if newlib_iconv_from_encodings.length() == 0
newlib_iconv_from_encodings = newlib_iconv_encodings
endif
if newlib_iconv_to_encodings.length() == 0
newlib_iconv_to_encodings = newlib_iconv_encodings
endif
# Set config variables for each requested 'from' encoding
foreach from : newlib_iconv_from_encodings
if not available_encodings.contains(from)
error('Requested from encoding ' + from + ' is not available. Look in newlib/libc/iconv/encoding.aliases')
endif
conf_data.set('_ICONV_FROM_ENCODING_' + from.to_upper(), true)
endforeach
# Set config variables for each requested 'to' encoding
foreach to : newlib_iconv_to_encodings
if not available_encodings.contains(to)
error('Requested to encoding ' + to + ' is not available. Look in newlib/libc/iconv/encoding.aliases')
endif
conf_data.set('_ICONV_TO_ENCODING_' + to.to_upper(), true)
endforeach
version_array = meson.project_version().split('.')
if version_array.length() > 2
picolibc_patch_level = version_array[2]
else
picolibc_patch_level = 0
endif
conf_data.set('_PICOLIBC_VERSION', '"@0@"'.format(meson.project_version()), description: 'The Picolibc version in string format.')
conf_data.set('_PICOLIBC__', version_array[0], description: 'The Picolibc major version number.')
conf_data.set('_PICOLIBC_MINOR__', version_array[1], description: 'The Picolibc minor version number.')
conf_data.set('__PICOLIBC_PATCHLEVEL__', picolibc_patch_level, description: 'The Picolibc patch level.')
conf_data.set('_NEWLIB_VERSION', '"@0@"'.format(NEWLIB_VERSION), description: 'The newlib version in string format.')
conf_data.set('_NEWLIB__', NEWLIB_MAJOR_VERSION, description: 'The newlib major version number.')
conf_data.set('_NEWLIB_MINOR__', NEWLIB_MINOR_VERSION, description: 'The newlib minor version number.')
conf_data.set('__NEWLIB_PATCHLEVEL__', NEWLIB_PATCHLEVEL_VERSION, description: 'The newlib patch level.')
if tinystdio
stdio_inc_dir = 'newlib/libc/tinystdio'
else
stdio_inc_dir = 'newlib/libc/stdio'
endif
inc_dirs = [stdio_inc_dir, '.', 'newlib/libc/include']
inc = include_directories(inc_dirs)
includedir = join_paths(prefix, get_option('includedir'))
# We don't need '-fdata-sections' currently as there aren't any
# files with data used in separate code paths. This works around
# versions of gcc for RISC-V which have a bug that mis-names
# initialized read-only data segments when -fdata-sections
# is defined
arguments = []
if meson.get_compiler('c').has_argument('-ffunction-sections')
arguments += ['-ffunction-sections']
endif
if tls_model != ''
tls_arg = '-ftls-model=' + tls_model
assert(meson.get_compiler('c').has_argument(tls_arg), 'Compiler does not support \'-ftls-model\'!')
arguments += [tls_arg]
endif
add_project_arguments(arguments, language: 'c')
# libc will adjust this if supported
has_ieeefp_funcs = false
# semihost will adjust these if supported
# any kind of semihosting support, enough to run general
has_semihost = false
# arm compatible semihosting, enough to run arm semihost tests
has_arm_semihost = false
# make sure to include semihost BEFORE picocrt!
if enable_semihost
subdir('semihost')
endif
if tinystdio
subdir('dummyhost')
endif
conf_data.set('HAVE_SEMIHOST', has_semihost, description: 'Semihost APIs supported')
# By default, tests don't require any special arguments
# disable compiler built-ins so we reach the library equivalents
test_c_args = c_args + arg_fnobuiltin
if tests_enable_stack_protector
if meson.get_compiler('c').has_argument('-fstack-protector-all') and meson.get_compiler('c').has_argument('-fstack-protector-strong')
test_c_args += ['-fstack-protector-all', '-fstack-protector-strong', '-DTESTS_ENABLE_STACK_PROTECTOR']
else
tests_enable_stack_protector = false
endif
endif
test_link_args = test_c_args
test_link_depends = []
# CompCert needs the '-WUl,' prefix to correctly pass the --spec parameters to the linker
specs_prefix = ''
if meson.get_compiler('c').get_id() == 'ccomp'
specs_prefix = '-WUl,'
endif
if has_semihost
# If we're using semihosting, we assume that there's a
# custom linker script that includes picolibc.specs
test_link_name = 'scripts/test-' + host_cpu_family + '.ld'
test_link_dep = files(test_link_name)
# Linker args must be strings (seems like a bug), so compute the
# full path by hand
test_link_path = '@0@/@1@'.format(meson.current_source_dir(), test_link_name)
picolibc_link_path = 'picolibc.ld'
if meson.get_compiler('c').get_id() != 'clang'
test_c_args += [specs_prefix + '--specs', specs_prefix + '@0@/@1@'.format(meson.current_build_dir(), picolibc_specs)]
endif
test_link_args += test_c_args + ['-nostartfiles', '-nostdlib', '-T', test_link_path, '-T', 'picolibc.ld', '-lgcc']
# Make sure all of the tests get re-linked if the linker scripts change
test_link_depends += test_link_dep + [picolibc_ld] + [picolibc_specs]
elif meson.get_compiler('c').get_id() == 'clang'
# Clang does not support spec files
else
test_link_depends += test_specs
test_c_args += [specs_prefix + '--specs', specs_prefix + '@0@/@1@'.format(meson.current_build_dir(), test_specs)]
test_link_args += test_c_args
endif
has_picolibc_tls_api = false
# make sure to include semihost BEFORE picocrt!
if enable_picocrt
subdir('picocrt')
endif
subdir('newlib')
if enable_tests
subdir('test')
endif
conf_data.set('HAVE_PICOLIBC_TLS_API', has_picolibc_tls_api, description: '_set_tls and _init_tls functions available')
conf_data.set('HAVE_IEEEFP_FUNCS', has_ieeefp_funcs, description: 'IEEE fp funcs available')
configure_file(output : 'picolibc.h',
configuration: conf_data,
install_dir: includedir)
# Usage as an embedded subproject:
# If picolibc is embedded into the source as a subproject,
# provide a dependency to be used by the main project:
# dependency('libc', fallback: ['picolibc', 'libc_dep'])
if not enable_multilib and meson.is_subproject()
picolibc_dep = declare_dependency(include_directories: inc, link_with: [lib_c, lib_m])
endif