Don't link to regex_macros

This commit is contained in:
Michael Gehring 2015-01-10 20:32:59 +01:00
parent 4d6cbfa393
commit 6aef8cc38c
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@
extern crate getopts;
extern crate libc;
extern crate regex;
#[plugin] extern crate regex_macros;
#[plugin] #[no_link] extern crate regex_macros;
use std::ffi::CString;
use std::io::fs;

View file

@ -12,7 +12,7 @@
*/
#![feature(plugin)]
#[plugin] extern crate regex_macros;
#[plugin] #[no_link] extern crate regex_macros;
extern crate regex;
extern crate getopts;