Skip to main content
z_abdulgalimov
Inspiring
December 19, 2015
Question

Library not found for -lstdc++ in adt on Windows 10

  • December 19, 2015
  • 2 replies
  • 1756 views

I'm trying to pack ipa on Windows 10 with adt and i get an error:

ld: library not dound for -lstdc++

ld: library not dound for -lstdc++

Compilation failed while executing : ld64

I am used AIR SDK 20 beta

How to fix it?

Thank you.

This topic has been closed for replies.

2 replies

Known Participant
April 20, 2018

we have similar issue using latest iossdk 11

ld: library not dound for -lc++

ld: library not dound for -lc++

Compilation failed while executing : ld64

We have to use platformsdk as on windows air sdk 29 still has issues signing ipa containing ios third party dynamic framework.

On mac air sdk works as expected but not on windows.

Known Participant
April 20, 2018

as a solution we added needed libs from air sdk to iphone sdk folder

Adobe Employee
December 19, 2015

Hi ,

Can you let us know the command you are using to package the ipa?

Roshan

Adobe AIR

z_abdulgalimov
Inspiring
December 19, 2015

Hi!

My  .bat script:

set AIR_SDK=C:\work\sdks\AIRSDK_20

set iOS_SDK=C:\work\sdks\iPhoneOS.sdk

set PROVISIONING_FILE=C:\work\~cert\FlashPressAll.mobileprovision

set KEYSTORE_FILE=C:\work\~cert\sertificate.p12

set KEYSTORE_PASSWORD=!Q2w3e4r5t

set ADT=%AIR_SDK%\bin\adt.bat

start %ADT% -package -target ipa-debug-interpreter ^

        -storetype pkcs12 -keystore %KEYSTORE_FILE% -storepass %KEYSTORE_PASSWORD% -provisioning-profile %PROVISIONING_FILE% ^

        example.ipa .\Main-app.xml .\Main.swf ^

        -platformsdk %iOS_SDK% ^

        -extdir ..\ane

Adobe Employee
December 19, 2015

Hi, Thanks,

Can you try a simple hello world application without using -platformsdk ? Let us know the result.

-Roshan