Questions tagged [libyaml]

LibYAML is a YAML 1.1 parser and emitter written in C

41 questions
16
votes
4 answers

rails 4.1 can't deploy via capistrano 3

i have very strange error when deploy my rails app with capistrano. sometimes it's deploy and sometimes not. for example i add something to css (just one string) e.g. .my_some_class{width:10px} and after that deployment fails. before i add this -…
kpblc
  • 903
  • 1
  • 8
  • 24
11
votes
1 answer

brew install libyaml ERROR

$ brew install libyaml ==> Downloading http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz Already downloaded: /Library/Caches/Homebrew/libyaml-0.1.4.tar.gz ==> ./configure --prefix=/usr/local/Cellar/libyaml/0.1.4 ==> make install Warning: Could…
user2119498
  • 111
  • 1
  • 4
7
votes
3 answers

Rails: Psych, Updating libyaml from 0.1.4

I needed capybara-webkit installed which needed the qt libraries, so I went and installed them using homebrew with the following commands brew update brew install qt brew linkapps I then bundled and all was well with the capybara-webkit. However,…
Morgan
  • 1,438
  • 3
  • 17
  • 32
6
votes
2 answers

parsing YAML to values with libyaml in C

I'm trying to parse a YAML file using C on a linux server (it's a modification to an existing app, so changing the language is not an option). I have read through the tutorial at http://wpsoftware.net/andrew/pages/libyaml.html and on the libyaml…
3
votes
2 answers

Major Warnings when Running Brew Doctor

I ran brew doctor and got a few warning messages that I think I know what actions to take to fix, but want to see if I'm on the right track. Here is the list of warnings I received: Warning: /usr/local/lib/pkgconfig isn't writable. This can happen…
cphill
  • 5,596
  • 16
  • 89
  • 182
3
votes
3 answers

I am getting the "no such file to load — openssl" error on OSX 10.7.5

I am getting the no such file to load — openssl error on OSX 10.7.5 in a Ruby on Rails environment. I read all the related questions here on StackOverflow, but nothing worked for me. Tried the following: Tried building with openssl specified. Did…
jumpa
  • 658
  • 1
  • 9
  • 22
2
votes
2 answers

Ruby missing psych for YAML ouput

I created a Rails/React app with Webpacker on my Mac running Ruby 2.5.3 and it runs without issue. However when I clone it to my Ubuntu 18.04 machine, I get the below error : /usr/lib/ruby/2.5.0/yaml.rb:5: warning: It seems your ruby installation…
Daniel
  • 155
  • 2
  • 12
2
votes
1 answer

How To Install PECL YAML Extension on Mac?

My goals is to be able to use the PHP functions for parsing YAML detailed in the PHP docs: http://php.net/manual/en/ref.yaml.php To install the PECL yaml extension I've opened Terminal and typed: brew install libyaml Then sudo…
plooms
  • 93
  • 2
  • 11
2
votes
1 answer

C libyaml document-based parsing

I'm trying to code a yaml-formatted configuration file parser using C and libyaml. My Internet searches did not bring me any luck with finding a decent and complete documentation of the API with an operation manual. A tutorial by Andrew Poelstra…
ashpool
  • 179
  • 1
  • 8
2
votes
0 answers

Invalid access to memory location on 64-bit Strawberry Perl only

Hi I am trying to get a Perl program running on Windows 64-bit using Strawberry Perl version 5.20, the 64-bit version. I have no problems running the 32-bit version (32-bit Strawberry Perl on 32-bit Windows), but it lacks the memory capabilities of…
akvallejos
  • 329
  • 5
  • 11
2
votes
3 answers

Ejabberd configure: error: libyaml library was not found

I am trying to install Ejabberd by source code, But When I run make command I have found following Error. checking for yaml_parser_initialize in -lyaml... no checking yaml.h usability... no checking yaml.h presence... no checking for yaml.h...…
nadim
  • 776
  • 1
  • 12
  • 26
2
votes
2 answers

installing PyYAML and libyaml without root or sudo

I need to setup PyYAML with the libyaml bindings. I'm working on a Red Hat Enterprise Linux Client with release 5.7 and I have a local copy of Enthought Python 7.3.2 installed under /tools/Devel/epd_free-7.3-2rh5-x86_64 and have added…
user3730720
  • 21
  • 1
  • 3
2
votes
2 answers

yaml and compiling libYaml for python under windows

I'm wish to write&read data files ( big size 10mb+ ), I'm thinking about using using yaml for that. But, after some testing, seems that yaml is extremely slow in both write and read for file that size. Than I read about libYaml C++, that speed…
Asi
  • 116
  • 1
  • 9
1
vote
1 answer

C++ - Unable to link in libyaml using Visual Studio 2019/CMake

Attempting to link in libyaml (0.2.5) using Visual Studio 2019 Enterprise and CMake, as I have a cross-platform (Linux/Windows) project that uses this library. According to the documentation, this library should work in Windows 10. It links in just…
noisebloom
  • 65
  • 5
1
vote
2 answers

WX GUI FFT Sink Missing in GNC for Windows

I am new to GNU Radio and was focusing on training using GretScott's website. I am running Windows 10. I installed 3.7.13.5/v1.6 from the official site and noticed I was missing blocks. I decided to uninstall and install 3.8.0.0/v1.7 The…
James Hayek
  • 643
  • 3
  • 10
  • 35
1
2 3