Cube  Check-in [50af4ea0ff]

Overview
Comment:Default to -O2
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 50af4ea0ff5efb2da0ee423202d393f0c57c7d641d1045144f071e84b32cfda7
User & Date: js on 2025-03-12 23:06:41
Other Links: manifest | tags
Context
2025-03-12
23:28
Fix tab completion check-in: 2200947ce9 user: js tags: trunk
23:06
Default to -O2 check-in: 50af4ea0ff user: js tags: trunk
22:35
Add files forgotten in last commit check-in: e208417f95 user: js tags: trunk
Changes

Modified meson.build from [145d90f49a] to [7cbc99fda4].

1
2




3
4
5
6
7
8
9
1

2
3
4
5
6
7
8
9
10
11
12

-
+
+
+
+







project('Cube', ['c', 'objc', 'objcpp'],
  meson_version: '>=1.5.0')
  meson_version: '>=1.5.0',
  default_options: {
    'optimization': '2'
  })

foreach lang : ['objc', 'objcpp']
  add_global_arguments(
    [
      '-fobjc-arc',
      '-fobjc-arc-exceptions'
    ],