Revision 838676c17bb34430f6024156178d04adc4d7be65 authored by Islam AbdelRahman on 07 November 2015, 00:49:38 UTC, committed by Islam AbdelRahman on 07 November 2015, 00:49:38 UTC
Summary:
Reverting https://reviews.facebook.net/D34269 for now
after I landed it a flaky test started continuously failing, I am almost sure this patch is not related to the test but I will revert it until I figure out why it's failing

Test Plan: make check

Reviewers: kradhakrishnan

Subscribers: dhruba

Differential Revision: https://reviews.facebook.net/D50385
1 parent 5b9ce1a
Raw File
binding.gyp
{
    "targets": [
        {
            "target_name": "rdb",
            "sources": [
                "rdb.cc",
                "db_wrapper.cc",
                "db_wrapper.h"
            ],
            "cflags_cc!": [
                "-fno-exceptions"
            ],
            "cflags_cc+": [
                "-std=c++11",
            ],
            "include_dirs+": [
                "../../include"
            ],
            "libraries": [
                "../../../librocksdb.a",
                "-lsnappy"
            ],
        }
    ]
}
back to top