Created
February 18, 2012 23:07
-
-
Save tanelsuurhans/1861275 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [2012-02-19 01:03:40] make | |
| CC = clang | |
| LD = ld | |
| LDSHARED = clang -dynamiclib | |
| CFLAGS = -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings -Werror=declaration-after-statement -Werror=shorten-64-to-32 -Werror=implicit-function-declaration -fno-common -pipe | |
| XCFLAGS = -include ruby/config.h -include ruby/missing.h -fvisibility=hidden -DRUBY_EXPORT | |
| CPPFLAGS = -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -I. -I.ext/include/x86_64-darwin11.3.0 -I./include -I. | |
| DLDFLAGS = -Wl,-undefined,dynamic_lookup -Wl,-multiply_defined,suppress -Wl,-flat_namespace -install_name /Users/tanel/.rvm/rubies/ruby-1.9.3-p125/lib/libruby.1.9.1.dylib -current_version 1.9.1 -compatibility_version 1.9.1 -Wl,-unexported_symbol,_Init_* -Wl,-unexported_symbol,*_threadptr_* -Wl,-u,_objc_msgSend | |
| SOLIBS = | |
| compiling main.c | |
| compiling dmydln.c | |
| compiling dmyencoding.c | |
| compiling version.c | |
| compiling dmyversion.c | |
| compiling miniprelude.c | |
| In file included from miniprelude.c:8: | |
| ./vm_core.h:302:11: error: duplicate member 'load_path_expanded_cache' | |
| VALUE load_path_expanded_cache; | |
| ^ | |
| ./vm_core.h:301:11: note: previous declaration is here | |
| VALUE load_path_expanded_cache; | |
| ^ | |
| 1 error generated. | |
| make: *** [miniprelude.o] Error 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment