Displaying 4 results from an estimated 4 matches for "nextern".
Did you mean:
extern
2013 Jan 26
1
[LLVMdev] MCJIT/interpreter and iostream
...-x c++ | lli -force-interpreter=true
echo -e '#include <iostream>\nint main(){ std::cout << "hello" << std::endl; }' | clang -cc1 -emit-llvm-bc -x c++ | lli -use-mcjit
This command correctly prints "hello":
echo -e '#include <iostream>\nextern "C" {void *__dso_handle = NULL;} int main(){ std::cout << "hello" << std::endl; }' | clang -cc1 -emit-llvm-bc -x c++ | lli
This command results in "LLVM ERROR: Tried to execute an unknown external function: _ZNSt8ios_base4InitC1Ev"
echo -e '#inc...
2008 Jan 17
0
libswfdec/Makefile.am
...gs.h: swfdec_as_strings.c
( cd $(srcdir) && echo "/* This is a generated file. See swfdec_as_strings.c for details. */" \
&& echo "#ifndef _SWFDEC_AS_STRINGS_H_" \
&& echo "#define _SWFDEC_AS_STRINGS_H_" \
- && echo -e "\nextern const char swfdec_as_strings[];\n" \
+ && echo "extern const char swfdec_as_strings[];" \
&& grep " SWFDEC_AS_CONSTANT_STRING" swfdec_as_strings.c \
| sed "s/.*(\"\(.*\)\").*/\1/" \
| $(AWK) '{ if ($$0 == "")...
2007 Oct 14
0
2 commits - configure.ac libswfdec/Makefile.am libswfdec/swfdec_as_strings.c
...gs.h: swfdec_as_strings.c
+ ( cd $(srcdir) && echo "/* This is a generated file. See swfdec_as_strings.c for details. */" \
+ && echo "#ifndef _SWFDEC_AS_STRINGS_H_" \
+ && echo "#define _SWFDEC_AS_STRINGS_H_" \
+ && echo -e "\nextern const char swfdec_as_strings[];\n" \
+ && grep " SWFDEC_AS_CONSTANT_STRING" swfdec_as_strings.c \
+ | sed "s/.*(\"\(.*\)\").*/\1/" \
+ | $(AWK) '{ if ($$0 == "") name = "EMPTY"; else if ($$0 == ",") name = "COM...
2008 Jan 02
0
4 commits - libswfdec/Makefile.am libswfdec/swfdec_movie.c libswfdec/swfdec_shape_parser.c test/dump.c test/trace
...that change didn't break too many shell escaping rules...
diff --git a/libswfdec/Makefile.am b/libswfdec/Makefile.am
index 322529c..78cdf62 100644
--- a/libswfdec/Makefile.am
+++ b/libswfdec/Makefile.am
@@ -365,7 +365,7 @@ swfdec_as_strings.h: swfdec_as_strings.c
&& echo -e "\nextern const char swfdec_as_strings[];\n" \
&& grep " SWFDEC_AS_CONSTANT_STRING" swfdec_as_strings.c \
| sed "s/.*(\"\(.*\)\").*/\1/" \
- | $(AWK) '{ if ($$0 == "") name = "EMPTY"; else if ($$0 == ",") name = "COM...