alston

Results 19 comments of alston

use `xcodebuild -sdk -version` to check your ios sdk versions

scss-loader cannot be installed successfully using npm with node v8.9.4

@nonstriater work for me too, thanks

I run command above manually, and universal folder now contains `libavcodec.a`, `libavformat.a`, `libavutil.a`, `libswscale.a`, `libswresample.a`. But when build kxmovie sample project in Xcode, it tells ``` Undefined symbols for architecture...

Solution found at http://stackoverflow.com/questions/21211215/ffmpeg-wont-build-in-my-project-works-fine-in-example-app for undefined symbol _icon_xxxxx Or a better solution: add `libiconv2.4.0` into project without editing link flags

Solution found at https://github.com/fpillet/NSLogger for undefined symbol `_LogMessageF`: change `pod 'NSLogger'` to `pod "NSLogger/NoStrip"`

``` cd FFmpeg xcrun -sdk iphoneos lipo -create -arch armv7 armv7/libavcodec.a -arch armv7 armv7s/libavcodec.a -arch arm64 arm64/libavcodec.a -arch i386 i386/libavcodec.a -output universal/libavcodec.a xcrun -sdk iphoneos lipo -create -arch armv7 armv7/libavformat.a...

Thanks for replay. I worked it out by using this command `lpr -o raw test.txt`. It now prints correctly, however, it can't print anything correctly out of askii code. I...