nandi/vflutter_ffipublic Fork 0
472eb493bac94bdcb79a38829ccca0c541256fef
Commits
Clone
git clone https://git.rickub.com/nandi/vflutter_ffi.git
git clone ssh://git@rickub.com/nandi/vflutter_ffi.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

nimflutter_ffi.podspec · 24 lines · 909 BGDScript3 Blame HistoryRaw
Initial commit: V -> Flutter FFI plugin ad0ccda nandi 12h ago1Pod::Spec.new do |s|
Replace V with Nim 472eb49 nandithebull 5h ago2 s.name = 'nimflutter_ffi'
Initial commit: V -> Flutter FFI plugin ad0ccda nandi 12h ago3 s.version = '0.1.0'
Replace V with Nim 472eb49 nandithebull 5h ago4 s.summary = 'Nim language runtime bridged to Flutter via dart:ffi.'
Initial commit: V -> Flutter FFI plugin ad0ccda nandi 12h ago5 s.homepage = 'https://example.com'
6 s.license = { :file => '../LICENSE' }
7 s.author = { 'you' => 'you@example.com' }
8 s.source = { :path => '.' }
9 s.source_files = 'Classes/**/*'
10 s.dependency 'Flutter'
11 s.platform = :ios, '12.0'
12
Replace V with Nim 472eb49 nandithebull 5h ago13 # Nim's generated C is machine output.
Initial commit: V -> Flutter FFI plugin ad0ccda nandi 12h ago14 s.compiler_flags = '-w'
15
Replace V with Nim 472eb49 nandithebull 5h ago16 # NimMain runs from a library constructor in a shared build. A static archive
17 # has no such hook, and the linker drops objects nothing references anyway —
18 # so -all_load keeps them and nf_init() is the guaranteed entry point.
Initial commit: V -> Flutter FFI plugin ad0ccda nandi 12h ago19 s.pod_target_xcconfig = {
20 'DEFINES_MODULE' => 'YES',
21 'OTHER_LDFLAGS' => '-all_load',
22 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386'
23 }
24end