native_toolchain_c 0.6.0 native_toolchain_c: ^0.6.0 copied to clipboard
A library to invoke the native C compiler installed on the host machine.
0.6.0 #
- Address analyzer info diagnostic about multi-line if requiring a block body.
- Bump
package:native_assets_cli
to0.9.0
. This makespackage:native_toolchain_c
now takeBuildOutputBuilder
andLinkOutputBuilder
objects.
0.5.4 #
- Bump
package:native_assets_cli
to0.8.0
.
0.5.3 #
- Fix internal bug in
LinkerOptions
. - Bump
package:native_assets_cli
to 0.7.3.
0.5.2 #
- Deprecated
CBuilder
's constructorsdartBuildFiles
. The Dart sources are automatically used for determining whether hooks need to be rerun by newer Dart and Flutter SDKs.
0.5.1 #
- Bump
package:native_assets_cli
to 0.7.0.
0.5.0 #
- Renamed parameters in
Builder.run
. - Added
Language.objectiveC
. - Use
HookConfig.targetIosSdk
andHookConfig.targetMacosSdk
optional values, and pass them to the clang compiler.
0.4.2 #
- Bump
package:native_assets_cli
to 0.5.0.
0.4.1 #
- Output an
Asset.file
in dry run. https://github.com/dart-lang/native/issues/1049
0.4.0 #
- Breaking change Completely rewritten API in
native_assets_cli
. - Breaking change No longer assumes
build.dart
to be the main script. https://github.com/dart-lang/native/issues/823 - Breaking change Use JSON instead of YAML in the protocol. https://github.com/dart-lang/native/issues/991
- Bump
package:native_assets_cli
to 0.5.0.
0.3.4+1 #
- Stop depending on private
package:native_assets_cli
CCompilerConfig
fields.
0.3.4 #
- Bump
package:native_assets_cli
to 0.4.0.
0.3.3 #
- Export
environmentFromBatchFile
. - Bump
package:native_assets_cli
to 0.3.2.
0.3.2 #
- Added workaround minSdkVersion 19 and 20 for Android.
- Start using sysroot for Android.
- Added tests for up to Android API version 34.
0.3.1 #
- Added MSVC arm64 toolchain.
0.3.0 #
- Bump
package:native_assets_cli
to 0.3.0.
0.2.5 #
- Explicitly tell linker to create position dependent or position independent executable (#113).
0.2.4 #
- Added
includes
for specifying include directories. - Added
flags
for specifying arbitrary compiler flags. - Added
std
for specifying a language standard. - Added
language
for selecting the language (c
andcpp
) to compile source files as. - Added
cppLinkStdLib
for specifying the C++ standard library to link against.
0.2.2 #
- Generate position independent code for libraries by default and add
pic
option to control this behavior.
0.2.1 #
- Added
defines
for specifying custom defines. - Added
buildModeDefine
to toggle define for current build mode. - Added
ndebugDefine
to toggle define ofNDEBUG
for non-debug builds.
0.1.0 #
- Initial version.