summary refs log tree commit diff stats
path: root/results/classifier/deepseek-2-tmp/output/other/984516
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/deepseek-2-tmp/output/other/984516')
-rw-r--r--results/classifier/deepseek-2-tmp/output/other/98451624
1 files changed, 0 insertions, 24 deletions
diff --git a/results/classifier/deepseek-2-tmp/output/other/984516 b/results/classifier/deepseek-2-tmp/output/other/984516
deleted file mode 100644
index 9c5e80b34..000000000
--- a/results/classifier/deepseek-2-tmp/output/other/984516
+++ /dev/null
@@ -1,24 +0,0 @@
-
-should use sdl-config for static build not pkg-config
-
-In the configure script when a user wants to compile a static QEMU and enable SDL support (i.e. ./configure --static --enable-sdl):
-
-pkg-config does not have an option "--static-libs". For correct results (to find the static archive libSDL.a) you need to use sdl-config --static-libs.
-
-
-This is how I get it to work for me anyway:
-
-
-diff --git a/configure b/configure
-index 2d62d12..3de4c9b 100755
---- a/configure
-+++ b/configure
-@@ -1548,7 +1548,7 @@ int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
- EOF
-   sdl_cflags=`$sdlconfig --cflags 2> /dev/null`
-   if test "$static" = "yes" ; then
--    sdl_libs=`$sdlconfig --static-libs 2>/dev/null`
-+    sdl_libs=`${SDL_CONFIG-${cross_prefix}sdl-config} --static-libs`
-   else
-     sdl_libs=`$sdlconfig --libs 2> /dev/null`
-   fi
\ No newline at end of file